2025-01-24T02:39:39.0320990Z Current runner version: '2.315.0' 2025-01-24T02:39:39.0324360Z Runner name: 'i-0e9e21dfc8da289f4' 2025-01-24T02:39:39.0324790Z Runner group name: 'Default' 2025-01-24T02:39:39.0325350Z Machine name: 'ip-10-0-3-38' 2025-01-24T02:39:39.0327720Z ##[group]GITHUB_TOKEN Permissions 2025-01-24T02:39:39.0328610Z Actions: read 2025-01-24T02:39:39.0328900Z Attestations: read 2025-01-24T02:39:39.0329200Z Checks: read 2025-01-24T02:39:39.0329480Z Contents: read 2025-01-24T02:39:39.0329770Z Deployments: read 2025-01-24T02:39:39.0330060Z Discussions: read 2025-01-24T02:39:39.0330350Z Issues: read 2025-01-24T02:39:39.0330620Z Metadata: read 2025-01-24T02:39:39.0330910Z Packages: read 2025-01-24T02:39:39.0331180Z Pages: read 2025-01-24T02:39:39.0331460Z PullRequests: read 2025-01-24T02:39:39.0331780Z RepositoryProjects: read 2025-01-24T02:39:39.0332110Z SecurityEvents: read 2025-01-24T02:39:39.0332410Z Statuses: read 2025-01-24T02:39:39.0332690Z ##[endgroup] 2025-01-24T02:39:39.0334300Z Secret source: Actions 2025-01-24T02:39:39.0334680Z Prepare workflow directory 2025-01-24T02:39:39.2253550Z Prepare all required actions 2025-01-24T02:39:39.2358590Z Getting action download info 2025-01-24T02:39:39.4388560Z Download action repository 'pytorch/test-infra@main' (SHA:e83685f710cdb1685e9f12471c30aa36cf09cf13) 2025-01-24T02:39:40.0340680Z Download action repository 'pytorch/pytorch@main' (SHA:d6bea398ac8e81ac07884733855751a8dad36816) 2025-01-24T02:39:50.2769380Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-01-24T02:39:50.4650710Z Download action repository 'actions/upload-artifact@v4' (SHA:65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08) 2025-01-24T02:39:50.7852940Z Getting action download info 2025-01-24T02:39:50.9389330Z Download action repository 'actions/checkout@v4' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-01-24T02:39:51.1601010Z Getting action download info 2025-01-24T02:39:51.2549530Z Download action repository 'actions/cache@v3' (SHA:f4b3439a656ba812b8cb417d2d49f9c810103092) 2025-01-24T02:39:51.5333270Z Getting action download info 2025-01-24T02:39:51.6692330Z Uses: pytorch/pytorch/.github/workflows/_mac-build.yml@refs/tags/ciflow/trunk/145539 (d087145b9259b4cfbcb758dc0bca6a6e5d75d08f) 2025-01-24T02:39:51.6693830Z ##[group] Inputs 2025-01-24T02:39:51.6694080Z build-environment: macos-py3-arm64 2025-01-24T02:39:51.6694360Z runner-type: macos-m1-stable 2025-01-24T02:39:51.6694800Z build-generates-artifacts: true 2025-01-24T02:39:51.6695070Z xcode-version: 2025-01-24T02:39:51.6695280Z sync-tag: macos-py3-arm64-build 2025-01-24T02:39:51.6695530Z python-version: 3.9.12 2025-01-24T02:39:51.6695770Z environment-file: 2025-01-24T02:39:51.6696670Z 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" }, ]} 2025-01-24T02:39:51.6697630Z sccache-use-gha: false 2025-01-24T02:39:51.6697850Z ##[endgroup] 2025-01-24T02:39:51.6698180Z Complete job name: macos-py3-arm64 / build 2025-01-24T02:39:51.7139250Z ##[group]Run pytorch/test-infra/.github/actions/check-disk-space@main 2025-01-24T02:39:51.7139620Z with: 2025-01-24T02:39:51.7139790Z minimum-available-space-in-gb: 6 2025-01-24T02:39:51.7140010Z env: 2025-01-24T02:39:51.7140170Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:39:51.7140410Z SCCACHE_USE_GHA: false 2025-01-24T02:39:51.7140590Z ##[endgroup] 2025-01-24T02:39:51.7276970Z ##[group]Run echo "Print the available disk space for manual inspection" 2025-01-24T02:39:51.7277520Z echo "Print the available disk space for manual inspection" 2025-01-24T02:39:51.7277860Z df -h 2025-01-24T02:39:51.7278050Z  2025-01-24T02:39:51.7278220Z function check_disk_space() { 2025-01-24T02:39:51.7278450Z  set +e 2025-01-24T02:39:51.7278610Z  2025-01-24T02:39:51.7278810Z  # Set the minimum requirement space to 6GB 2025-01-24T02:39:51.7279590Z  MINIMUM_AVAILABLE_SPACE_IN_KB=$(($MINIMUM_AVAILABLE_SPACE_IN_GB * 1024 * 1024)) 2025-01-24T02:39:51.7279960Z  2025-01-24T02:39:51.7280200Z  # Use KB to avoid floating point warning like 3.1GB 2025-01-24T02:39:51.7280590Z  df -k | tr -s ' ' | cut -d' ' -f 4,9 | while read -r LINE; 2025-01-24T02:39:51.7280960Z  do 2025-01-24T02:39:51.7281150Z  AVAIL=$(echo $LINE | cut -f1 -d' ') 2025-01-24T02:39:51.7281450Z  MOUNT=$(echo $LINE | cut -f2 -d' ') 2025-01-24T02:39:51.7281690Z  2025-01-24T02:39:51.7281860Z  if [ "${MOUNT}" = "/" ]; then 2025-01-24T02:39:51.7282200Z  if [ "${AVAIL}" -lt "${MINIMUM_AVAILABLE_SPACE_IN_KB}" ]; then 2025-01-24T02:39:51.7282950Z  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-01-24T02:39:51.7283590Z  else 2025-01-24T02:39:51.7283960Z  echo "Success: There is ${AVAIL}KB free space left in ${MOUNT} for ${RUNNER_OS}, continue" 2025-01-24T02:39:51.7284380Z  fi 2025-01-24T02:39:51.7284530Z  fi 2025-01-24T02:39:51.7284690Z  done 2025-01-24T02:39:51.7284830Z  2025-01-24T02:39:51.7284970Z  set -e 2025-01-24T02:39:51.7285130Z } 2025-01-24T02:39:51.7285270Z  2025-01-24T02:39:51.7285420Z RESULT=$(check_disk_space) 2025-01-24T02:39:51.7285650Z echo "${RESULT}" 2025-01-24T02:39:51.7285830Z  2025-01-24T02:39:51.7286070Z if [[ "${RESULT}" == *Failure* && "${RUNNER_OS}" == "macOS" ]]; then 2025-01-24T02:39:51.7286770Z  # 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-01-24T02:39:51.7287440Z  # https://github.com/pytorch/pytorch/issues/85440 2025-01-24T02:39:51.7287900Z  sudo rm "/System/Library/Caches/com.apple.coresymbolicationd/data" || true 2025-01-24T02:39:51.7288590Z  # Stop the daemon and launchctl will automatically start it again, thus accomplish a restart and free up the above file 2025-01-24T02:39:51.7289200Z  sudo launchctl stop com.apple.coresymbolicationd || true 2025-01-24T02:39:51.7289520Z  2025-01-24T02:39:51.7289710Z  # Clean up crash reports on the runner 2025-01-24T02:39:51.7290110Z  sudo rm -rf "/System/Volumes/Data/Library/Logs/CrashReporter" || true 2025-01-24T02:39:51.7290460Z  2025-01-24T02:39:51.7290690Z  # Also try to clean up torch.hub caching directory 2025-01-24T02:39:51.7291030Z  rm -rf "${HOME}/.cache/torch/hub" || true 2025-01-24T02:39:51.7291290Z  2025-01-24T02:39:51.7291430Z  # Purge conda 2025-01-24T02:39:51.7291640Z  conda clean -p -t -y || true 2025-01-24T02:39:51.7291890Z  # and pip cache 2025-01-24T02:39:51.7292290Z  pip cache purge || true 2025-01-24T02:39:51.7292510Z  2025-01-24T02:39:51.7292780Z  echo "Re-run disk space check for ${RUNNER_OS} after cleaning up" 2025-01-24T02:39:51.7293140Z  # Re-run the check 2025-01-24T02:39:51.7293350Z  RESULT=$(check_disk_space) 2025-01-24T02:39:51.7293580Z  echo "${RESULT}" 2025-01-24T02:39:51.7293770Z fi 2025-01-24T02:39:51.7293910Z  2025-01-24T02:39:51.7294090Z if [[ "${RESULT}" == *Failure* ]]; then 2025-01-24T02:39:51.7294340Z  df -h 2025-01-24T02:39:51.7294490Z  2025-01-24T02:39:51.7295070Z  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-01-24T02:39:51.7295700Z  exit 1 2025-01-24T02:39:51.7306440Z fi 2025-01-24T02:39:51.7331630Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-01-24T02:39:51.7331920Z env: 2025-01-24T02:39:51.7332090Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:39:51.7332330Z SCCACHE_USE_GHA: false 2025-01-24T02:39:51.7332540Z MINIMUM_AVAILABLE_SPACE_IN_GB: 6 2025-01-24T02:39:51.7332760Z ##[endgroup] 2025-01-24T02:39:51.7791010Z Print the available disk space for manual inspection 2025-01-24T02:39:51.7791630Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-01-24T02:39:51.7792170Z /dev/disk5s2s1 256Gi 9.5Gi 137Gi 7% 404k 1.4G 0% / 2025-01-24T02:39:51.7792640Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-01-24T02:39:51.7793140Z /dev/disk5s5 256Gi 1.0Gi 137Gi 1% 1 1.4G 0% /System/Volumes/VM 2025-01-24T02:39:51.7793720Z /dev/disk5s3 256Gi 5.7Gi 137Gi 5% 1.0k 1.4G 0% /System/Volumes/Preboot 2025-01-24T02:39:51.7794290Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-01-24T02:39:51.7794910Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-01-24T02:39:51.7795490Z /dev/disk1s3 500Mi 720Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-01-24T02:39:51.7796040Z /dev/disk5s1 256Gi 102Gi 137Gi 43% 8.0M 1.4G 1% /System/Volumes/Data 2025-01-24T02:39:51.7796600Z /dev/disk3s5 228Gi 905Mi 210Gi 1% 15k 2.2G 0% /Volumes/Data 2025-01-24T02:39:51.7797440Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-01-24T02:39:51.7798100Z /dev/disk3s4 228Gi 148Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-cYiID5 2025-01-24T02:39:51.8196240Z Success: There is 143135344KB free space left in / for macOS, continue 2025-01-24T02:39:51.8349490Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-01-24T02:39:51.8349970Z with: 2025-01-24T02:39:51.8350130Z submodules: recursive 2025-01-24T02:39:51.8350320Z fetch-depth: 0 2025-01-24T02:39:51.8350480Z env: 2025-01-24T02:39:51.8350640Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:39:51.8350880Z SCCACHE_USE_GHA: false 2025-01-24T02:39:51.8351060Z ##[endgroup] 2025-01-24T02:39:51.8362770Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-01-24T02:39:51.8363560Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-01-24T02:39:51.8379000Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-01-24T02:39:51.8379280Z env: 2025-01-24T02:39:51.8379430Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:39:51.8379710Z SCCACHE_USE_GHA: false 2025-01-24T02:39:51.8379930Z ##[endgroup] 2025-01-24T02:39:51.8790400Z ##[group]Run retry () { 2025-01-24T02:39:51.8790710Z retry () { 2025-01-24T02:39:51.8791040Z  $* || (sleep 1 && $*) || (sleep 2 && $*) || (sleep 4 && $*) || (sleep 8 && $*) 2025-01-24T02:39:51.8791400Z } 2025-01-24T02:39:51.8791580Z echo "${GITHUB_WORKSPACE}" 2025-01-24T02:39:51.8791830Z if [ -z "${NO_SUDO}" ]; then 2025-01-24T02:39:51.8792130Z  retry sudo rm -rf "${GITHUB_WORKSPACE}" 2025-01-24T02:39:51.8792410Z else 2025-01-24T02:39:51.8792610Z  retry rm -rf "${GITHUB_WORKSPACE}" 2025-01-24T02:39:51.8792880Z fi 2025-01-24T02:39:51.8793070Z mkdir "${GITHUB_WORKSPACE}" 2025-01-24T02:39:51.8807780Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-01-24T02:39:51.8808090Z env: 2025-01-24T02:39:51.8808260Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:39:51.8808520Z SCCACHE_USE_GHA: false 2025-01-24T02:39:51.8808720Z NO_SUDO: 2025-01-24T02:39:51.8808900Z ##[endgroup] 2025-01-24T02:39:51.9154460Z /Users/ec2-user/runner/_work/pytorch/pytorch 2025-01-24T02:40:07.4169860Z ##[group]Run actions/checkout@v4 2025-01-24T02:40:07.4170370Z with: 2025-01-24T02:40:07.4170550Z ref: d087145b9259b4cfbcb758dc0bca6a6e5d75d08f 2025-01-24T02:40:07.4170800Z fetch-depth: 0 2025-01-24T02:40:07.4170960Z submodules: recursive 2025-01-24T02:40:07.4171140Z show-progress: false 2025-01-24T02:40:07.4171330Z repository: pytorch/pytorch 2025-01-24T02:40:07.4171620Z token: *** 2025-01-24T02:40:07.4171770Z ssh-strict: true 2025-01-24T02:40:07.4171930Z ssh-user: git 2025-01-24T02:40:07.4172090Z persist-credentials: true 2025-01-24T02:40:07.4172280Z clean: true 2025-01-24T02:40:07.4172450Z sparse-checkout-cone-mode: true 2025-01-24T02:40:07.4172670Z fetch-tags: false 2025-01-24T02:40:07.4172830Z lfs: false 2025-01-24T02:40:07.4172980Z set-safe-directory: true 2025-01-24T02:40:07.4173160Z env: 2025-01-24T02:40:07.4173310Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:40:07.4173540Z SCCACHE_USE_GHA: false 2025-01-24T02:40:07.4173710Z ##[endgroup] 2025-01-24T02:40:07.5217980Z Syncing repository: pytorch/pytorch 2025-01-24T02:40:07.5219270Z ##[group]Getting Git version info 2025-01-24T02:40:07.5219770Z Working directory is '/Users/ec2-user/runner/_work/pytorch/pytorch' 2025-01-24T02:40:07.5220320Z [command]/usr/bin/git version 2025-01-24T02:40:07.5246230Z git version 2.39.3 (Apple Git-146) 2025-01-24T02:40:07.5258830Z ##[endgroup] 2025-01-24T02:40:07.5268400Z Copying '/Users/ec2-user/.gitconfig' to '/Users/ec2-user/runner/_work/_temp/b907f84b-84f6-4b27-a2fe-59fbc9470049/.gitconfig' 2025-01-24T02:40:07.5269500Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/b907f84b-84f6-4b27-a2fe-59fbc9470049' before making global git config changes 2025-01-24T02:40:07.5270300Z Adding repository directory to the temporary git global config as a safe directory 2025-01-24T02:40:07.5273150Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/pytorch/pytorch 2025-01-24T02:40:07.5343170Z Deleting the contents of '/Users/ec2-user/runner/_work/pytorch/pytorch' 2025-01-24T02:40:07.5350690Z ##[group]Initializing the repository 2025-01-24T02:40:07.5353510Z [command]/usr/bin/git init /Users/ec2-user/runner/_work/pytorch/pytorch 2025-01-24T02:40:07.5582750Z Initialized empty Git repository in /Users/ec2-user/runner/_work/pytorch/pytorch/.git/ 2025-01-24T02:40:07.5590100Z [command]/usr/bin/git remote add origin https://github.com/pytorch/pytorch 2025-01-24T02:40:07.5663050Z ##[endgroup] 2025-01-24T02:40:07.5663450Z ##[group]Disabling automatic garbage collection 2025-01-24T02:40:07.5665120Z [command]/usr/bin/git config --local gc.auto 0 2025-01-24T02:40:07.5727520Z ##[endgroup] 2025-01-24T02:40:07.5727860Z ##[group]Setting up auth 2025-01-24T02:40:07.5731750Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-01-24T02:40:07.5791730Z [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-01-24T02:40:07.6271630Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-01-24T02:40:07.6334110Z [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-01-24T02:40:07.6819290Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-01-24T02:40:07.6883580Z ##[endgroup] 2025-01-24T02:40:07.6883970Z ##[group]Fetching the repository 2025-01-24T02:40:07.6888380Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2025-01-24T02:40:36.5925780Z From https://github.com/pytorch/pytorch 2025-01-24T02:40:36.5926860Z * [new branch] 144594 -> origin/144594 2025-01-24T02:40:36.5928220Z * [new branch] 2.1-dynamic-doc -> origin/2.1-dynamic-doc 2025-01-24T02:40:36.5929100Z * [new branch] 2.6.0.dev20241004+ -> origin/2.6.0.dev20241004+ 2025-01-24T02:40:36.5930310Z * [new branch] Adjust-Description-for-linux-binary-test-Workflow -> origin/Adjust-Description-for-linux-binary-test-Workflow 2025-01-24T02:40:36.5933140Z * [new branch] Broken-classifications_pending_unstable-Test -> origin/Broken-classifications_pending_unstable-Test 2025-01-24T02:40:36.5934700Z * [new branch] Chillee-patch-5 -> origin/Chillee-patch-5 2025-01-24T02:40:36.5943980Z * [new branch] Cleanup-Previous-Artifacts -> origin/Cleanup-Previous-Artifacts 2025-01-24T02:40:36.5945190Z * [new branch] JackCaoG/add_new_lazy_counter_macro -> origin/JackCaoG/add_new_lazy_counter_macro 2025-01-24T02:40:36.5945910Z * [new branch] JackCaoG/add_openxla_backend_to_list -> origin/JackCaoG/add_openxla_backend_to_list 2025-01-24T02:40:36.5946650Z * [new branch] JackCaoG/dynamo_make_fx_non_core_aten_ops -> origin/JackCaoG/dynamo_make_fx_non_core_aten_ops 2025-01-24T02:40:36.5947320Z * [new branch] JackCaoG/fix_xla_torchbench -> origin/JackCaoG/fix_xla_torchbench 2025-01-24T02:40:36.5949210Z * [new branch] JackCaoG/make_xla_dynamo_backend_boxed -> origin/JackCaoG/make_xla_dynamo_backend_boxed 2025-01-24T02:40:36.5952170Z * [new branch] JackCaoG/test_xla_pin -> origin/JackCaoG/test_xla_pin 2025-01-24T02:40:36.5954260Z * [new branch] JackCaoG/test_xla_pin_update -> origin/JackCaoG/test_xla_pin_update 2025-01-24T02:40:36.5956510Z * [new branch] JackCaoG/update_dynamo_doc -> origin/JackCaoG/update_dynamo_doc 2025-01-24T02:40:36.5958700Z * [new branch] JackCaoG/update_xla_dynamo -> origin/JackCaoG/update_xla_dynamo 2025-01-24T02:40:36.5960590Z * [new branch] JackCaoG/update_xla_pin_to_skip_test -> origin/JackCaoG/update_xla_pin_to_skip_test 2025-01-24T02:40:36.5962420Z * [new branch] JackCaoG/update_xla_pin_to_skip_test2 -> origin/JackCaoG/update_xla_pin_to_skip_test2 2025-01-24T02:40:36.5964630Z * [new branch] NicolasHug-patch-2 -> origin/NicolasHug-patch-2 2025-01-24T02:40:36.5966560Z * [new branch] PR-AOTInductorNoneBug -> origin/PR-AOTInductorNoneBug 2025-01-24T02:40:36.5968460Z * [new branch] PR-AOTInductorNoneBugFix -> origin/PR-AOTInductorNoneBugFix 2025-01-24T02:40:36.5970420Z * [new branch] PR-FixConfigsIssue -> origin/PR-FixConfigsIssue 2025-01-24T02:40:36.5972240Z * [new branch] PR-NoneBugFix-viable -> origin/PR-NoneBugFix-viable 2025-01-24T02:40:36.5974070Z * [new branch] PR-ResetToZero -> origin/PR-ResetToZero 2025-01-24T02:40:36.5976060Z * [new branch] Remove-linux_t4g_2xlarge-Usage -> origin/Remove-linux_t4g_2xlarge-Usage 2025-01-24T02:40:36.5977960Z * [new branch] Revert-PR-110949 -> origin/Revert-PR-110949 2025-01-24T02:40:36.5979630Z * [new branch] Switch-Linux-arm64-Runners -> origin/Switch-Linux-arm64-Runners 2025-01-24T02:40:36.5981680Z * [new branch] Update-Flash-Packaging -> origin/Update-Flash-Packaging 2025-01-24T02:40:36.5984080Z * [new branch] Valentine/flash_attention_bf16 -> origin/Valentine/flash_attention_bf16 2025-01-24T02:40:36.5986880Z * [new branch] WeixiMa/serialize -> origin/WeixiMa/serialize 2025-01-24T02:40:36.5989950Z * [new branch] _tmp-orig/release/2.6 -> origin/_tmp-orig/release/2.6 2025-01-24T02:40:36.5992370Z * [new branch] _tmp-release/2.6 -> origin/_tmp-release/2.6 2025-01-24T02:40:36.5995080Z * [new branch] abock/dort-torch-compile-options -> origin/abock/dort-torch-compile-options 2025-01-24T02:40:36.5996700Z * [new branch] abock/onnx-1.14.1rc1 -> origin/abock/onnx-1.14.1rc1 2025-01-24T02:40:36.5998900Z * [new branch] abock/onnx-1.15.0-validation -> origin/abock/onnx-1.15.0-validation 2025-01-24T02:40:36.6001100Z * [new branch] abock/ort-nightly==1.16.0.dev20230908001 -> origin/abock/ort-nightly==1.16.0.dev20230908001 2025-01-24T02:40:36.6002730Z * [new branch] add-android-build-workflow -> origin/add-android-build-workflow 2025-01-24T02:40:36.6004810Z * [new branch] add-assign -> origin/add-assign 2025-01-24T02:40:36.6006540Z * [new branch] add_broadcast_functional_collective -> origin/add_broadcast_functional_collective 2025-01-24T02:40:36.6008630Z * [new branch] add_mha_to_autocast_policy -> origin/add_mha_to_autocast_policy 2025-01-24T02:40:36.6010600Z * [new branch] add_non_parallel_model_comparison -> origin/add_non_parallel_model_comparison 2025-01-24T02:40:36.6012140Z * [new branch] add_reduce_op -> origin/add_reduce_op 2025-01-24T02:40:36.6013980Z * [new branch] add_torchao_docs -> origin/add_torchao_docs 2025-01-24T02:40:36.6016190Z * [new branch] addmm-heuristic -> origin/addmm-heuristic 2025-01-24T02:40:36.6017980Z * [new branch] addsimde -> origin/addsimde 2025-01-24T02:40:36.6019690Z * [new branch] ah-globalfeedback-hook -> origin/ah-globalfeedback-hook 2025-01-24T02:40:36.6022390Z * [new branch] alanwaketan/pin -> origin/alanwaketan/pin 2025-01-24T02:40:36.6024530Z * [new branch] alanwaketan/pin2 -> origin/alanwaketan/pin2 2025-01-24T02:40:36.6026630Z * [new branch] alt-disable -> origin/alt-disable 2025-01-24T02:40:36.6029260Z * [new branch] angelayi/aot -> origin/angelayi/aot 2025-01-24T02:40:36.6030930Z * [new branch] angelayi/aot_freeze -> origin/angelayi/aot_freeze 2025-01-24T02:40:36.6033030Z * [new branch] angelayi/aot_inductor_bench_comp_time -> origin/angelayi/aot_inductor_bench_comp_time 2025-01-24T02:40:36.6034920Z * [new branch] angelayi/aot_inductor_benchmark -> origin/angelayi/aot_inductor_benchmark 2025-01-24T02:40:36.6036770Z * [new branch] angelayi/aot_inductor_torch -> origin/angelayi/aot_inductor_torch 2025-01-24T02:40:36.6038670Z * [new branch] angelayi/aoti_additional_files -> origin/angelayi/aoti_additional_files 2025-01-24T02:40:36.6040700Z * [new branch] angelayi/aotinductor_const -> origin/angelayi/aotinductor_const 2025-01-24T02:40:36.6042340Z * [new branch] angelayi/aotinductor_const_name -> origin/angelayi/aotinductor_const_name 2025-01-24T02:40:36.6044290Z * [new branch] angelayi/bench -> origin/angelayi/bench 2025-01-24T02:40:36.6046080Z * [new branch] angelayi/benchmark -> origin/angelayi/benchmark 2025-01-24T02:40:36.6047810Z * [new branch] angelayi/benchmark_skip -> origin/angelayi/benchmark_skip 2025-01-24T02:40:36.6050300Z * [new branch] angelayi/bind -> origin/angelayi/bind 2025-01-24T02:40:36.6052320Z * [new branch] angelayi/constraint -> origin/angelayi/constraint 2025-01-24T02:40:36.6054050Z * [new branch] angelayi/core_aten -> origin/angelayi/core_aten 2025-01-24T02:40:36.6056360Z * [new branch] angelayi/core_split -> origin/angelayi/core_split 2025-01-24T02:40:36.6058150Z * [new branch] angelayi/cp107981 -> origin/angelayi/cp107981 2025-01-24T02:40:36.6060070Z * [new branch] angelayi/cp108217 -> origin/angelayi/cp108217 2025-01-24T02:40:36.6061920Z * [new branch] angelayi/cp108783 -> origin/angelayi/cp108783 2025-01-24T02:40:36.6063920Z * [new branch] angelayi/cp109060 -> origin/angelayi/cp109060 2025-01-24T02:40:36.6065850Z * [new branch] angelayi/cpp_loader -> origin/angelayi/cpp_loader 2025-01-24T02:40:36.6067700Z * [new branch] angelayi/custom_and_getattr -> origin/angelayi/custom_and_getattr 2025-01-24T02:40:36.6069440Z * [new branch] angelayi/customop -> origin/angelayi/customop 2025-01-24T02:40:36.6071400Z * [new branch] angelayi/default_serialized -> origin/angelayi/default_serialized 2025-01-24T02:40:36.6073100Z * [new branch] angelayi/docs -> origin/angelayi/docs 2025-01-24T02:40:36.6075260Z * [new branch] angelayi/embed_constants -> origin/angelayi/embed_constants 2025-01-24T02:40:36.6076930Z * [new branch] angelayi/ep_bc -> origin/angelayi/ep_bc 2025-01-24T02:40:36.6079370Z * [new branch] angelayi/export_custom_op_rst -> origin/angelayi/export_custom_op_rst 2025-01-24T02:40:36.6080600Z * [new branch] angelayi/export_docs -> origin/angelayi/export_docs 2025-01-24T02:40:36.6082920Z * [new branch] angelayi/exportdb -> origin/angelayi/exportdb 2025-01-24T02:40:36.6084830Z * [new branch] angelayi/fail_models_temp -> origin/angelayi/fail_models_temp 2025-01-24T02:40:36.6086680Z * [new branch] angelayi/fake -> origin/angelayi/fake 2025-01-24T02:40:36.6088440Z * [new branch] angelayi/fix_constrain -> origin/angelayi/fix_constrain 2025-01-24T02:40:36.6090380Z * [new branch] angelayi/getattr -> origin/angelayi/getattr 2025-01-24T02:40:36.6092230Z * [new branch] angelayi/hf_version -> origin/angelayi/hf_version 2025-01-24T02:40:36.6093960Z * [new branch] angelayi/hf_version_update -> origin/angelayi/hf_version_update 2025-01-24T02:40:36.6096050Z * [new branch] angelayi/inductor_temp -> origin/angelayi/inductor_temp 2025-01-24T02:40:36.6098210Z * [new branch] angelayi/kwarg_input -> origin/angelayi/kwarg_input 2025-01-24T02:40:36.6099830Z * [new branch] angelayi/load -> origin/angelayi/load 2025-01-24T02:40:36.6102060Z * [new branch] angelayi/logging.bak -> origin/angelayi/logging.bak 2025-01-24T02:40:36.6103710Z * [new branch] angelayi/logging2 -> origin/angelayi/logging2 2025-01-24T02:40:36.6105480Z * [new branch] angelayi/no_so_weight -> origin/angelayi/no_so_weight 2025-01-24T02:40:36.6107660Z * [new branch] angelayi/orig_args -> origin/angelayi/orig_args 2025-01-24T02:40:36.6109700Z * [new branch] angelayi/pickle -> origin/angelayi/pickle 2025-01-24T02:40:36.6111580Z * [new branch] angelayi/pytree -> origin/angelayi/pytree 2025-01-24T02:40:36.6113450Z * [new branch] angelayi/pytree2 -> origin/angelayi/pytree2 2025-01-24T02:40:36.6115140Z * [new branch] angelayi/pytree_namedtuple -> origin/angelayi/pytree_namedtuple 2025-01-24T02:40:36.6117120Z * [new branch] angelayi/remove_aoti_unlift -> origin/angelayi/remove_aoti_unlift 2025-01-24T02:40:36.6124470Z * [new branch] angelayi/revert_inductor -> origin/angelayi/revert_inductor 2025-01-24T02:40:36.6125090Z * [new branch] angelayi/schema_version -> origin/angelayi/schema_version 2025-01-24T02:40:36.6125640Z * [new branch] angelayi/ser_constrain -> origin/angelayi/ser_constrain 2025-01-24T02:40:36.6126260Z * [new branch] angelayi/serialize_symint_inputs -> origin/angelayi/serialize_symint_inputs 2025-01-24T02:40:36.6126820Z * [new branch] angelayi/shape -> origin/angelayi/shape 2025-01-24T02:40:36.6128010Z * [new branch] angelayi/test113041 -> origin/angelayi/test113041 2025-01-24T02:40:36.6130390Z * [new branch] angelayi/test_aot_mode -> origin/angelayi/test_aot_mode 2025-01-24T02:40:36.6132370Z * [new branch] angelayi/torch_size -> origin/angelayi/torch_size 2025-01-24T02:40:36.6134110Z * [new branch] angelayi/update_schema_msg -> origin/angelayi/update_schema_msg 2025-01-24T02:40:36.6136460Z * [new branch] atalman-inductor-perf-cu124 -> origin/atalman-inductor-perf-cu124 2025-01-24T02:40:36.6138310Z * [new branch] atalman-inductor-perf-cu124.1 -> origin/atalman-inductor-perf-cu124.1 2025-01-24T02:40:36.6140010Z * [new branch] atalman-patch-1 -> origin/atalman-patch-1 2025-01-24T02:40:36.6141850Z * [new branch] atalman-patch-10 -> origin/atalman-patch-10 2025-01-24T02:40:36.6143850Z * [new branch] atalman-patch-2 -> origin/atalman-patch-2 2025-01-24T02:40:36.6145530Z * [new branch] atalman-patch-3 -> origin/atalman-patch-3 2025-01-24T02:40:36.6147580Z * [new branch] atalman-patch-6 -> origin/atalman-patch-6 2025-01-24T02:40:36.6149410Z * [new branch] atalman-patch-8 -> origin/atalman-patch-8 2025-01-24T02:40:36.6151250Z * [new branch] atalman-patch-9 -> origin/atalman-patch-9 2025-01-24T02:40:36.6153200Z * [new branch] atalman_inductor_2.3.0 -> origin/atalman_inductor_2.3.0 2025-01-24T02:40:36.6155050Z * [new branch] atalman_inductor_2.3.1 -> origin/atalman_inductor_2.3.1 2025-01-24T02:40:36.6156960Z * [new branch] atalman_inductor_2.4.0 -> origin/atalman_inductor_2.4.0 2025-01-24T02:40:36.6158860Z * [new branch] atalman_inductor_2.4.x -> origin/atalman_inductor_2.4.x 2025-01-24T02:40:36.6160900Z * [new branch] avoid_record_ag_rs -> origin/avoid_record_ag_rs 2025-01-24T02:40:36.6163370Z * [new branch] bahuang/dropout -> origin/bahuang/dropout 2025-01-24T02:40:36.6164950Z * [new branch] bahuang/make_fallback -> origin/bahuang/make_fallback 2025-01-24T02:40:36.6167470Z * [new branch] base/1.5 -> origin/base/1.5 2025-01-24T02:40:36.6169380Z * [new branch] base_inductor_opt_flag -> origin/base_inductor_opt_flag 2025-01-24T02:40:36.6171350Z * [new branch] batching_sdpa_efficient_attention -> origin/batching_sdpa_efficient_attention 2025-01-24T02:40:36.6173200Z * [new branch] batchnorm-unexpected-success -> origin/batchnorm-unexpected-success 2025-01-24T02:40:36.6175120Z * [new branch] benchmark-updates -> origin/benchmark-updates 2025-01-24T02:40:36.6177190Z * [new branch] bertmaher/pinbump26 -> origin/bertmaher/pinbump26 2025-01-24T02:40:36.6180690Z * [new branch] bertrand/cutlass -> origin/bertrand/cutlass 2025-01-24T02:40:36.6183270Z * [new branch] bf/be-cudagraph-utils -> origin/bf/be-cudagraph-utils 2025-01-24T02:40:36.6185580Z * [new branch] bf/be-dependencies -> origin/bf/be-dependencies 2025-01-24T02:40:36.6187400Z * [new branch] bf/be-metrics -> origin/bf/be-metrics 2025-01-24T02:40:36.6189230Z * [new branch] bf/be-pad-mm -> origin/bf/be-pad-mm 2025-01-24T02:40:36.6191140Z * [new branch] bf/be-wrapper-benchmark -> origin/bf/be-wrapper-benchmark 2025-01-24T02:40:36.6193090Z * [new branch] bf/cg-doc-add-cuda-device -> origin/bf/cg-doc-add-cuda-device 2025-01-24T02:40:36.6194810Z * [new branch] bf/cg-multithreading -> origin/bf/cg-multithreading 2025-01-24T02:40:36.6196690Z * [new branch] bf/cg-remove-check -> origin/bf/cg-remove-check 2025-01-24T02:40:36.6198570Z * [new branch] bf/cudagraph -> origin/bf/cudagraph 2025-01-24T02:40:36.6200550Z * [new branch] bf/cudagraph-disable-input-mutation -> origin/bf/cudagraph-disable-input-mutation 2025-01-24T02:40:36.6203280Z * [new branch] bf/cudagraph-enable-input-mutation-support-benchmark -> origin/bf/cudagraph-enable-input-mutation-support-benchmark 2025-01-24T02:40:36.6205080Z * [new branch] bf/donated-buffer-bench -> origin/bf/donated-buffer-bench 2025-01-24T02:40:36.6207280Z * [new branch] bf/pa-input-pos-bs -> origin/bf/pa-input-pos-bs 2025-01-24T02:40:36.6209290Z * [new branch] bf/reduce-scatter-copy-in -> origin/bf/reduce-scatter-copy-in 2025-01-24T02:40:36.6210980Z * [new branch] bf/relax-reinplace-size-constraint -> origin/bf/relax-reinplace-size-constraint 2025-01-24T02:40:36.6213090Z * [new branch] bf/remove-check -> origin/bf/remove-check 2025-01-24T02:40:36.6214920Z * [new branch] bf/remove-check-55b0c39d -> origin/bf/remove-check-55b0c39d 2025-01-24T02:40:36.6216900Z * [new branch] bisect_perf_hf_T5_3acc6eac492 -> origin/bisect_perf_hf_T5_3acc6eac492 2025-01-24T02:40:36.6218780Z * [new branch] bisect_perf_hf_T5_3fcf66f61fb -> origin/bisect_perf_hf_T5_3fcf66f61fb 2025-01-24T02:40:36.6220590Z * [new branch] bisect_perf_hf_T5_4009d154129 -> origin/bisect_perf_hf_T5_4009d154129 2025-01-24T02:40:36.6222410Z * [new branch] bisect_perf_hf_T5_40d0740e73d -> origin/bisect_perf_hf_T5_40d0740e73d 2025-01-24T02:40:36.6224730Z * [new branch] bisect_perf_hf_T5_5268754e -> origin/bisect_perf_hf_T5_5268754e 2025-01-24T02:40:36.6225930Z * [new branch] bisect_perf_hf_T5_7d89a8d385c -> origin/bisect_perf_hf_T5_7d89a8d385c 2025-01-24T02:40:36.6228430Z * [new branch] bisect_perf_hf_T5_b7a25c1ee7c -> origin/bisect_perf_hf_T5_b7a25c1ee7c 2025-01-24T02:40:36.6230500Z * [new branch] bisect_perf_hf_T5_c25b201583f -> origin/bisect_perf_hf_T5_c25b201583f 2025-01-24T02:40:36.6231640Z * [new branch] bisect_perf_hf_T5_c93e57efac0 -> origin/bisect_perf_hf_T5_c93e57efac0 2025-01-24T02:40:36.6234080Z * [new branch] bisect_perf_hf_T5_ca9813ea149 -> origin/bisect_perf_hf_T5_ca9813ea149 2025-01-24T02:40:36.6235300Z * [new branch] bisect_perf_hf_T5_d65f194a -> origin/bisect_perf_hf_T5_d65f194a 2025-01-24T02:40:36.6237210Z * [new branch] bisect_perf_hf_T5_da94ab0b -> origin/bisect_perf_hf_T5_da94ab0b 2025-01-24T02:40:36.6239310Z * [new branch] bisect_perf_hf_T5_da94ab0b_new -> origin/bisect_perf_hf_T5_da94ab0b_new 2025-01-24T02:40:36.6241470Z * [new branch] bisect_perf_hf_T5_db4e8a1d8a8 -> origin/bisect_perf_hf_T5_db4e8a1d8a8 2025-01-24T02:40:36.6271740Z * [new branch] bisect_perf_hf_T5_e0d97e936a2 -> origin/bisect_perf_hf_T5_e0d97e936a2 2025-01-24T02:40:36.6272340Z * [new branch] bisect_perf_hf_T5_f23621ec563 -> origin/bisect_perf_hf_T5_f23621ec563 2025-01-24T02:40:36.6272930Z * [new branch] bowbao/beartype_fix_2.1.1 -> origin/bowbao/beartype_fix_2.1.1 2025-01-24T02:40:36.6274230Z * [new branch] bowbao/bench_updates -> origin/bowbao/bench_updates 2025-01-24T02:40:36.6274790Z * [new branch] bowbao/bench_updates_stage -> origin/bowbao/bench_updates_stage 2025-01-24T02:40:36.6275360Z * [new branch] bowbao/benchmark_test_data -> origin/bowbao/benchmark_test_data 2025-01-24T02:40:36.6275910Z * [new branch] bowbao/dort_rewriter -> origin/bowbao/dort_rewriter 2025-01-24T02:40:36.6276420Z * [new branch] bowbao/skip_decomp -> origin/bowbao/skip_decomp 2025-01-24T02:40:36.6276910Z * [new branch] bowbao/wip_prs -> origin/bowbao/wip_prs 2025-01-24T02:40:36.6277450Z * [new branch] brenocfg/fix-meta-opinfo -> origin/brenocfg/fix-meta-opinfo 2025-01-24T02:40:36.6278040Z * [new branch] brenocfg/special_airy_ai_ref -> origin/brenocfg/special_airy_ai_ref 2025-01-24T02:40:36.6278570Z * [new branch] brgemm_int8 -> origin/brgemm_int8 2025-01-24T02:40:36.6279310Z * [new branch] brister/always_tiled_reduction -> origin/brister/always_tiled_reduction 2025-01-24T02:40:36.6279900Z * [new branch] brister/nd_tiling_stardep -> origin/brister/nd_tiling_stardep 2025-01-24T02:40:36.6280460Z * [new branch] brister/reduction_numel -> origin/brister/reduction_numel 2025-01-24T02:40:36.6281010Z * [new branch] brister/tiled_reduction -> origin/brister/tiled_reduction 2025-01-24T02:40:36.6281650Z * [new branch] brister/tiled_reduction_no_numel_check -> origin/brister/tiled_reduction_no_numel_check 2025-01-24T02:40:36.6282240Z * [new branch] brister/wrapper_ir -> origin/brister/wrapper_ir 2025-01-24T02:40:36.6282700Z * [new branch] ca_0431d47eaa -> origin/ca_0431d47eaa 2025-01-24T02:40:36.6283160Z * [new branch] ca_fix_0431d47eaa -> origin/ca_fix_0431d47eaa 2025-01-24T02:40:36.6283680Z * [new branch] cache-limit-prototype2 -> origin/cache-limit-prototype2 2025-01-24T02:40:36.6286960Z * [new branch] cache-limit-prototype3 -> origin/cache-limit-prototype3 2025-01-24T02:40:36.6288830Z * [new branch] cache_size_internal -> origin/cache_size_internal 2025-01-24T02:40:36.6291130Z * [new branch] cache_size_internal_1 -> origin/cache_size_internal_1 2025-01-24T02:40:36.6292950Z * [new branch] camyllh_update_vs_build_to_2022 -> origin/camyllh_update_vs_build_to_2022 2025-01-24T02:40:36.6294780Z * [new branch] capture_eval_train_error -> origin/capture_eval_train_error 2025-01-24T02:40:36.6297240Z * [new branch] chenyang78/dyn-shape-ci-tmp -> origin/chenyang78/dyn-shape-ci-tmp 2025-01-24T02:40:36.6299490Z * [new branch] cherry-pick-111576 -> origin/cherry-pick-111576 2025-01-24T02:40:36.6308280Z * [new branch] cherry-pick-136890-by-pytorch_bot_bot_ -> origin/cherry-pick-136890-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6309250Z * [new branch] cherry-pick-141063-by-pytorch_bot_bot_ -> origin/cherry-pick-141063-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6311330Z * [new branch] cherry-pick-142292-by-pytorch_bot_bot_ -> origin/cherry-pick-142292-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6312670Z * [new branch] cherry-pick-142398-by-pytorch_bot_bot_ -> origin/cherry-pick-142398-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6313430Z * [new branch] cherry-pick-142831-by-pytorch_bot_bot_ -> origin/cherry-pick-142831-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6314170Z * [new branch] cherry-pick-143095-by-pytorch_bot_bot_ -> origin/cherry-pick-143095-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6315040Z * [new branch] cherry-pick-143127-by-pytorch_bot_bot_ -> origin/cherry-pick-143127-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6315850Z * [new branch] cherry-pick-143141-by-pytorch_bot_bot_ -> origin/cherry-pick-143141-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6317160Z * [new branch] cherry-pick-143183-by-pytorch_bot_bot_ -> origin/cherry-pick-143183-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6319530Z * [new branch] cherry-pick-143196-by-pytorch_bot_bot_ -> origin/cherry-pick-143196-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6321440Z * [new branch] cherry-pick-143212-by-pytorch_bot_bot_ -> origin/cherry-pick-143212-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6323390Z * [new branch] cherry-pick-143242-by-pytorch_bot_bot_ -> origin/cherry-pick-143242-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6325370Z * [new branch] cherry-pick-143376-by-pytorch_bot_bot_ -> origin/cherry-pick-143376-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6327300Z * [new branch] cherry-pick-143569-by-pytorch_bot_bot_ -> origin/cherry-pick-143569-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6329220Z * [new branch] cherry-pick-143570-by-pytorch_bot_bot_ -> origin/cherry-pick-143570-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6330480Z * [new branch] cherry-pick-143839-by-pytorch_bot_bot_ -> origin/cherry-pick-143839-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6332660Z * [new branch] cherry-pick-143866-by-pytorch_bot_bot_ -> origin/cherry-pick-143866-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6334800Z * [new branch] cherry-pick-144078-by-pytorch_bot_bot_ -> origin/cherry-pick-144078-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6336440Z * [new branch] cherry-pick-144249-by-pytorch_bot_bot_ -> origin/cherry-pick-144249-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6338490Z * [new branch] cherry-pick-144251-by-pytorch_bot_bot_ -> origin/cherry-pick-144251-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6340550Z * [new branch] cherry-pick-144285-by-pytorch_bot_bot_ -> origin/cherry-pick-144285-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6342630Z * [new branch] cherry-pick-144343-by-pytorch_bot_bot_ -> origin/cherry-pick-144343-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6343940Z * [new branch] cherry-pick-144358-by-pytorch_bot_bot_ -> origin/cherry-pick-144358-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6346110Z * [new branch] cherry-pick-144361-by-pytorch_bot_bot_ -> origin/cherry-pick-144361-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6348000Z * [new branch] cherry-pick-144368-by-pytorch_bot_bot_ -> origin/cherry-pick-144368-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6349860Z * [new branch] cherry-pick-144396-by-pytorch_bot_bot_ -> origin/cherry-pick-144396-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6351880Z * [new branch] cherry-pick-144425-by-pytorch_bot_bot_ -> origin/cherry-pick-144425-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6354270Z * [new branch] cherry-pick-144477-by-pytorch_bot_bot_ -> origin/cherry-pick-144477-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6355470Z * [new branch] cherry-pick-144914-by-pytorch_bot_bot_ -> origin/cherry-pick-144914-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6357530Z * [new branch] cherry-pick-145020-by-pytorch_bot_bot_ -> origin/cherry-pick-145020-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6359430Z * [new branch] cherry-pick-145251-by-pytorch_bot_bot_ -> origin/cherry-pick-145251-by-pytorch_bot_bot_ 2025-01-24T02:40:36.6361330Z * [new branch] cherry-pick-post-acc-grad-docs -> origin/cherry-pick-post-acc-grad-docs 2025-01-24T02:40:36.6363150Z * [new branch] ci_pin -> origin/ci_pin 2025-01-24T02:40:36.6365250Z * [new branch] ckluk2-compileThread-1 -> origin/ckluk2-compileThread-1 2025-01-24T02:40:36.6367090Z * [new branch] ckluk2-compileThread-2 -> origin/ckluk2-compileThread-2 2025-01-24T02:40:36.6369120Z * [new branch] ckluk2-compileThread-64 -> origin/ckluk2-compileThread-64 2025-01-24T02:40:36.6370690Z * [new branch] ckluk2-test-1 -> origin/ckluk2-test-1 2025-01-24T02:40:36.6372630Z * [new branch] compile_fsdp2_disable_stream_and_event -> origin/compile_fsdp2_disable_stream_and_event 2025-01-24T02:40:36.6374250Z * [new branch] condition-branch-in-debug-handler -> origin/condition-branch-in-debug-handler 2025-01-24T02:40:36.6376230Z * [new branch] consolidate-is-qat -> origin/consolidate-is-qat 2025-01-24T02:40:36.6378020Z * [new branch] constraint_2 -> origin/constraint_2 2025-01-24T02:40:36.6379880Z * [new branch] copy_graph -> origin/copy_graph 2025-01-24T02:40:36.6382370Z * [new branch] cpio/fix_new_ami_tests -> origin/cpio/fix_new_ami_tests 2025-01-24T02:40:36.6388580Z * [new branch] cpio/fix_unit_test -> origin/cpio/fix_unit_test 2025-01-24T02:40:36.6390700Z * [new branch] cpp_gemm_template_arm -> origin/cpp_gemm_template_arm 2025-01-24T02:40:36.6392230Z * [new branch] create_chunk_list -> origin/create_chunk_list 2025-01-24T02:40:36.6394760Z * [new branch] crpa/fix-typo -> origin/crpa/fix-typo 2025-01-24T02:40:36.6397350Z * [new branch] csl/3proc -> origin/csl/3proc 2025-01-24T02:40:36.6399210Z * [new branch] csl/always_produce_xml -> origin/csl/always_produce_xml 2025-01-24T02:40:36.6401070Z * [new branch] csl/apiratelimitephemeral -> origin/csl/apiratelimitephemeral 2025-01-24T02:40:36.6402690Z * [new branch] csl/bazel_networkx -> origin/csl/bazel_networkx 2025-01-24T02:40:36.6404620Z * [new branch] csl/binary_checksum -> origin/csl/binary_checksum 2025-01-24T02:40:36.6406350Z * [new branch] csl/binary_whl_metadata -> origin/csl/binary_whl_metadata 2025-01-24T02:40:36.6408070Z * [new branch] csl/closeissues -> origin/csl/closeissues 2025-01-24T02:40:36.6409930Z * [new branch] csl/condatoken -> origin/csl/condatoken 2025-01-24T02:40:36.6411770Z * [new branch] csl/cov_experiment -> origin/csl/cov_experiment 2025-01-24T02:40:36.6413910Z * [new branch] csl/defaulttesttimes -> origin/csl/defaulttesttimes 2025-01-24T02:40:36.6415640Z * [new branch] csl/disableautotune -> origin/csl/disableautotune 2025-01-24T02:40:36.6417190Z * [new branch] csl/disableflex -> origin/csl/disableflex 2025-01-24T02:40:36.6418790Z * [new branch] csl/docsenv -> origin/csl/docsenv 2025-01-24T02:40:36.6420440Z * [new branch] csl/dynamicshapesdup -> origin/csl/dynamicshapesdup 2025-01-24T02:40:36.6422760Z * [new branch] csl/editable_install -> origin/csl/editable_install 2025-01-24T02:40:36.6424470Z * [new branch] csl/errormsgs -> origin/csl/errormsgs 2025-01-24T02:40:36.6426220Z * [new branch] csl/fflint -> origin/csl/fflint 2025-01-24T02:40:36.6428490Z * [new branch] csl/inductortest_max_autotune -> origin/csl/inductortest_max_autotune 2025-01-24T02:40:36.6429820Z * [new branch] csl/linter_grep_linter_a -> origin/csl/linter_grep_linter_a 2025-01-24T02:40:36.6431870Z * [new branch] csl/logchanges -> origin/csl/logchanges 2025-01-24T02:40:36.6433520Z * [new branch] csl/logging -> origin/csl/logging 2025-01-24T02:40:36.6435210Z * [new branch] csl/logtest -> origin/csl/logtest 2025-01-24T02:40:36.6437130Z * [new branch] csl/multigpu_2_shard -> origin/csl/multigpu_2_shard 2025-01-24T02:40:36.6438800Z * [new branch] csl/multigpufix -> origin/csl/multigpufix 2025-01-24T02:40:36.6440680Z * [new branch] csl/pep658_script_can_backfill -> origin/csl/pep658_script_can_backfill 2025-01-24T02:40:36.6442460Z * [new branch] csl/pytest_timeout -> origin/csl/pytest_timeout 2025-01-24T02:40:36.6444300Z * [new branch] csl/reorder -> origin/csl/reorder 2025-01-24T02:40:36.6446040Z * [new branch] csl/revert -> origin/csl/revert 2025-01-24T02:40:36.6447920Z * [new branch] csl/revert_metadata -> origin/csl/revert_metadata 2025-01-24T02:40:36.6449690Z * [new branch] csl/rocmsecrets -> origin/csl/rocmsecrets 2025-01-24T02:40:36.6451510Z * [new branch] csl/runtesttypes -> origin/csl/runtesttypes 2025-01-24T02:40:36.6453320Z * [new branch] csl/skipslow -> origin/csl/skipslow 2025-01-24T02:40:36.6455130Z * [new branch] csl/slowtesttimeout -> origin/csl/slowtesttimeout 2025-01-24T02:40:36.6457110Z * [new branch] csl/stdmakeunique -> origin/csl/stdmakeunique 2025-01-24T02:40:36.6458820Z * [new branch] csl/tensoboardpip -> origin/csl/tensoboardpip 2025-01-24T02:40:36.6460270Z * [new branch] csl/testlstmpackedslow -> origin/csl/testlstmpackedslow 2025-01-24T02:40:36.6467170Z * [new branch] csl/testselectiontools -> origin/csl/testselectiontools 2025-01-24T02:40:36.6467820Z * [new branch] csl/update_clickhouse_connect -> origin/csl/update_clickhouse_connect 2025-01-24T02:40:36.6468460Z * [new branch] csl/upload_metadta_better_parsing -> origin/csl/upload_metadta_better_parsing 2025-01-24T02:40:36.6469420Z * [new branch] csl/windowsbat -> origin/csl/windowsbat 2025-01-24T02:40:36.6472350Z * [new branch] csl/xdist_test -> origin/csl/xdist_test 2025-01-24T02:40:36.6475370Z * [new branch] ctx_manager -> origin/ctx_manager 2025-01-24T02:40:36.6476770Z * [new branch] cublasfp16accum -> origin/cublasfp16accum 2025-01-24T02:40:36.6477620Z * [new branch] cutlass-template-fix-rocm -> origin/cutlass-template-fix-rocm 2025-01-24T02:40:36.6479030Z * [new branch] dataclass -> origin/dataclass 2025-01-24T02:40:36.6480890Z * [new branch] debug-ghcr -> origin/debug-ghcr 2025-01-24T02:40:36.6483340Z * [new branch] deferring-reduction-split -> origin/deferring-reduction-split 2025-01-24T02:40:36.6485710Z * [new branch] desertfire/test_cpp_wrapper -> origin/desertfire/test_cpp_wrapper 2025-01-24T02:40:36.6487590Z * [new branch] desertfire/triton-cpu-for-aarch64 -> origin/desertfire/triton-cpu-for-aarch64 2025-01-24T02:40:36.6489480Z * [new branch] desertfire/update_timm_pin -> origin/desertfire/update_timm_pin 2025-01-24T02:40:36.6492810Z * [new branch] dev/joona/MPSNDArrayAdd -> origin/dev/joona/MPSNDArrayAdd 2025-01-24T02:40:36.6494660Z * [new branch] dev/joona/Unranked -> origin/dev/joona/Unranked 2025-01-24T02:40:36.6496560Z * [new branch] dev/joona/bmm_tiling_extend -> origin/dev/joona/bmm_tiling_extend 2025-01-24T02:40:36.6498800Z * [new branch] dev/joona/check_bounds_index_select -> origin/dev/joona/check_bounds_index_select 2025-01-24T02:40:36.6500320Z * [new branch] dev/joona/embeddingbag -> origin/dev/joona/embeddingbag 2025-01-24T02:40:36.6502450Z * [new branch] dev/joona/lstm_leak -> origin/dev/joona/lstm_leak 2025-01-24T02:40:36.6504460Z * [new branch] dev/joona/minmaxprop -> origin/dev/joona/minmaxprop 2025-01-24T02:40:36.6506440Z * [new branch] dev/joona/sdpa -> origin/dev/joona/sdpa 2025-01-24T02:40:36.6508340Z * [new branch] dev/joona/unique_leak -> origin/dev/joona/unique_leak 2025-01-24T02:40:36.6510290Z * [new branch] dev/joona/upsize3d -> origin/dev/joona/upsize3d 2025-01-24T02:40:36.6512180Z * [new branch] disable -> origin/disable 2025-01-24T02:40:36.6513920Z * [new branch] disable_fp_contract_baseline -> origin/disable_fp_contract_baseline 2025-01-24T02:40:36.6515990Z * [new branch] distributed_checkpointing_e2e_tests -> origin/distributed_checkpointing_e2e_tests 2025-01-24T02:40:36.6517720Z * [new branch] docs_numpy -> origin/docs_numpy 2025-01-24T02:40:36.6519610Z * [new branch] dropout-eval -> origin/dropout-eval 2025-01-24T02:40:36.6521820Z * [new branch] dtensor_class_doc -> origin/dtensor_class_doc 2025-01-24T02:40:36.6524220Z * [new branch] dtensor_fixes_2.1 -> origin/dtensor_fixes_2.1 2025-01-24T02:40:36.6526510Z * [new branch] dynamic_dim_2 -> origin/dynamic_dim_2 2025-01-24T02:40:36.6528200Z * [new branch] dynamorunner_mp -> origin/dynamorunner_mp 2025-01-24T02:40:36.6529610Z * [new branch] e2e-baseline -> origin/e2e-baseline 2025-01-24T02:40:36.6532420Z * [new branch] eikanwang/eager_torch_compile -> origin/eikanwang/eager_torch_compile 2025-01-24T02:40:36.6535070Z * [new branch] embg/test_inductor_ci_128B -> origin/embg/test_inductor_ci_128B 2025-01-24T02:40:36.6536870Z * [new branch] embg/test_inductor_ci_base -> origin/embg/test_inductor_ci_base 2025-01-24T02:40:36.6538860Z * [new branch] embg/test_inductor_ci_control -> origin/embg/test_inductor_ci_control 2025-01-24T02:40:36.6540930Z * [new branch] embg/triton_l2_prefetch_128B -> origin/embg/triton_l2_prefetch_128B 2025-01-24T02:40:36.6542560Z * [new branch] embg/triton_l2_prefetch_256B -> origin/embg/triton_l2_prefetch_256B 2025-01-24T02:40:36.6544550Z * [new branch] eqy-patch-1 -> origin/eqy-patch-1 2025-01-24T02:40:36.6546150Z * [new branch] eqy-patch-2 -> origin/eqy-patch-2 2025-01-24T02:40:36.6548300Z * [new branch] eqy-patch-20 -> origin/eqy-patch-20 2025-01-24T02:40:36.6550060Z * [new branch] eqy-patch-21 -> origin/eqy-patch-21 2025-01-24T02:40:36.6552060Z * [new branch] eqy-patch-23 -> origin/eqy-patch-23 2025-01-24T02:40:36.6553890Z * [new branch] eqy-patch-25 -> origin/eqy-patch-25 2025-01-24T02:40:36.6555750Z * [new branch] eqy-patch-26 -> origin/eqy-patch-26 2025-01-24T02:40:36.6557630Z * [new branch] eqy-patch-27 -> origin/eqy-patch-27 2025-01-24T02:40:36.6560280Z * [new branch] exclamaforte/aot-inductor-debug -> origin/exclamaforte/aot-inductor-debug 2025-01-24T02:40:36.6562110Z * [new branch] exclamaforte/benchmark-harness -> origin/exclamaforte/benchmark-harness 2025-01-24T02:40:36.6564030Z * [new branch] exclamaforte/config-fuzzer-1 -> origin/exclamaforte/config-fuzzer-1 2025-01-24T02:40:36.6565670Z * [new branch] exclamaforte/cpp-wrapper-debug -> origin/exclamaforte/cpp-wrapper-debug 2025-01-24T02:40:36.6567780Z * [new branch] exclamaforte/cpp-wrapper-training-annotation -> origin/exclamaforte/cpp-wrapper-training-annotation 2025-01-24T02:40:36.6570150Z * [new branch] exclamaforte/delta -> origin/exclamaforte/delta 2025-01-24T02:40:36.6572460Z * [new branch] exclamaforte/fix-orig-svg -> origin/exclamaforte/fix-orig-svg 2025-01-24T02:40:36.6574700Z * [new branch] exclamaforte/fix-trace-parsing-fx-svg -> origin/exclamaforte/fix-trace-parsing-fx-svg 2025-01-24T02:40:36.6576400Z * [new branch] exclamaforte/fuzzer-0 -> origin/exclamaforte/fuzzer-0 2025-01-24T02:40:36.6578270Z * [new branch] exclamaforte/fuzzer-dynamo -> origin/exclamaforte/fuzzer-dynamo 2025-01-24T02:40:36.6580730Z * [new branch] exclamaforte/max-autotune-dtype-test -> origin/exclamaforte/max-autotune-dtype-test 2025-01-24T02:40:36.6582050Z * [new branch] exclamaforte/remove-desc-names -> origin/exclamaforte/remove-desc-names 2025-01-24T02:40:36.6583990Z * [new branch] exclamaforte/test_cpp_wrapper_mode -> origin/exclamaforte/test_cpp_wrapper_mode 2025-01-24T02:40:36.6586050Z * [new branch] exec -> origin/exec 2025-01-24T02:40:36.6587840Z * [new branch] experimental-mosaic -> origin/experimental-mosaic 2025-01-24T02:40:36.6589700Z * [new branch] export-D48800879 -> origin/export-D48800879 2025-01-24T02:40:36.6591650Z * [new branch] export-D48927532 -> origin/export-D48927532 2025-01-24T02:40:36.6593600Z * [new branch] export-D48927532-1 -> origin/export-D48927532-1 2025-01-24T02:40:36.6595280Z * [new branch] export-D50544876 -> origin/export-D50544876 2025-01-24T02:40:36.6597330Z * [new branch] export-D51032385 -> origin/export-D51032385 2025-01-24T02:40:36.6599130Z * [new branch] export-D52434604 -> origin/export-D52434604 2025-01-24T02:40:36.6600930Z * [new branch] export-D58091437 -> origin/export-D58091437 2025-01-24T02:40:36.6602860Z * [new branch] export-D61047529 -> origin/export-D61047529 2025-01-24T02:40:36.6604730Z * [new branch] export-D63493615 -> origin/export-D63493615 2025-01-24T02:40:36.6607500Z * [new branch] export-D63846832 -> origin/export-D63846832 2025-01-24T02:40:36.6609960Z * [new branch] export-D63985323 -> origin/export-D63985323 2025-01-24T02:40:36.6612610Z * [new branch] export-D64023523 -> origin/export-D64023523 2025-01-24T02:40:36.6615180Z * [new branch] export-D64876877 -> origin/export-D64876877 2025-01-24T02:40:36.6616870Z * [new branch] export-D64982221 -> origin/export-D64982221 2025-01-24T02:40:36.6618920Z * [new branch] export-D64995390 -> origin/export-D64995390 2025-01-24T02:40:36.6620680Z * [new branch] export-D65006709 -> origin/export-D65006709 2025-01-24T02:40:36.6622450Z * [new branch] export-D65237586 -> origin/export-D65237586 2025-01-24T02:40:36.6624690Z * [new branch] export-D65354569 -> origin/export-D65354569 2025-01-24T02:40:36.6626630Z * [new branch] export-D65456781 -> origin/export-D65456781 2025-01-24T02:40:36.6628440Z * [new branch] export-D65560950 -> origin/export-D65560950 2025-01-24T02:40:36.6630360Z * [new branch] export-D65638757 -> origin/export-D65638757 2025-01-24T02:40:36.6636660Z * [new branch] export-D66529288 -> origin/export-D66529288 2025-01-24T02:40:36.6638730Z * [new branch] export-D66690419 -> origin/export-D66690419 2025-01-24T02:40:36.6640740Z * [new branch] export-D66717302 -> origin/export-D66717302 2025-01-24T02:40:36.6642600Z * [new branch] export-D66908884 -> origin/export-D66908884 2025-01-24T02:40:36.6648820Z * [new branch] export-D67537234 -> origin/export-D67537234 2025-01-24T02:40:36.6649330Z * [new branch] export-D67762069 -> origin/export-D67762069 2025-01-24T02:40:36.6649820Z * [new branch] export-D68174038 -> origin/export-D68174038 2025-01-24T02:40:36.6650310Z * [new branch] export-D68177409 -> origin/export-D68177409 2025-01-24T02:40:36.6652430Z * [new branch] export-D68245292 -> origin/export-D68245292 2025-01-24T02:40:36.6653670Z * [new branch] export-D68278174 -> origin/export-D68278174 2025-01-24T02:40:36.6655820Z * [new branch] export-D68294638 -> origin/export-D68294638 2025-01-24T02:40:36.6661770Z * [new branch] export-D68303934 -> origin/export-D68303934 2025-01-24T02:40:36.6663630Z * [new branch] export-D68534017 -> origin/export-D68534017 2025-01-24T02:40:36.6665780Z * [new branch] export_constrain_3 -> origin/export_constrain_3 2025-01-24T02:40:36.6667600Z * [new branch] export_constraint_class_4 -> origin/export_constraint_class_4 2025-01-24T02:40:36.6669530Z * [new branch] export_dynamic_dim_2 -> origin/export_dynamic_dim_2 2025-01-24T02:40:36.6671360Z * [new branch] export_export_1 -> origin/export_export_1 2025-01-24T02:40:36.6673220Z * [new branch] export_program_class_5 -> origin/export_program_class_5 2025-01-24T02:40:36.6674930Z * [new branch] export_save_load_6 -> origin/export_save_load_6 2025-01-24T02:40:36.6676960Z * [new branch] exported-model-train-idempotent -> origin/exported-model-train-idempotent 2025-01-24T02:40:36.6678400Z * [new branch] fa_u8_brgemm -> origin/fa_u8_brgemm 2025-01-24T02:40:36.6680800Z * [new branch] fastmath_baseline -> origin/fastmath_baseline 2025-01-24T02:40:36.6682450Z * [new branch] fastmath_target -> origin/fastmath_target 2025-01-24T02:40:36.6684900Z * [new branch] fbcode/warm -> origin/fbcode/warm 2025-01-24T02:40:36.6686960Z * [new branch] fca -> origin/fca 2025-01-24T02:40:36.6688550Z * [new branch] fca2 -> origin/fca2 2025-01-24T02:40:36.6690550Z * [new branch] fca2_ca5984c -> origin/fca2_ca5984c 2025-01-24T02:40:36.6692250Z * [new branch] fca3 -> origin/fca3 2025-01-24T02:40:36.6694170Z * [new branch] fca5 -> origin/fca5 2025-01-24T02:40:36.6696800Z * [new branch] fengyuan/external-proj -> origin/fengyuan/external-proj 2025-01-24T02:40:36.6698870Z * [new branch] fengyuan/out-of-tree-xpu-ops-improve-test -> origin/fengyuan/out-of-tree-xpu-ops-improve-test 2025-01-24T02:40:36.6700440Z * [new branch] fengyuan/out-of-tree-xpu-ops-remove-dtype -> origin/fengyuan/out-of-tree-xpu-ops-remove-dtype 2025-01-24T02:40:36.6702480Z * [new branch] fengyuan/test-xpu -> origin/fengyuan/test-xpu 2025-01-24T02:40:36.6704830Z * [new branch] ffast_math_baseline -> origin/ffast_math_baseline 2025-01-24T02:40:36.6706840Z * [new branch] ffast_math_target -> origin/ffast_math_target 2025-01-24T02:40:36.6709710Z * [new branch] findhao/base_commit -> origin/findhao/base_commit 2025-01-24T02:40:36.6711350Z * [new branch] findhao/base_commit1 -> origin/findhao/base_commit1 2025-01-24T02:40:36.6713260Z * [new branch] findhao/base_commit_test1 -> origin/findhao/base_commit_test1 2025-01-24T02:40:36.6715020Z * [new branch] findhao/multistream2 -> origin/findhao/multistream2 2025-01-24T02:40:36.6716800Z * [new branch] findhao/multistream5 -> origin/findhao/multistream5 2025-01-24T02:40:36.6718920Z * [new branch] findhao/operatorbench3 -> origin/findhao/operatorbench3 2025-01-24T02:40:36.6720480Z * [new branch] findhao/operatorbench5 -> origin/findhao/operatorbench5 2025-01-24T02:40:36.6722500Z * [new branch] findhao/test1 -> origin/findhao/test1 2025-01-24T02:40:36.6724500Z * [new branch] findhao/test2 -> origin/findhao/test2 2025-01-24T02:40:36.6726020Z * [new branch] fix -> origin/fix 2025-01-24T02:40:36.6728140Z * [new branch] fix-cat-lowering-uint8-hack -> origin/fix-cat-lowering-uint8-hack 2025-01-24T02:40:36.6729920Z * [new branch] fix-config-ignore -> origin/fix-config-ignore 2025-01-24T02:40:36.6731510Z * [new branch] fix-dict-guard -> origin/fix-dict-guard 2025-01-24T02:40:36.6733850Z * [new branch] fix-ios-upload-credentials -> origin/fix-ios-upload-credentials 2025-01-24T02:40:36.6735800Z * [new branch] fix-qat-derived-qspec -> origin/fix-qat-derived-qspec 2025-01-24T02:40:36.6737430Z * [new branch] fix_allow_train_eval_msg -> origin/fix_allow_train_eval_msg 2025-01-24T02:40:36.6739570Z * [new branch] fix_avoid_record_stream -> origin/fix_avoid_record_stream 2025-01-24T02:40:36.6741340Z * [new branch] fix_e2e_fsdp_tp_pairwise -> origin/fix_e2e_fsdp_tp_pairwise 2025-01-24T02:40:36.6743200Z * [new branch] fix_eval_train_2.1 -> origin/fix_eval_train_2.1 2025-01-24T02:40:36.6745360Z * [new branch] fixes-triage -> origin/fixes-triage 2025-01-24T02:40:36.6747270Z * [new branch] flash_attn_test_baseline -> origin/flash_attn_test_baseline 2025-01-24T02:40:36.6749190Z * [new branch] flash_attn_test_target -> origin/flash_attn_test_target 2025-01-24T02:40:36.6751100Z * [new branch] flash_attn_test_target_with_filter -> origin/flash_attn_test_target_with_filter 2025-01-24T02:40:36.6753080Z * [new branch] float8_aot_traceable -> origin/float8_aot_traceable 2025-01-24T02:40:36.6754870Z * [new branch] float8_aot_traceable2 -> origin/float8_aot_traceable2 2025-01-24T02:40:36.6757520Z * [new branch] fmassa/partitioner_knapsack_checkpoint -> origin/fmassa/partitioner_knapsack_checkpoint 2025-01-24T02:40:36.6759360Z * [new branch] fp8_fix -> origin/fp8_fix 2025-01-24T02:40:36.6761280Z * [new branch] fsdp2_trace_rules -> origin/fsdp2_trace_rules 2025-01-24T02:40:36.6763060Z * [new branch] fsdp_rate_limiter -> origin/fsdp_rate_limiter 2025-01-24T02:40:36.6764920Z * [new branch] fsdpv2_3d -> origin/fsdpv2_3d 2025-01-24T02:40:36.6766870Z * [new branch] fsdpv2_3d_m1 -> origin/fsdpv2_3d_m1 2025-01-24T02:40:36.6768340Z * [new branch] functorch_scan -> origin/functorch_scan 2025-01-24T02:40:36.6770560Z * [new branch] fuse_attention_pattern -> origin/fuse_attention_pattern 2025-01-24T02:40:36.6772490Z * [new branch] fuse_attention_patterns -> origin/fuse_attention_patterns 2025-01-24T02:40:36.6774070Z * [new branch] fx_cpp -> origin/fx_cpp 2025-01-24T02:40:36.6776280Z * [new branch] fxmodule -> origin/fxmodule 2025-01-24T02:40:36.6778730Z * [new branch] fy/fix-win -> origin/fy/fix-win 2025-01-24T02:40:36.6780560Z * [new branch] gelu-3 -> origin/gelu-3 2025-01-24T02:40:36.6782400Z * [new branch] get_state_dict_forward_fix -> origin/get_state_dict_forward_fix 2025-01-24T02:40:36.6786000Z * [new branch] gh/AlnisM/1/base -> origin/gh/AlnisM/1/base 2025-01-24T02:40:36.6787750Z * [new branch] gh/AlnisM/1/head -> origin/gh/AlnisM/1/head 2025-01-24T02:40:36.6791000Z * [new branch] gh/BowenBao/296/base -> origin/gh/BowenBao/296/base 2025-01-24T02:40:36.6792590Z * [new branch] gh/BowenBao/296/head -> origin/gh/BowenBao/296/head 2025-01-24T02:40:36.6794390Z * [new branch] gh/BowenBao/296/orig -> origin/gh/BowenBao/296/orig 2025-01-24T02:40:36.6797560Z * [new branch] gh/CaoE/46/base -> origin/gh/CaoE/46/base 2025-01-24T02:40:36.6799310Z * [new branch] gh/CaoE/46/head -> origin/gh/CaoE/46/head 2025-01-24T02:40:36.6801210Z * [new branch] gh/CaoE/46/orig -> origin/gh/CaoE/46/orig 2025-01-24T02:40:36.6804740Z * [new branch] gh/ColinPeppler/54/base -> origin/gh/ColinPeppler/54/base 2025-01-24T02:40:36.6806680Z * [new branch] gh/ColinPeppler/54/head -> origin/gh/ColinPeppler/54/head 2025-01-24T02:40:36.6808490Z * [new branch] gh/ColinPeppler/54/orig -> origin/gh/ColinPeppler/54/orig 2025-01-24T02:40:36.6810930Z * [new branch] gh/ColinPeppler/55/base -> origin/gh/ColinPeppler/55/base 2025-01-24T02:40:36.6813070Z * [new branch] gh/ColinPeppler/55/head -> origin/gh/ColinPeppler/55/head 2025-01-24T02:40:36.6814930Z * [new branch] gh/ColinPeppler/55/orig -> origin/gh/ColinPeppler/55/orig 2025-01-24T02:40:36.6817360Z * [new branch] gh/ColinPeppler/56/base -> origin/gh/ColinPeppler/56/base 2025-01-24T02:40:36.6819290Z * [new branch] gh/ColinPeppler/56/head -> origin/gh/ColinPeppler/56/head 2025-01-24T02:40:36.6821260Z * [new branch] gh/ColinPeppler/56/orig -> origin/gh/ColinPeppler/56/orig 2025-01-24T02:40:36.6823510Z * [new branch] gh/ColinPeppler/57/base -> origin/gh/ColinPeppler/57/base 2025-01-24T02:40:36.6825370Z * [new branch] gh/ColinPeppler/57/head -> origin/gh/ColinPeppler/57/head 2025-01-24T02:40:36.6827310Z * [new branch] gh/ColinPeppler/57/orig -> origin/gh/ColinPeppler/57/orig 2025-01-24T02:40:36.6829670Z * [new branch] gh/ColinPeppler/58/base -> origin/gh/ColinPeppler/58/base 2025-01-24T02:40:36.6831560Z * [new branch] gh/ColinPeppler/58/head -> origin/gh/ColinPeppler/58/head 2025-01-24T02:40:36.6835870Z * [new branch] gh/ColinPeppler/58/orig -> origin/gh/ColinPeppler/58/orig 2025-01-24T02:40:36.6836490Z * [new branch] gh/EikanWang/67/base -> origin/gh/EikanWang/67/base 2025-01-24T02:40:36.6838310Z * [new branch] gh/EikanWang/67/head -> origin/gh/EikanWang/67/head 2025-01-24T02:40:36.6840910Z * [new branch] gh/EikanWang/73/base -> origin/gh/EikanWang/73/base 2025-01-24T02:40:36.6842760Z * [new branch] gh/EikanWang/73/head -> origin/gh/EikanWang/73/head 2025-01-24T02:40:36.6844500Z * [new branch] gh/EikanWang/73/orig -> origin/gh/EikanWang/73/orig 2025-01-24T02:40:36.6847570Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-01-24T02:40:36.6849320Z * [new branch] gh/Gasoonjia/1/head -> origin/gh/Gasoonjia/1/head 2025-01-24T02:40:36.6852430Z * [new branch] gh/H-Huang/131/base -> origin/gh/H-Huang/131/base 2025-01-24T02:40:36.6854840Z * [new branch] gh/H-Huang/131/head -> origin/gh/H-Huang/131/head 2025-01-24T02:40:36.6856450Z * [new branch] gh/H-Huang/131/orig -> origin/gh/H-Huang/131/orig 2025-01-24T02:40:36.6858970Z * [new branch] gh/H-Huang/132/base -> origin/gh/H-Huang/132/base 2025-01-24T02:40:36.6860870Z * [new branch] gh/H-Huang/132/head -> origin/gh/H-Huang/132/head 2025-01-24T02:40:36.6862450Z * [new branch] gh/H-Huang/132/orig -> origin/gh/H-Huang/132/orig 2025-01-24T02:40:36.6865150Z * [new branch] gh/H-Huang/160/base -> origin/gh/H-Huang/160/base 2025-01-24T02:40:36.6867070Z * [new branch] gh/H-Huang/160/head -> origin/gh/H-Huang/160/head 2025-01-24T02:40:36.6868650Z * [new branch] gh/H-Huang/160/orig -> origin/gh/H-Huang/160/orig 2025-01-24T02:40:36.6871170Z * [new branch] gh/H-Huang/161/base -> origin/gh/H-Huang/161/base 2025-01-24T02:40:36.6873270Z * [new branch] gh/H-Huang/161/head -> origin/gh/H-Huang/161/head 2025-01-24T02:40:36.6874800Z * [new branch] gh/H-Huang/161/orig -> origin/gh/H-Huang/161/orig 2025-01-24T02:40:36.6877580Z * [new branch] gh/H-Huang/162/base -> origin/gh/H-Huang/162/base 2025-01-24T02:40:36.6879490Z * [new branch] gh/H-Huang/162/head -> origin/gh/H-Huang/162/head 2025-01-24T02:40:36.6881300Z * [new branch] gh/H-Huang/162/orig -> origin/gh/H-Huang/162/orig 2025-01-24T02:40:36.6883680Z * [new branch] gh/H-Huang/163/base -> origin/gh/H-Huang/163/base 2025-01-24T02:40:36.6885550Z * [new branch] gh/H-Huang/163/head -> origin/gh/H-Huang/163/head 2025-01-24T02:40:36.6887370Z * [new branch] gh/H-Huang/163/orig -> origin/gh/H-Huang/163/orig 2025-01-24T02:40:36.6890210Z * [new branch] gh/H-Huang/164/base -> origin/gh/H-Huang/164/base 2025-01-24T02:40:36.6891870Z * [new branch] gh/H-Huang/164/head -> origin/gh/H-Huang/164/head 2025-01-24T02:40:36.6894050Z * [new branch] gh/H-Huang/164/orig -> origin/gh/H-Huang/164/orig 2025-01-24T02:40:36.6897180Z * [new branch] gh/HDCharles/168/base -> origin/gh/HDCharles/168/base 2025-01-24T02:40:36.6899010Z * [new branch] gh/HDCharles/168/head -> origin/gh/HDCharles/168/head 2025-01-24T02:40:36.6900720Z * [new branch] gh/HDCharles/168/orig -> origin/gh/HDCharles/168/orig 2025-01-24T02:40:36.6904010Z * [new branch] gh/IvanKobzarev/56/base -> origin/gh/IvanKobzarev/56/base 2025-01-24T02:40:36.6905620Z * [new branch] gh/IvanKobzarev/56/head -> origin/gh/IvanKobzarev/56/head 2025-01-24T02:40:36.6907530Z * [new branch] gh/IvanKobzarev/56/orig -> origin/gh/IvanKobzarev/56/orig 2025-01-24T02:40:36.6910370Z * [new branch] gh/IvanKobzarev/64/base -> origin/gh/IvanKobzarev/64/base 2025-01-24T02:40:36.6911740Z * [new branch] gh/IvanKobzarev/64/head -> origin/gh/IvanKobzarev/64/head 2025-01-24T02:40:36.6913920Z * [new branch] gh/IvanKobzarev/64/orig -> origin/gh/IvanKobzarev/64/orig 2025-01-24T02:40:36.6916220Z * [new branch] gh/IvanKobzarev/72/base -> origin/gh/IvanKobzarev/72/base 2025-01-24T02:40:36.6918310Z * [new branch] gh/IvanKobzarev/72/head -> origin/gh/IvanKobzarev/72/head 2025-01-24T02:40:36.6920130Z * [new branch] gh/IvanKobzarev/72/orig -> origin/gh/IvanKobzarev/72/orig 2025-01-24T02:40:36.6923000Z * [new branch] gh/IvanKobzarev/73/base -> origin/gh/IvanKobzarev/73/base 2025-01-24T02:40:36.6924780Z * [new branch] gh/IvanKobzarev/73/head -> origin/gh/IvanKobzarev/73/head 2025-01-24T02:40:36.6926590Z * [new branch] gh/IvanKobzarev/73/orig -> origin/gh/IvanKobzarev/73/orig 2025-01-24T02:40:36.6929700Z * [new branch] gh/IvanKobzarev/75/base -> origin/gh/IvanKobzarev/75/base 2025-01-24T02:40:36.6930920Z * [new branch] gh/IvanKobzarev/75/head -> origin/gh/IvanKobzarev/75/head 2025-01-24T02:40:36.6932900Z * [new branch] gh/IvanKobzarev/75/orig -> origin/gh/IvanKobzarev/75/orig 2025-01-24T02:40:36.6935680Z * [new branch] gh/IvanKobzarev/76/base -> origin/gh/IvanKobzarev/76/base 2025-01-24T02:40:36.6937750Z * [new branch] gh/IvanKobzarev/76/head -> origin/gh/IvanKobzarev/76/head 2025-01-24T02:40:36.6939870Z * [new branch] gh/IvanKobzarev/76/orig -> origin/gh/IvanKobzarev/76/orig 2025-01-24T02:40:36.6942490Z * [new branch] gh/IvanKobzarev/78/base -> origin/gh/IvanKobzarev/78/base 2025-01-24T02:40:36.6944220Z * [new branch] gh/IvanKobzarev/78/head -> origin/gh/IvanKobzarev/78/head 2025-01-24T02:40:36.6946050Z * [new branch] gh/IvanKobzarev/78/orig -> origin/gh/IvanKobzarev/78/orig 2025-01-24T02:40:36.6948620Z * [new branch] gh/IvanKobzarev/82/base -> origin/gh/IvanKobzarev/82/base 2025-01-24T02:40:36.6950610Z * [new branch] gh/IvanKobzarev/82/head -> origin/gh/IvanKobzarev/82/head 2025-01-24T02:40:36.6952280Z * [new branch] gh/IvanKobzarev/82/orig -> origin/gh/IvanKobzarev/82/orig 2025-01-24T02:40:36.6954770Z * [new branch] gh/IvanKobzarev/84/base -> origin/gh/IvanKobzarev/84/base 2025-01-24T02:40:36.6956720Z * [new branch] gh/IvanKobzarev/84/head -> origin/gh/IvanKobzarev/84/head 2025-01-24T02:40:36.6958610Z * [new branch] gh/IvanKobzarev/84/orig -> origin/gh/IvanKobzarev/84/orig 2025-01-24T02:40:36.6961180Z * [new branch] gh/IvanKobzarev/86/base -> origin/gh/IvanKobzarev/86/base 2025-01-24T02:40:36.6963080Z * [new branch] gh/IvanKobzarev/86/head -> origin/gh/IvanKobzarev/86/head 2025-01-24T02:40:36.6964760Z * [new branch] gh/IvanKobzarev/86/orig -> origin/gh/IvanKobzarev/86/orig 2025-01-24T02:40:36.6967190Z * [new branch] gh/IvanKobzarev/91/base -> origin/gh/IvanKobzarev/91/base 2025-01-24T02:40:36.6969190Z * [new branch] gh/IvanKobzarev/91/head -> origin/gh/IvanKobzarev/91/head 2025-01-24T02:40:36.6971450Z * [new branch] gh/IvanKobzarev/91/orig -> origin/gh/IvanKobzarev/91/orig 2025-01-24T02:40:36.6973950Z * [new branch] gh/IvanKobzarev/92/base -> origin/gh/IvanKobzarev/92/base 2025-01-24T02:40:36.6975990Z * [new branch] gh/IvanKobzarev/92/head -> origin/gh/IvanKobzarev/92/head 2025-01-24T02:40:36.6977860Z * [new branch] gh/IvanKobzarev/92/orig -> origin/gh/IvanKobzarev/92/orig 2025-01-24T02:40:36.6980210Z * [new branch] gh/IvanKobzarev/93/base -> origin/gh/IvanKobzarev/93/base 2025-01-24T02:40:36.6982040Z * [new branch] gh/IvanKobzarev/93/head -> origin/gh/IvanKobzarev/93/head 2025-01-24T02:40:36.6983790Z * [new branch] gh/IvanKobzarev/93/orig -> origin/gh/IvanKobzarev/93/orig 2025-01-24T02:40:36.6986450Z * [new branch] gh/IvanKobzarev/94/base -> origin/gh/IvanKobzarev/94/base 2025-01-24T02:40:36.6988220Z * [new branch] gh/IvanKobzarev/94/head -> origin/gh/IvanKobzarev/94/head 2025-01-24T02:40:36.6989850Z * [new branch] gh/IvanKobzarev/94/orig -> origin/gh/IvanKobzarev/94/orig 2025-01-24T02:40:36.6994610Z * [new branch] gh/IvanKobzarev/95/base -> origin/gh/IvanKobzarev/95/base 2025-01-24T02:40:36.6995200Z * [new branch] gh/IvanKobzarev/95/head -> origin/gh/IvanKobzarev/95/head 2025-01-24T02:40:36.6997120Z * [new branch] gh/IvanKobzarev/95/orig -> origin/gh/IvanKobzarev/95/orig 2025-01-24T02:40:36.6999870Z * [new branch] gh/IvanKobzarev/96/base -> origin/gh/IvanKobzarev/96/base 2025-01-24T02:40:36.7001920Z * [new branch] gh/IvanKobzarev/96/head -> origin/gh/IvanKobzarev/96/head 2025-01-24T02:40:36.7003710Z * [new branch] gh/IvanKobzarev/96/orig -> origin/gh/IvanKobzarev/96/orig 2025-01-24T02:40:36.7006240Z * [new branch] gh/IvanKobzarev/97/base -> origin/gh/IvanKobzarev/97/base 2025-01-24T02:40:36.7007970Z * [new branch] gh/IvanKobzarev/97/head -> origin/gh/IvanKobzarev/97/head 2025-01-24T02:40:36.7009750Z * [new branch] gh/IvanKobzarev/97/orig -> origin/gh/IvanKobzarev/97/orig 2025-01-24T02:40:36.7013170Z * [new branch] gh/Lezcano/243/base -> origin/gh/Lezcano/243/base 2025-01-24T02:40:36.7014780Z * [new branch] gh/Lezcano/243/head -> origin/gh/Lezcano/243/head 2025-01-24T02:40:36.7016920Z * [new branch] gh/Lezcano/243/orig -> origin/gh/Lezcano/243/orig 2025-01-24T02:40:36.7019970Z * [new branch] gh/SS-JIA/164/base -> origin/gh/SS-JIA/164/base 2025-01-24T02:40:36.7021560Z * [new branch] gh/SS-JIA/164/head -> origin/gh/SS-JIA/164/head 2025-01-24T02:40:36.7024420Z * [new branch] gh/SS-JIA/172/base -> origin/gh/SS-JIA/172/base 2025-01-24T02:40:36.7026290Z * [new branch] gh/SS-JIA/172/head -> origin/gh/SS-JIA/172/head 2025-01-24T02:40:36.7028060Z * [new branch] gh/SS-JIA/172/orig -> origin/gh/SS-JIA/172/orig 2025-01-24T02:40:36.7035050Z * [new branch] gh/SamGinzburg/11/base -> origin/gh/SamGinzburg/11/base 2025-01-24T02:40:36.7035630Z * [new branch] gh/SamGinzburg/11/head -> origin/gh/SamGinzburg/11/head 2025-01-24T02:40:36.7036190Z * [new branch] gh/SamGinzburg/14/base -> origin/gh/SamGinzburg/14/base 2025-01-24T02:40:36.7037940Z * [new branch] gh/SamGinzburg/14/head -> origin/gh/SamGinzburg/14/head 2025-01-24T02:40:36.7039790Z * [new branch] gh/SamGinzburg/14/orig -> origin/gh/SamGinzburg/14/orig 2025-01-24T02:40:36.7042410Z * [new branch] gh/SamGinzburg/17/base -> origin/gh/SamGinzburg/17/base 2025-01-24T02:40:36.7044210Z * [new branch] gh/SamGinzburg/17/head -> origin/gh/SamGinzburg/17/head 2025-01-24T02:40:36.7046060Z * [new branch] gh/SamGinzburg/17/orig -> origin/gh/SamGinzburg/17/orig 2025-01-24T02:40:36.7048810Z * [new branch] gh/SamGinzburg/18/base -> origin/gh/SamGinzburg/18/base 2025-01-24T02:40:36.7050710Z * [new branch] gh/SamGinzburg/18/head -> origin/gh/SamGinzburg/18/head 2025-01-24T02:40:36.7052340Z * [new branch] gh/SamGinzburg/18/orig -> origin/gh/SamGinzburg/18/orig 2025-01-24T02:40:36.7055460Z * [new branch] gh/StrongerXi/1/base -> origin/gh/StrongerXi/1/base 2025-01-24T02:40:36.7057210Z * [new branch] gh/StrongerXi/1/head -> origin/gh/StrongerXi/1/head 2025-01-24T02:40:36.7059920Z * [new branch] gh/StrongerXi/12/base -> origin/gh/StrongerXi/12/base 2025-01-24T02:40:36.7061680Z * [new branch] gh/StrongerXi/12/head -> origin/gh/StrongerXi/12/head 2025-01-24T02:40:36.7063370Z * [new branch] gh/StrongerXi/12/orig -> origin/gh/StrongerXi/12/orig 2025-01-24T02:40:36.7065970Z * [new branch] gh/StrongerXi/63/base -> origin/gh/StrongerXi/63/base 2025-01-24T02:40:36.7067890Z * [new branch] gh/StrongerXi/63/head -> origin/gh/StrongerXi/63/head 2025-01-24T02:40:36.7069960Z * [new branch] gh/StrongerXi/63/orig -> origin/gh/StrongerXi/63/orig 2025-01-24T02:40:36.7072180Z * [new branch] gh/StrongerXi/65/base -> origin/gh/StrongerXi/65/base 2025-01-24T02:40:36.7073810Z * [new branch] gh/StrongerXi/65/head -> origin/gh/StrongerXi/65/head 2025-01-24T02:40:36.7075960Z * [new branch] gh/StrongerXi/65/orig -> origin/gh/StrongerXi/65/orig 2025-01-24T02:40:36.7078400Z * [new branch] gh/StrongerXi/66/base -> origin/gh/StrongerXi/66/base 2025-01-24T02:40:36.7080250Z * [new branch] gh/StrongerXi/66/head -> origin/gh/StrongerXi/66/head 2025-01-24T02:40:36.7082060Z * [new branch] gh/StrongerXi/66/orig -> origin/gh/StrongerXi/66/orig 2025-01-24T02:40:36.7084570Z * [new branch] gh/StrongerXi/67/base -> origin/gh/StrongerXi/67/base 2025-01-24T02:40:36.7090900Z * [new branch] gh/StrongerXi/67/head -> origin/gh/StrongerXi/67/head 2025-01-24T02:40:36.7092780Z * [new branch] gh/StrongerXi/67/orig -> origin/gh/StrongerXi/67/orig 2025-01-24T02:40:36.7095280Z * [new branch] gh/StrongerXi/68/base -> origin/gh/StrongerXi/68/base 2025-01-24T02:40:36.7097020Z * [new branch] gh/StrongerXi/68/head -> origin/gh/StrongerXi/68/head 2025-01-24T02:40:36.7098720Z * [new branch] gh/StrongerXi/68/orig -> origin/gh/StrongerXi/68/orig 2025-01-24T02:40:36.7101570Z * [new branch] gh/StrongerXi/69/base -> origin/gh/StrongerXi/69/base 2025-01-24T02:40:36.7103180Z * [new branch] gh/StrongerXi/69/head -> origin/gh/StrongerXi/69/head 2025-01-24T02:40:36.7104870Z * [new branch] gh/StrongerXi/69/orig -> origin/gh/StrongerXi/69/orig 2025-01-24T02:40:36.7107950Z * [new branch] gh/StrongerXi/70/base -> origin/gh/StrongerXi/70/base 2025-01-24T02:40:36.7110070Z * [new branch] gh/StrongerXi/70/head -> origin/gh/StrongerXi/70/head 2025-01-24T02:40:36.7111590Z * [new branch] gh/StrongerXi/70/orig -> origin/gh/StrongerXi/70/orig 2025-01-24T02:40:36.7114450Z * [new branch] gh/StrongerXi/71/base -> origin/gh/StrongerXi/71/base 2025-01-24T02:40:36.7116290Z * [new branch] gh/StrongerXi/71/head -> origin/gh/StrongerXi/71/head 2025-01-24T02:40:36.7118820Z * [new branch] gh/StrongerXi/72/base -> origin/gh/StrongerXi/72/base 2025-01-24T02:40:36.7120550Z * [new branch] gh/StrongerXi/72/head -> origin/gh/StrongerXi/72/head 2025-01-24T02:40:36.7122960Z * [new branch] gh/StrongerXi/73/base -> origin/gh/StrongerXi/73/base 2025-01-24T02:40:36.7124620Z * [new branch] gh/StrongerXi/73/head -> origin/gh/StrongerXi/73/head 2025-01-24T02:40:36.7126880Z * [new branch] gh/StrongerXi/73/orig -> origin/gh/StrongerXi/73/orig 2025-01-24T02:40:36.7129270Z * [new branch] gh/StrongerXi/74/base -> origin/gh/StrongerXi/74/base 2025-01-24T02:40:36.7131170Z * [new branch] gh/StrongerXi/74/head -> origin/gh/StrongerXi/74/head 2025-01-24T02:40:36.7133000Z * [new branch] gh/StrongerXi/74/orig -> origin/gh/StrongerXi/74/orig 2025-01-24T02:40:36.7135950Z * [new branch] gh/StrongerXi/75/base -> origin/gh/StrongerXi/75/base 2025-01-24T02:40:36.7137910Z * [new branch] gh/StrongerXi/75/head -> origin/gh/StrongerXi/75/head 2025-01-24T02:40:36.7139780Z * [new branch] gh/StrongerXi/75/orig -> origin/gh/StrongerXi/75/orig 2025-01-24T02:40:36.7142210Z * [new branch] gh/StrongerXi/76/base -> origin/gh/StrongerXi/76/base 2025-01-24T02:40:36.7144290Z * [new branch] gh/StrongerXi/76/head -> origin/gh/StrongerXi/76/head 2025-01-24T02:40:36.7146030Z * [new branch] gh/StrongerXi/76/orig -> origin/gh/StrongerXi/76/orig 2025-01-24T02:40:36.7148980Z * [new branch] gh/Valentine233/1/base -> origin/gh/Valentine233/1/base 2025-01-24T02:40:36.7150910Z * [new branch] gh/Valentine233/1/head -> origin/gh/Valentine233/1/head 2025-01-24T02:40:36.7152520Z * [new branch] gh/Valentine233/1/orig -> origin/gh/Valentine233/1/orig 2025-01-24T02:40:36.7155530Z * [new branch] gh/Xia-Weiwen/15/base -> origin/gh/Xia-Weiwen/15/base 2025-01-24T02:40:36.7157310Z * [new branch] gh/Xia-Weiwen/15/orig -> origin/gh/Xia-Weiwen/15/orig 2025-01-24T02:40:36.7160080Z * [new branch] gh/Xia-Weiwen/17/base -> origin/gh/Xia-Weiwen/17/base 2025-01-24T02:40:36.7161810Z * [new branch] gh/Xia-Weiwen/17/orig -> origin/gh/Xia-Weiwen/17/orig 2025-01-24T02:40:36.7164280Z * [new branch] gh/Xia-Weiwen/24/base -> origin/gh/Xia-Weiwen/24/base 2025-01-24T02:40:36.7166110Z * [new branch] gh/Xia-Weiwen/24/head -> origin/gh/Xia-Weiwen/24/head 2025-01-24T02:40:36.7167900Z * [new branch] gh/Xia-Weiwen/24/orig -> origin/gh/Xia-Weiwen/24/orig 2025-01-24T02:40:36.7170330Z * [new branch] gh/Xia-Weiwen/25/base -> origin/gh/Xia-Weiwen/25/base 2025-01-24T02:40:36.7172200Z * [new branch] gh/Xia-Weiwen/25/head -> origin/gh/Xia-Weiwen/25/head 2025-01-24T02:40:36.7174120Z * [new branch] gh/Xia-Weiwen/25/orig -> origin/gh/Xia-Weiwen/25/orig 2025-01-24T02:40:36.7176540Z * [new branch] gh/Xia-Weiwen/26/base -> origin/gh/Xia-Weiwen/26/base 2025-01-24T02:40:36.7178340Z * [new branch] gh/Xia-Weiwen/26/head -> origin/gh/Xia-Weiwen/26/head 2025-01-24T02:40:36.7180410Z * [new branch] gh/Xia-Weiwen/26/orig -> origin/gh/Xia-Weiwen/26/orig 2025-01-24T02:40:36.7182820Z * [new branch] gh/Xia-Weiwen/27/base -> origin/gh/Xia-Weiwen/27/base 2025-01-24T02:40:36.7184510Z * [new branch] gh/Xia-Weiwen/27/head -> origin/gh/Xia-Weiwen/27/head 2025-01-24T02:40:36.7186110Z * [new branch] gh/Xia-Weiwen/27/orig -> origin/gh/Xia-Weiwen/27/orig 2025-01-24T02:40:36.7188650Z * [new branch] gh/Xia-Weiwen/28/base -> origin/gh/Xia-Weiwen/28/base 2025-01-24T02:40:36.7190940Z * [new branch] gh/Xia-Weiwen/28/head -> origin/gh/Xia-Weiwen/28/head 2025-01-24T02:40:36.7192650Z * [new branch] gh/Xia-Weiwen/28/orig -> origin/gh/Xia-Weiwen/28/orig 2025-01-24T02:40:36.7195100Z * [new branch] gh/Xia-Weiwen/29/base -> origin/gh/Xia-Weiwen/29/base 2025-01-24T02:40:36.7196930Z * [new branch] gh/Xia-Weiwen/29/head -> origin/gh/Xia-Weiwen/29/head 2025-01-24T02:40:36.7198670Z * [new branch] gh/Xia-Weiwen/29/orig -> origin/gh/Xia-Weiwen/29/orig 2025-01-24T02:40:36.7201690Z * [new branch] gh/XilunWu/109/base -> origin/gh/XilunWu/109/base 2025-01-24T02:40:36.7203550Z * [new branch] gh/XilunWu/109/head -> origin/gh/XilunWu/109/head 2025-01-24T02:40:36.7205330Z * [new branch] gh/XilunWu/109/orig -> origin/gh/XilunWu/109/orig 2025-01-24T02:40:36.7207780Z * [new branch] gh/XilunWu/110/base -> origin/gh/XilunWu/110/base 2025-01-24T02:40:36.7209840Z * [new branch] gh/XilunWu/110/head -> origin/gh/XilunWu/110/head 2025-01-24T02:40:36.7211650Z * [new branch] gh/XilunWu/110/orig -> origin/gh/XilunWu/110/orig 2025-01-24T02:40:36.7214280Z * [new branch] gh/XilunWu/111/base -> origin/gh/XilunWu/111/base 2025-01-24T02:40:36.7216180Z * [new branch] gh/XilunWu/111/head -> origin/gh/XilunWu/111/head 2025-01-24T02:40:36.7217900Z * [new branch] gh/XilunWu/111/orig -> origin/gh/XilunWu/111/orig 2025-01-24T02:40:36.7220550Z * [new branch] gh/XilunWu/43/base -> origin/gh/XilunWu/43/base 2025-01-24T02:40:36.7222220Z * [new branch] gh/XilunWu/43/orig -> origin/gh/XilunWu/43/orig 2025-01-24T02:40:36.7224780Z * [new branch] gh/XilunWu/44/base -> origin/gh/XilunWu/44/base 2025-01-24T02:40:36.7226820Z * [new branch] gh/XilunWu/44/orig -> origin/gh/XilunWu/44/orig 2025-01-24T02:40:36.7233150Z * [new branch] gh/XilunWu/45/base -> origin/gh/XilunWu/45/base 2025-01-24T02:40:36.7233720Z * [new branch] gh/XilunWu/45/orig -> origin/gh/XilunWu/45/orig 2025-01-24T02:40:36.7234240Z * [new branch] gh/XilunWu/46/base -> origin/gh/XilunWu/46/base 2025-01-24T02:40:36.7235000Z * [new branch] gh/XilunWu/46/orig -> origin/gh/XilunWu/46/orig 2025-01-24T02:40:36.7238580Z * [new branch] gh/XuehaiPan/1/base -> origin/gh/XuehaiPan/1/base 2025-01-24T02:40:36.7240520Z * [new branch] gh/XuehaiPan/1/head -> origin/gh/XuehaiPan/1/head 2025-01-24T02:40:36.7242590Z * [new branch] gh/XuehaiPan/1/orig -> origin/gh/XuehaiPan/1/orig 2025-01-24T02:40:36.7245260Z * [new branch] gh/XuehaiPan/104/base -> origin/gh/XuehaiPan/104/base 2025-01-24T02:40:36.7247150Z * [new branch] gh/XuehaiPan/104/head -> origin/gh/XuehaiPan/104/head 2025-01-24T02:40:36.7249130Z * [new branch] gh/XuehaiPan/104/orig -> origin/gh/XuehaiPan/104/orig 2025-01-24T02:40:36.7251490Z * [new branch] gh/XuehaiPan/105/base -> origin/gh/XuehaiPan/105/base 2025-01-24T02:40:36.7253560Z * [new branch] gh/XuehaiPan/105/head -> origin/gh/XuehaiPan/105/head 2025-01-24T02:40:36.7255200Z * [new branch] gh/XuehaiPan/105/orig -> origin/gh/XuehaiPan/105/orig 2025-01-24T02:40:36.7257720Z * [new branch] gh/XuehaiPan/108/base -> origin/gh/XuehaiPan/108/base 2025-01-24T02:40:36.7259620Z * [new branch] gh/XuehaiPan/108/head -> origin/gh/XuehaiPan/108/head 2025-01-24T02:40:36.7261320Z * [new branch] gh/XuehaiPan/108/orig -> origin/gh/XuehaiPan/108/orig 2025-01-24T02:40:36.7264020Z * [new branch] gh/XuehaiPan/109/base -> origin/gh/XuehaiPan/109/base 2025-01-24T02:40:36.7265980Z * [new branch] gh/XuehaiPan/109/head -> origin/gh/XuehaiPan/109/head 2025-01-24T02:40:36.7267810Z * [new branch] gh/XuehaiPan/109/orig -> origin/gh/XuehaiPan/109/orig 2025-01-24T02:40:36.7270220Z * [new branch] gh/XuehaiPan/13/base -> origin/gh/XuehaiPan/13/base 2025-01-24T02:40:36.7272070Z * [new branch] gh/XuehaiPan/13/head -> origin/gh/XuehaiPan/13/head 2025-01-24T02:40:36.7274150Z * [new branch] gh/XuehaiPan/13/orig -> origin/gh/XuehaiPan/13/orig 2025-01-24T02:40:36.7276360Z * [new branch] gh/XuehaiPan/14/base -> origin/gh/XuehaiPan/14/base 2025-01-24T02:40:36.7278270Z * [new branch] gh/XuehaiPan/14/head -> origin/gh/XuehaiPan/14/head 2025-01-24T02:40:36.7280360Z * [new branch] gh/XuehaiPan/14/orig -> origin/gh/XuehaiPan/14/orig 2025-01-24T02:40:36.7282650Z * [new branch] gh/XuehaiPan/159/base -> origin/gh/XuehaiPan/159/base 2025-01-24T02:40:36.7284260Z * [new branch] gh/XuehaiPan/159/head -> origin/gh/XuehaiPan/159/head 2025-01-24T02:40:36.7286100Z * [new branch] gh/XuehaiPan/159/orig -> origin/gh/XuehaiPan/159/orig 2025-01-24T02:40:36.7288880Z * [new branch] gh/XuehaiPan/162/base -> origin/gh/XuehaiPan/162/base 2025-01-24T02:40:36.7290680Z * [new branch] gh/XuehaiPan/162/head -> origin/gh/XuehaiPan/162/head 2025-01-24T02:40:36.7292590Z * [new branch] gh/XuehaiPan/162/orig -> origin/gh/XuehaiPan/162/orig 2025-01-24T02:40:36.7295250Z * [new branch] gh/XuehaiPan/179/base -> origin/gh/XuehaiPan/179/base 2025-01-24T02:40:36.7296920Z * [new branch] gh/XuehaiPan/179/head -> origin/gh/XuehaiPan/179/head 2025-01-24T02:40:36.7298620Z * [new branch] gh/XuehaiPan/179/orig -> origin/gh/XuehaiPan/179/orig 2025-01-24T02:40:36.7301380Z * [new branch] gh/XuehaiPan/180/base -> origin/gh/XuehaiPan/180/base 2025-01-24T02:40:36.7303320Z * [new branch] gh/XuehaiPan/180/head -> origin/gh/XuehaiPan/180/head 2025-01-24T02:40:36.7305000Z * [new branch] gh/XuehaiPan/180/orig -> origin/gh/XuehaiPan/180/orig 2025-01-24T02:40:36.7307610Z * [new branch] gh/XuehaiPan/182/base -> origin/gh/XuehaiPan/182/base 2025-01-24T02:40:36.7309330Z * [new branch] gh/XuehaiPan/182/head -> origin/gh/XuehaiPan/182/head 2025-01-24T02:40:36.7311150Z * [new branch] gh/XuehaiPan/182/orig -> origin/gh/XuehaiPan/182/orig 2025-01-24T02:40:36.7313480Z * [new branch] gh/XuehaiPan/183/base -> origin/gh/XuehaiPan/183/base 2025-01-24T02:40:36.7315590Z * [new branch] gh/XuehaiPan/183/head -> origin/gh/XuehaiPan/183/head 2025-01-24T02:40:36.7317270Z * [new branch] gh/XuehaiPan/183/orig -> origin/gh/XuehaiPan/183/orig 2025-01-24T02:40:36.7319650Z * [new branch] gh/XuehaiPan/185/base -> origin/gh/XuehaiPan/185/base 2025-01-24T02:40:36.7321470Z * [new branch] gh/XuehaiPan/185/head -> origin/gh/XuehaiPan/185/head 2025-01-24T02:40:36.7323510Z * [new branch] gh/XuehaiPan/185/orig -> origin/gh/XuehaiPan/185/orig 2025-01-24T02:40:36.7325920Z * [new branch] gh/XuehaiPan/188/base -> origin/gh/XuehaiPan/188/base 2025-01-24T02:40:36.7327790Z * [new branch] gh/XuehaiPan/188/head -> origin/gh/XuehaiPan/188/head 2025-01-24T02:40:36.7329750Z * [new branch] gh/XuehaiPan/188/orig -> origin/gh/XuehaiPan/188/orig 2025-01-24T02:40:36.7332100Z * [new branch] gh/XuehaiPan/189/base -> origin/gh/XuehaiPan/189/base 2025-01-24T02:40:36.7334030Z * [new branch] gh/XuehaiPan/189/head -> origin/gh/XuehaiPan/189/head 2025-01-24T02:40:36.7336170Z * [new branch] gh/XuehaiPan/189/orig -> origin/gh/XuehaiPan/189/orig 2025-01-24T02:40:36.7338330Z * [new branch] gh/XuehaiPan/198/base -> origin/gh/XuehaiPan/198/base 2025-01-24T02:40:36.7340130Z * [new branch] gh/XuehaiPan/198/head -> origin/gh/XuehaiPan/198/head 2025-01-24T02:40:36.7342060Z * [new branch] gh/XuehaiPan/198/orig -> origin/gh/XuehaiPan/198/orig 2025-01-24T02:40:36.7344580Z * [new branch] gh/XuehaiPan/206/base -> origin/gh/XuehaiPan/206/base 2025-01-24T02:40:36.7346460Z * [new branch] gh/XuehaiPan/206/head -> origin/gh/XuehaiPan/206/head 2025-01-24T02:40:36.7348240Z * [new branch] gh/XuehaiPan/206/orig -> origin/gh/XuehaiPan/206/orig 2025-01-24T02:40:36.7350680Z * [new branch] gh/XuehaiPan/210/base -> origin/gh/XuehaiPan/210/base 2025-01-24T02:40:36.7352440Z * [new branch] gh/XuehaiPan/210/head -> origin/gh/XuehaiPan/210/head 2025-01-24T02:40:36.7354300Z * [new branch] gh/XuehaiPan/210/orig -> origin/gh/XuehaiPan/210/orig 2025-01-24T02:40:36.7356540Z * [new branch] gh/XuehaiPan/211/base -> origin/gh/XuehaiPan/211/base 2025-01-24T02:40:36.7358340Z * [new branch] gh/XuehaiPan/211/head -> origin/gh/XuehaiPan/211/head 2025-01-24T02:40:36.7360170Z * [new branch] gh/XuehaiPan/211/orig -> origin/gh/XuehaiPan/211/orig 2025-01-24T02:40:36.7362750Z * [new branch] gh/XuehaiPan/212/base -> origin/gh/XuehaiPan/212/base 2025-01-24T02:40:36.7364660Z * [new branch] gh/XuehaiPan/212/head -> origin/gh/XuehaiPan/212/head 2025-01-24T02:40:36.7366700Z * [new branch] gh/XuehaiPan/212/orig -> origin/gh/XuehaiPan/212/orig 2025-01-24T02:40:36.7369030Z * [new branch] gh/XuehaiPan/214/base -> origin/gh/XuehaiPan/214/base 2025-01-24T02:40:36.7371050Z * [new branch] gh/XuehaiPan/214/head -> origin/gh/XuehaiPan/214/head 2025-01-24T02:40:36.7372870Z * [new branch] gh/XuehaiPan/214/orig -> origin/gh/XuehaiPan/214/orig 2025-01-24T02:40:36.7375240Z * [new branch] gh/XuehaiPan/215/base -> origin/gh/XuehaiPan/215/base 2025-01-24T02:40:36.7377360Z * [new branch] gh/XuehaiPan/215/head -> origin/gh/XuehaiPan/215/head 2025-01-24T02:40:36.7379730Z * [new branch] gh/XuehaiPan/215/orig -> origin/gh/XuehaiPan/215/orig 2025-01-24T02:40:36.7382080Z * [new branch] gh/XuehaiPan/216/base -> origin/gh/XuehaiPan/216/base 2025-01-24T02:40:36.7384030Z * [new branch] gh/XuehaiPan/216/head -> origin/gh/XuehaiPan/216/head 2025-01-24T02:40:36.7385670Z * [new branch] gh/XuehaiPan/216/orig -> origin/gh/XuehaiPan/216/orig 2025-01-24T02:40:36.7388390Z * [new branch] gh/XuehaiPan/217/base -> origin/gh/XuehaiPan/217/base 2025-01-24T02:40:36.7390240Z * [new branch] gh/XuehaiPan/217/head -> origin/gh/XuehaiPan/217/head 2025-01-24T02:40:36.7391930Z * [new branch] gh/XuehaiPan/217/orig -> origin/gh/XuehaiPan/217/orig 2025-01-24T02:40:36.7394420Z * [new branch] gh/XuehaiPan/218/base -> origin/gh/XuehaiPan/218/base 2025-01-24T02:40:36.7396450Z * [new branch] gh/XuehaiPan/218/head -> origin/gh/XuehaiPan/218/head 2025-01-24T02:40:36.7398410Z * [new branch] gh/XuehaiPan/218/orig -> origin/gh/XuehaiPan/218/orig 2025-01-24T02:40:36.7400560Z * [new branch] gh/XuehaiPan/219/base -> origin/gh/XuehaiPan/219/base 2025-01-24T02:40:36.7402260Z * [new branch] gh/XuehaiPan/219/head -> origin/gh/XuehaiPan/219/head 2025-01-24T02:40:36.7404230Z * [new branch] gh/XuehaiPan/219/orig -> origin/gh/XuehaiPan/219/orig 2025-01-24T02:40:36.7406530Z * [new branch] gh/XuehaiPan/220/base -> origin/gh/XuehaiPan/220/base 2025-01-24T02:40:36.7408520Z * [new branch] gh/XuehaiPan/220/head -> origin/gh/XuehaiPan/220/head 2025-01-24T02:40:36.7410140Z * [new branch] gh/XuehaiPan/220/orig -> origin/gh/XuehaiPan/220/orig 2025-01-24T02:40:36.7412720Z * [new branch] gh/XuehaiPan/221/base -> origin/gh/XuehaiPan/221/base 2025-01-24T02:40:36.7414690Z * [new branch] gh/XuehaiPan/221/head -> origin/gh/XuehaiPan/221/head 2025-01-24T02:40:36.7416420Z * [new branch] gh/XuehaiPan/221/orig -> origin/gh/XuehaiPan/221/orig 2025-01-24T02:40:36.7419000Z * [new branch] gh/XuehaiPan/222/base -> origin/gh/XuehaiPan/222/base 2025-01-24T02:40:36.7424510Z * [new branch] gh/XuehaiPan/222/head -> origin/gh/XuehaiPan/222/head 2025-01-24T02:40:36.7425100Z * [new branch] gh/XuehaiPan/222/orig -> origin/gh/XuehaiPan/222/orig 2025-01-24T02:40:36.7425630Z * [new branch] gh/XuehaiPan/223/base -> origin/gh/XuehaiPan/223/base 2025-01-24T02:40:36.7427600Z * [new branch] gh/XuehaiPan/223/head -> origin/gh/XuehaiPan/223/head 2025-01-24T02:40:36.7429080Z * [new branch] gh/XuehaiPan/223/orig -> origin/gh/XuehaiPan/223/orig 2025-01-24T02:40:36.7431700Z * [new branch] gh/XuehaiPan/224/base -> origin/gh/XuehaiPan/224/base 2025-01-24T02:40:36.7433630Z * [new branch] gh/XuehaiPan/224/head -> origin/gh/XuehaiPan/224/head 2025-01-24T02:40:36.7435220Z * [new branch] gh/XuehaiPan/224/orig -> origin/gh/XuehaiPan/224/orig 2025-01-24T02:40:36.7437830Z * [new branch] gh/XuehaiPan/225/base -> origin/gh/XuehaiPan/225/base 2025-01-24T02:40:36.7439790Z * [new branch] gh/XuehaiPan/225/head -> origin/gh/XuehaiPan/225/head 2025-01-24T02:40:36.7441450Z * [new branch] gh/XuehaiPan/225/orig -> origin/gh/XuehaiPan/225/orig 2025-01-24T02:40:36.7443930Z * [new branch] gh/XuehaiPan/226/base -> origin/gh/XuehaiPan/226/base 2025-01-24T02:40:36.7445870Z * [new branch] gh/XuehaiPan/226/head -> origin/gh/XuehaiPan/226/head 2025-01-24T02:40:36.7447680Z * [new branch] gh/XuehaiPan/226/orig -> origin/gh/XuehaiPan/226/orig 2025-01-24T02:40:36.7450100Z * [new branch] gh/XuehaiPan/227/base -> origin/gh/XuehaiPan/227/base 2025-01-24T02:40:36.7451990Z * [new branch] gh/XuehaiPan/227/head -> origin/gh/XuehaiPan/227/head 2025-01-24T02:40:36.7458580Z * [new branch] gh/XuehaiPan/227/orig -> origin/gh/XuehaiPan/227/orig 2025-01-24T02:40:36.7461150Z * [new branch] gh/XuehaiPan/228/base -> origin/gh/XuehaiPan/228/base 2025-01-24T02:40:36.7463080Z * [new branch] gh/XuehaiPan/228/head -> origin/gh/XuehaiPan/228/head 2025-01-24T02:40:36.7464980Z * [new branch] gh/XuehaiPan/228/orig -> origin/gh/XuehaiPan/228/orig 2025-01-24T02:40:36.7467560Z * [new branch] gh/XuehaiPan/229/base -> origin/gh/XuehaiPan/229/base 2025-01-24T02:40:36.7469490Z * [new branch] gh/XuehaiPan/229/head -> origin/gh/XuehaiPan/229/head 2025-01-24T02:40:36.7471380Z * [new branch] gh/XuehaiPan/229/orig -> origin/gh/XuehaiPan/229/orig 2025-01-24T02:40:36.7473910Z * [new branch] gh/XuehaiPan/230/base -> origin/gh/XuehaiPan/230/base 2025-01-24T02:40:36.7475740Z * [new branch] gh/XuehaiPan/230/head -> origin/gh/XuehaiPan/230/head 2025-01-24T02:40:36.7477590Z * [new branch] gh/XuehaiPan/230/orig -> origin/gh/XuehaiPan/230/orig 2025-01-24T02:40:36.7479990Z * [new branch] gh/XuehaiPan/231/base -> origin/gh/XuehaiPan/231/base 2025-01-24T02:40:36.7481920Z * [new branch] gh/XuehaiPan/231/head -> origin/gh/XuehaiPan/231/head 2025-01-24T02:40:36.7483470Z * [new branch] gh/XuehaiPan/231/orig -> origin/gh/XuehaiPan/231/orig 2025-01-24T02:40:36.7485740Z * [new branch] gh/XuehaiPan/232/base -> origin/gh/XuehaiPan/232/base 2025-01-24T02:40:36.7487650Z * [new branch] gh/XuehaiPan/232/head -> origin/gh/XuehaiPan/232/head 2025-01-24T02:40:36.7489710Z * [new branch] gh/XuehaiPan/232/orig -> origin/gh/XuehaiPan/232/orig 2025-01-24T02:40:36.7492020Z * [new branch] gh/XuehaiPan/233/base -> origin/gh/XuehaiPan/233/base 2025-01-24T02:40:36.7494060Z * [new branch] gh/XuehaiPan/233/head -> origin/gh/XuehaiPan/233/head 2025-01-24T02:40:36.7495840Z * [new branch] gh/XuehaiPan/233/orig -> origin/gh/XuehaiPan/233/orig 2025-01-24T02:40:36.7498190Z * [new branch] gh/XuehaiPan/234/base -> origin/gh/XuehaiPan/234/base 2025-01-24T02:40:36.7500040Z * [new branch] gh/XuehaiPan/234/head -> origin/gh/XuehaiPan/234/head 2025-01-24T02:40:36.7501940Z * [new branch] gh/XuehaiPan/234/orig -> origin/gh/XuehaiPan/234/orig 2025-01-24T02:40:36.7504460Z * [new branch] gh/XuehaiPan/235/base -> origin/gh/XuehaiPan/235/base 2025-01-24T02:40:36.7506370Z * [new branch] gh/XuehaiPan/235/head -> origin/gh/XuehaiPan/235/head 2025-01-24T02:40:36.7508550Z * [new branch] gh/XuehaiPan/235/orig -> origin/gh/XuehaiPan/235/orig 2025-01-24T02:40:36.7510870Z * [new branch] gh/XuehaiPan/236/base -> origin/gh/XuehaiPan/236/base 2025-01-24T02:40:36.7512650Z * [new branch] gh/XuehaiPan/236/head -> origin/gh/XuehaiPan/236/head 2025-01-24T02:40:36.7518870Z * [new branch] gh/XuehaiPan/236/orig -> origin/gh/XuehaiPan/236/orig 2025-01-24T02:40:36.7521300Z * [new branch] gh/XuehaiPan/237/base -> origin/gh/XuehaiPan/237/base 2025-01-24T02:40:36.7523310Z * [new branch] gh/XuehaiPan/237/head -> origin/gh/XuehaiPan/237/head 2025-01-24T02:40:36.7525140Z * [new branch] gh/XuehaiPan/237/orig -> origin/gh/XuehaiPan/237/orig 2025-01-24T02:40:36.7527830Z * [new branch] gh/XuehaiPan/30/base -> origin/gh/XuehaiPan/30/base 2025-01-24T02:40:36.7529420Z * [new branch] gh/XuehaiPan/30/head -> origin/gh/XuehaiPan/30/head 2025-01-24T02:40:36.7531310Z * [new branch] gh/XuehaiPan/30/orig -> origin/gh/XuehaiPan/30/orig 2025-01-24T02:40:36.7534050Z * [new branch] gh/XuehaiPan/67/base -> origin/gh/XuehaiPan/67/base 2025-01-24T02:40:36.7535950Z * [new branch] gh/XuehaiPan/67/head -> origin/gh/XuehaiPan/67/head 2025-01-24T02:40:36.7537850Z * [new branch] gh/XuehaiPan/67/orig -> origin/gh/XuehaiPan/67/orig 2025-01-24T02:40:36.7540130Z * [new branch] gh/XuehaiPan/70/base -> origin/gh/XuehaiPan/70/base 2025-01-24T02:40:36.7541920Z * [new branch] gh/XuehaiPan/70/head -> origin/gh/XuehaiPan/70/head 2025-01-24T02:40:36.7543740Z * [new branch] gh/XuehaiPan/70/orig -> origin/gh/XuehaiPan/70/orig 2025-01-24T02:40:36.7546430Z * [new branch] gh/XuehaiPan/72/base -> origin/gh/XuehaiPan/72/base 2025-01-24T02:40:36.7548100Z * [new branch] gh/XuehaiPan/72/head -> origin/gh/XuehaiPan/72/head 2025-01-24T02:40:36.7550010Z * [new branch] gh/XuehaiPan/72/orig -> origin/gh/XuehaiPan/72/orig 2025-01-24T02:40:36.7552590Z * [new branch] gh/XuehaiPan/9/base -> origin/gh/XuehaiPan/9/base 2025-01-24T02:40:36.7554370Z * [new branch] gh/XuehaiPan/9/orig -> origin/gh/XuehaiPan/9/orig 2025-01-24T02:40:36.7556990Z * [new branch] gh/XuehaiPan/97/base -> origin/gh/XuehaiPan/97/base 2025-01-24T02:40:36.7558860Z * [new branch] gh/XuehaiPan/97/head -> origin/gh/XuehaiPan/97/head 2025-01-24T02:40:36.7560640Z * [new branch] gh/XuehaiPan/97/orig -> origin/gh/XuehaiPan/97/orig 2025-01-24T02:40:36.7563150Z * [new branch] gh/XuehaiPan/98/base -> origin/gh/XuehaiPan/98/base 2025-01-24T02:40:36.7565170Z * [new branch] gh/XuehaiPan/98/head -> origin/gh/XuehaiPan/98/head 2025-01-24T02:40:36.7566620Z * [new branch] gh/XuehaiPan/98/orig -> origin/gh/XuehaiPan/98/orig 2025-01-24T02:40:36.7569780Z * [new branch] gh/XuehaiPan/99/base -> origin/gh/XuehaiPan/99/base 2025-01-24T02:40:36.7571850Z * [new branch] gh/XuehaiPan/99/head -> origin/gh/XuehaiPan/99/head 2025-01-24T02:40:36.7573600Z * [new branch] gh/XuehaiPan/99/orig -> origin/gh/XuehaiPan/99/orig 2025-01-24T02:40:36.7576880Z * [new branch] gh/ZainRizvi/1/base -> origin/gh/ZainRizvi/1/base 2025-01-24T02:40:36.7578630Z * [new branch] gh/ZainRizvi/1/head -> origin/gh/ZainRizvi/1/head 2025-01-24T02:40:36.7581670Z * [new branch] gh/ZhiweiYan-96/23/base -> origin/gh/ZhiweiYan-96/23/base 2025-01-24T02:40:36.7583600Z * [new branch] gh/ZhiweiYan-96/23/head -> origin/gh/ZhiweiYan-96/23/head 2025-01-24T02:40:36.7585630Z * [new branch] gh/ZhiweiYan-96/23/orig -> origin/gh/ZhiweiYan-96/23/orig 2025-01-24T02:40:36.7587760Z * [new branch] gh/ZhiweiYan-96/27/base -> origin/gh/ZhiweiYan-96/27/base 2025-01-24T02:40:36.7589710Z * [new branch] gh/ZhiweiYan-96/27/head -> origin/gh/ZhiweiYan-96/27/head 2025-01-24T02:40:36.7591640Z * [new branch] gh/ZhiweiYan-96/27/orig -> origin/gh/ZhiweiYan-96/27/orig 2025-01-24T02:40:36.7593960Z * [new branch] gh/ZhiweiYan-96/29/base -> origin/gh/ZhiweiYan-96/29/base 2025-01-24T02:40:36.7595650Z * [new branch] gh/ZhiweiYan-96/29/head -> origin/gh/ZhiweiYan-96/29/head 2025-01-24T02:40:36.7597450Z * [new branch] gh/ZhiweiYan-96/29/orig -> origin/gh/ZhiweiYan-96/29/orig 2025-01-24T02:40:36.7600230Z * [new branch] gh/ZhiweiYan-96/30/base -> origin/gh/ZhiweiYan-96/30/base 2025-01-24T02:40:36.7602140Z * [new branch] gh/ZhiweiYan-96/30/head -> origin/gh/ZhiweiYan-96/30/head 2025-01-24T02:40:36.7603920Z * [new branch] gh/ZhiweiYan-96/30/orig -> origin/gh/ZhiweiYan-96/30/orig 2025-01-24T02:40:36.7606350Z * [new branch] gh/ZhiweiYan-96/31/base -> origin/gh/ZhiweiYan-96/31/base 2025-01-24T02:40:36.7608190Z * [new branch] gh/ZhiweiYan-96/31/head -> origin/gh/ZhiweiYan-96/31/head 2025-01-24T02:40:36.7609850Z * [new branch] gh/ZhiweiYan-96/31/orig -> origin/gh/ZhiweiYan-96/31/orig 2025-01-24T02:40:36.7612700Z * [new branch] gh/ZhiweiYan-96/32/base -> origin/gh/ZhiweiYan-96/32/base 2025-01-24T02:40:36.7614300Z * [new branch] gh/ZhiweiYan-96/32/head -> origin/gh/ZhiweiYan-96/32/head 2025-01-24T02:40:36.7616170Z * [new branch] gh/ZhiweiYan-96/32/orig -> origin/gh/ZhiweiYan-96/32/orig 2025-01-24T02:40:36.7618610Z * [new branch] gh/ZhiweiYan-96/33/base -> origin/gh/ZhiweiYan-96/33/base 2025-01-24T02:40:36.7625060Z * [new branch] gh/ZhiweiYan-96/33/head -> origin/gh/ZhiweiYan-96/33/head 2025-01-24T02:40:36.7625670Z * [new branch] gh/ZhiweiYan-96/33/orig -> origin/gh/ZhiweiYan-96/33/orig 2025-01-24T02:40:36.7626220Z * [new branch] gh/ZhiweiYan-96/37/base -> origin/gh/ZhiweiYan-96/37/base 2025-01-24T02:40:36.7626770Z * [new branch] gh/ZhiweiYan-96/37/head -> origin/gh/ZhiweiYan-96/37/head 2025-01-24T02:40:36.7629560Z * [new branch] gh/ZhiweiYan-96/38/base -> origin/gh/ZhiweiYan-96/38/base 2025-01-24T02:40:36.7631570Z * [new branch] gh/ZhiweiYan-96/38/head -> origin/gh/ZhiweiYan-96/38/head 2025-01-24T02:40:36.7633370Z * [new branch] gh/ZhiweiYan-96/38/orig -> origin/gh/ZhiweiYan-96/38/orig 2025-01-24T02:40:36.7636080Z * [new branch] gh/ZhiweiYan-96/39/base -> origin/gh/ZhiweiYan-96/39/base 2025-01-24T02:40:36.7637810Z * [new branch] gh/ZhiweiYan-96/39/head -> origin/gh/ZhiweiYan-96/39/head 2025-01-24T02:40:36.7639630Z * [new branch] gh/ZhiweiYan-96/39/orig -> origin/gh/ZhiweiYan-96/39/orig 2025-01-24T02:40:36.7642350Z * [new branch] gh/ZhiweiYan-96/40/base -> origin/gh/ZhiweiYan-96/40/base 2025-01-24T02:40:36.7644190Z * [new branch] gh/ZhiweiYan-96/40/head -> origin/gh/ZhiweiYan-96/40/head 2025-01-24T02:40:36.7645890Z * [new branch] gh/ZhiweiYan-96/40/orig -> origin/gh/ZhiweiYan-96/40/orig 2025-01-24T02:40:36.7649040Z * [new branch] gh/aakhundov/1/base -> origin/gh/aakhundov/1/base 2025-01-24T02:40:36.7650910Z * [new branch] gh/aakhundov/1/head -> origin/gh/aakhundov/1/head 2025-01-24T02:40:36.7653160Z * [new branch] gh/aakhundov/2/base -> origin/gh/aakhundov/2/base 2025-01-24T02:40:36.7655050Z * [new branch] gh/aakhundov/2/head -> origin/gh/aakhundov/2/head 2025-01-24T02:40:36.7658060Z * [new branch] gh/albanD/3/base -> origin/gh/albanD/3/base 2025-01-24T02:40:36.7659930Z * [new branch] gh/albanD/3/head -> origin/gh/albanD/3/head 2025-01-24T02:40:36.7661870Z * [new branch] gh/albanD/3/orig -> origin/gh/albanD/3/orig 2025-01-24T02:40:36.7664900Z * [new branch] gh/alexsamardzic/22/base -> origin/gh/alexsamardzic/22/base 2025-01-24T02:40:36.7666860Z * [new branch] gh/alexsamardzic/22/head -> origin/gh/alexsamardzic/22/head 2025-01-24T02:40:36.7669060Z * [new branch] gh/alexsamardzic/22/orig -> origin/gh/alexsamardzic/22/orig 2025-01-24T02:40:36.7671750Z * [new branch] gh/alexsamardzic/23/base -> origin/gh/alexsamardzic/23/base 2025-01-24T02:40:36.7673240Z * [new branch] gh/alexsamardzic/23/head -> origin/gh/alexsamardzic/23/head 2025-01-24T02:40:36.7675110Z * [new branch] gh/alexsamardzic/23/orig -> origin/gh/alexsamardzic/23/orig 2025-01-24T02:40:36.7678480Z * [new branch] gh/amjames/18/base -> origin/gh/amjames/18/base 2025-01-24T02:40:36.7680140Z * [new branch] gh/amjames/18/head -> origin/gh/amjames/18/head 2025-01-24T02:40:36.7682080Z * [new branch] gh/amjames/18/orig -> origin/gh/amjames/18/orig 2025-01-24T02:40:36.7684470Z * [new branch] gh/amjames/19/base -> origin/gh/amjames/19/base 2025-01-24T02:40:36.7686350Z * [new branch] gh/amjames/19/head -> origin/gh/amjames/19/head 2025-01-24T02:40:36.7688420Z * [new branch] gh/amjames/19/orig -> origin/gh/amjames/19/orig 2025-01-24T02:40:36.7691370Z * [new branch] gh/andrewlee302/1/base -> origin/gh/andrewlee302/1/base 2025-01-24T02:40:36.7693300Z * [new branch] gh/andrewlee302/1/head -> origin/gh/andrewlee302/1/head 2025-01-24T02:40:36.7695880Z * [new branch] gh/andrewlee302/3/base -> origin/gh/andrewlee302/3/base 2025-01-24T02:40:36.7697540Z * [new branch] gh/andrewlee302/3/head -> origin/gh/andrewlee302/3/head 2025-01-24T02:40:36.7699390Z * [new branch] gh/andrewlee302/3/orig -> origin/gh/andrewlee302/3/orig 2025-01-24T02:40:36.7702540Z * [new branch] gh/andrewor14/25/base -> origin/gh/andrewor14/25/base 2025-01-24T02:40:36.7704400Z * [new branch] gh/andrewor14/25/head -> origin/gh/andrewor14/25/head 2025-01-24T02:40:36.7705740Z * [new branch] gh/andrewor14/25/orig -> origin/gh/andrewor14/25/orig 2025-01-24T02:40:36.7708570Z * [new branch] gh/andrewor14/35/base -> origin/gh/andrewor14/35/base 2025-01-24T02:40:36.7710520Z * [new branch] gh/andrewor14/35/head -> origin/gh/andrewor14/35/head 2025-01-24T02:40:36.7712120Z * [new branch] gh/andrewor14/35/orig -> origin/gh/andrewor14/35/orig 2025-01-24T02:40:36.7714780Z * [new branch] gh/andrewor14/36/base -> origin/gh/andrewor14/36/base 2025-01-24T02:40:36.7716720Z * [new branch] gh/andrewor14/36/head -> origin/gh/andrewor14/36/head 2025-01-24T02:40:36.7718270Z * [new branch] gh/andrewor14/36/orig -> origin/gh/andrewor14/36/orig 2025-01-24T02:40:36.7720940Z * [new branch] gh/andrewor14/37/base -> origin/gh/andrewor14/37/base 2025-01-24T02:40:36.7722820Z * [new branch] gh/andrewor14/37/head -> origin/gh/andrewor14/37/head 2025-01-24T02:40:36.7724400Z * [new branch] gh/andrewor14/37/orig -> origin/gh/andrewor14/37/orig 2025-01-24T02:40:36.7726880Z * [new branch] gh/andrewor14/50/base -> origin/gh/andrewor14/50/base 2025-01-24T02:40:36.7728780Z * [new branch] gh/andrewor14/50/head -> origin/gh/andrewor14/50/head 2025-01-24T02:40:36.7730660Z * [new branch] gh/andrewor14/50/orig -> origin/gh/andrewor14/50/orig 2025-01-24T02:40:36.7733960Z * [new branch] gh/angelayi/62/base -> origin/gh/angelayi/62/base 2025-01-24T02:40:36.7735570Z * [new branch] gh/angelayi/62/head -> origin/gh/angelayi/62/head 2025-01-24T02:40:36.7737450Z * [new branch] gh/angelayi/62/orig -> origin/gh/angelayi/62/orig 2025-01-24T02:40:36.7740040Z * [new branch] gh/angelayi/64/base -> origin/gh/angelayi/64/base 2025-01-24T02:40:36.7742080Z * [new branch] gh/angelayi/64/head -> origin/gh/angelayi/64/head 2025-01-24T02:40:36.7743700Z * [new branch] gh/angelayi/64/orig -> origin/gh/angelayi/64/orig 2025-01-24T02:40:36.7746560Z * [new branch] gh/angelayi/65/base -> origin/gh/angelayi/65/base 2025-01-24T02:40:36.7748090Z * [new branch] gh/angelayi/65/head -> origin/gh/angelayi/65/head 2025-01-24T02:40:36.7750390Z * [new branch] gh/angelayi/65/orig -> origin/gh/angelayi/65/orig 2025-01-24T02:40:36.7753150Z * [new branch] gh/ani300/4/base -> origin/gh/ani300/4/base 2025-01-24T02:40:36.7755310Z * [new branch] gh/ani300/4/head -> origin/gh/ani300/4/head 2025-01-24T02:40:36.7756970Z * [new branch] gh/ani300/4/orig -> origin/gh/ani300/4/orig 2025-01-24T02:40:36.7760060Z * [new branch] gh/anijain2305/162/base -> origin/gh/anijain2305/162/base 2025-01-24T02:40:36.7761470Z * [new branch] gh/anijain2305/162/head -> origin/gh/anijain2305/162/head 2025-01-24T02:40:36.7764580Z * [new branch] gh/anijain2305/507/base -> origin/gh/anijain2305/507/base 2025-01-24T02:40:36.7766200Z * [new branch] gh/anijain2305/507/head -> origin/gh/anijain2305/507/head 2025-01-24T02:40:36.7768050Z * [new branch] gh/anijain2305/507/orig -> origin/gh/anijain2305/507/orig 2025-01-24T02:40:36.7771100Z * [new branch] gh/anijain2305/522/base -> origin/gh/anijain2305/522/base 2025-01-24T02:40:36.7773130Z * [new branch] gh/anijain2305/522/head -> origin/gh/anijain2305/522/head 2025-01-24T02:40:36.7775080Z * [new branch] gh/anijain2305/522/orig -> origin/gh/anijain2305/522/orig 2025-01-24T02:40:36.7777500Z * [new branch] gh/anijain2305/539/base -> origin/gh/anijain2305/539/base 2025-01-24T02:40:36.7779410Z * [new branch] gh/anijain2305/539/head -> origin/gh/anijain2305/539/head 2025-01-24T02:40:36.7781250Z * [new branch] gh/anijain2305/539/orig -> origin/gh/anijain2305/539/orig 2025-01-24T02:40:36.7783760Z * [new branch] gh/anijain2305/541/base -> origin/gh/anijain2305/541/base 2025-01-24T02:40:36.7785670Z * [new branch] gh/anijain2305/541/head -> origin/gh/anijain2305/541/head 2025-01-24T02:40:36.7787400Z * [new branch] gh/anijain2305/541/orig -> origin/gh/anijain2305/541/orig 2025-01-24T02:40:36.7790030Z * [new branch] gh/anijain2305/542/base -> origin/gh/anijain2305/542/base 2025-01-24T02:40:36.7791920Z * [new branch] gh/anijain2305/542/head -> origin/gh/anijain2305/542/head 2025-01-24T02:40:36.7793720Z * [new branch] gh/anijain2305/542/orig -> origin/gh/anijain2305/542/orig 2025-01-24T02:40:36.7796400Z * [new branch] gh/anijain2305/566/base -> origin/gh/anijain2305/566/base 2025-01-24T02:40:36.7798070Z * [new branch] gh/anijain2305/566/head -> origin/gh/anijain2305/566/head 2025-01-24T02:40:36.7799960Z * [new branch] gh/anijain2305/566/orig -> origin/gh/anijain2305/566/orig 2025-01-24T02:40:36.7802420Z * [new branch] gh/anijain2305/571/base -> origin/gh/anijain2305/571/base 2025-01-24T02:40:36.7804400Z * [new branch] gh/anijain2305/571/head -> origin/gh/anijain2305/571/head 2025-01-24T02:40:36.7806320Z * [new branch] gh/anijain2305/571/orig -> origin/gh/anijain2305/571/orig 2025-01-24T02:40:36.7808670Z * [new branch] gh/anijain2305/573/base -> origin/gh/anijain2305/573/base 2025-01-24T02:40:36.7810810Z * [new branch] gh/anijain2305/573/head -> origin/gh/anijain2305/573/head 2025-01-24T02:40:36.7812460Z * [new branch] gh/anijain2305/573/orig -> origin/gh/anijain2305/573/orig 2025-01-24T02:40:36.7814890Z * [new branch] gh/anijain2305/580/base -> origin/gh/anijain2305/580/base 2025-01-24T02:40:36.7816890Z * [new branch] gh/anijain2305/580/head -> origin/gh/anijain2305/580/head 2025-01-24T02:40:36.7818680Z * [new branch] gh/anijain2305/580/orig -> origin/gh/anijain2305/580/orig 2025-01-24T02:40:36.7821260Z * [new branch] gh/anijain2305/598/base -> origin/gh/anijain2305/598/base 2025-01-24T02:40:36.7823150Z * [new branch] gh/anijain2305/598/head -> origin/gh/anijain2305/598/head 2025-01-24T02:40:36.7825020Z * [new branch] gh/anijain2305/598/orig -> origin/gh/anijain2305/598/orig 2025-01-24T02:40:36.7827430Z * [new branch] gh/anijain2305/599/base -> origin/gh/anijain2305/599/base 2025-01-24T02:40:36.7829370Z * [new branch] gh/anijain2305/599/head -> origin/gh/anijain2305/599/head 2025-01-24T02:40:36.7831430Z * [new branch] gh/anijain2305/599/orig -> origin/gh/anijain2305/599/orig 2025-01-24T02:40:36.7833590Z * [new branch] gh/anijain2305/600/base -> origin/gh/anijain2305/600/base 2025-01-24T02:40:36.7835650Z * [new branch] gh/anijain2305/600/head -> origin/gh/anijain2305/600/head 2025-01-24T02:40:36.7837110Z * [new branch] gh/anijain2305/600/orig -> origin/gh/anijain2305/600/orig 2025-01-24T02:40:36.7839760Z * [new branch] gh/anijain2305/601/base -> origin/gh/anijain2305/601/base 2025-01-24T02:40:36.7841530Z * [new branch] gh/anijain2305/601/head -> origin/gh/anijain2305/601/head 2025-01-24T02:40:36.7843250Z * [new branch] gh/anijain2305/601/orig -> origin/gh/anijain2305/601/orig 2025-01-24T02:40:36.7845620Z * [new branch] gh/anijain2305/602/base -> origin/gh/anijain2305/602/base 2025-01-24T02:40:36.7851480Z * [new branch] gh/anijain2305/602/head -> origin/gh/anijain2305/602/head 2025-01-24T02:40:36.7852080Z * [new branch] gh/anijain2305/602/orig -> origin/gh/anijain2305/602/orig 2025-01-24T02:40:36.7852670Z * [new branch] gh/anijain2305/603/base -> origin/gh/anijain2305/603/base 2025-01-24T02:40:36.7853620Z * [new branch] gh/anijain2305/603/head -> origin/gh/anijain2305/603/head 2025-01-24T02:40:36.7855360Z * [new branch] gh/anijain2305/603/orig -> origin/gh/anijain2305/603/orig 2025-01-24T02:40:36.7858180Z * [new branch] gh/anijain2305/604/base -> origin/gh/anijain2305/604/base 2025-01-24T02:40:36.7860000Z * [new branch] gh/anijain2305/604/head -> origin/gh/anijain2305/604/head 2025-01-24T02:40:36.7861870Z * [new branch] gh/anijain2305/604/orig -> origin/gh/anijain2305/604/orig 2025-01-24T02:40:36.7864440Z * [new branch] gh/anijain2305/605/base -> origin/gh/anijain2305/605/base 2025-01-24T02:40:36.7866300Z * [new branch] gh/anijain2305/605/head -> origin/gh/anijain2305/605/head 2025-01-24T02:40:36.7868070Z * [new branch] gh/anijain2305/605/orig -> origin/gh/anijain2305/605/orig 2025-01-24T02:40:36.7870540Z * [new branch] gh/anijain2305/606/base -> origin/gh/anijain2305/606/base 2025-01-24T02:40:36.7872680Z * [new branch] gh/anijain2305/606/head -> origin/gh/anijain2305/606/head 2025-01-24T02:40:36.7874360Z * [new branch] gh/anijain2305/606/orig -> origin/gh/anijain2305/606/orig 2025-01-24T02:40:36.7876890Z * [new branch] gh/anijain2305/607/base -> origin/gh/anijain2305/607/base 2025-01-24T02:40:36.7878950Z * [new branch] gh/anijain2305/607/head -> origin/gh/anijain2305/607/head 2025-01-24T02:40:36.7880540Z * [new branch] gh/anijain2305/607/orig -> origin/gh/anijain2305/607/orig 2025-01-24T02:40:36.7883010Z * [new branch] gh/anijain2305/608/base -> origin/gh/anijain2305/608/base 2025-01-24T02:40:36.7884840Z * [new branch] gh/anijain2305/608/head -> origin/gh/anijain2305/608/head 2025-01-24T02:40:36.7886650Z * [new branch] gh/anijain2305/608/orig -> origin/gh/anijain2305/608/orig 2025-01-24T02:40:36.7888710Z * [new branch] gh/anijain2305/609/base -> origin/gh/anijain2305/609/base 2025-01-24T02:40:36.7891260Z * [new branch] gh/anijain2305/609/head -> origin/gh/anijain2305/609/head 2025-01-24T02:40:36.7893060Z * [new branch] gh/anijain2305/609/orig -> origin/gh/anijain2305/609/orig 2025-01-24T02:40:36.7895790Z * [new branch] gh/anijain2305/610/base -> origin/gh/anijain2305/610/base 2025-01-24T02:40:36.7897480Z * [new branch] gh/anijain2305/610/head -> origin/gh/anijain2305/610/head 2025-01-24T02:40:36.7899360Z * [new branch] gh/anijain2305/610/orig -> origin/gh/anijain2305/610/orig 2025-01-24T02:40:36.7901910Z * [new branch] gh/anijain2305/611/base -> origin/gh/anijain2305/611/base 2025-01-24T02:40:36.7903700Z * [new branch] gh/anijain2305/611/head -> origin/gh/anijain2305/611/head 2025-01-24T02:40:36.7905600Z * [new branch] gh/anijain2305/611/orig -> origin/gh/anijain2305/611/orig 2025-01-24T02:40:36.7908050Z * [new branch] gh/anijain2305/612/base -> origin/gh/anijain2305/612/base 2025-01-24T02:40:36.7909970Z * [new branch] gh/anijain2305/612/head -> origin/gh/anijain2305/612/head 2025-01-24T02:40:36.7911870Z * [new branch] gh/anijain2305/612/orig -> origin/gh/anijain2305/612/orig 2025-01-24T02:40:36.7914270Z * [new branch] gh/anijain2305/613/base -> origin/gh/anijain2305/613/base 2025-01-24T02:40:36.7916380Z * [new branch] gh/anijain2305/613/head -> origin/gh/anijain2305/613/head 2025-01-24T02:40:36.7918030Z * [new branch] gh/anijain2305/613/orig -> origin/gh/anijain2305/613/orig 2025-01-24T02:40:36.7920640Z * [new branch] gh/anijain2305/614/base -> origin/gh/anijain2305/614/base 2025-01-24T02:40:36.7922370Z * [new branch] gh/anijain2305/614/head -> origin/gh/anijain2305/614/head 2025-01-24T02:40:36.7924320Z * [new branch] gh/anijain2305/614/orig -> origin/gh/anijain2305/614/orig 2025-01-24T02:40:36.7926840Z * [new branch] gh/anijain2305/615/base -> origin/gh/anijain2305/615/base 2025-01-24T02:40:36.7928820Z * [new branch] gh/anijain2305/615/head -> origin/gh/anijain2305/615/head 2025-01-24T02:40:36.7930570Z * [new branch] gh/anijain2305/615/orig -> origin/gh/anijain2305/615/orig 2025-01-24T02:40:36.7933030Z * [new branch] gh/anijain2305/616/base -> origin/gh/anijain2305/616/base 2025-01-24T02:40:36.7935010Z * [new branch] gh/anijain2305/616/head -> origin/gh/anijain2305/616/head 2025-01-24T02:40:36.7936810Z * [new branch] gh/anijain2305/616/orig -> origin/gh/anijain2305/616/orig 2025-01-24T02:40:36.7939250Z * [new branch] gh/anijain2305/617/base -> origin/gh/anijain2305/617/base 2025-01-24T02:40:36.7941290Z * [new branch] gh/anijain2305/617/head -> origin/gh/anijain2305/617/head 2025-01-24T02:40:36.7943270Z * [new branch] gh/anijain2305/617/orig -> origin/gh/anijain2305/617/orig 2025-01-24T02:40:36.7945580Z * [new branch] gh/anijain2305/618/base -> origin/gh/anijain2305/618/base 2025-01-24T02:40:36.7947400Z * [new branch] gh/anijain2305/618/head -> origin/gh/anijain2305/618/head 2025-01-24T02:40:36.7949350Z * [new branch] gh/anijain2305/618/orig -> origin/gh/anijain2305/618/orig 2025-01-24T02:40:36.7951760Z * [new branch] gh/anijain2305/619/base -> origin/gh/anijain2305/619/base 2025-01-24T02:40:36.7953670Z * [new branch] gh/anijain2305/619/head -> origin/gh/anijain2305/619/head 2025-01-24T02:40:36.7955620Z * [new branch] gh/anijain2305/619/orig -> origin/gh/anijain2305/619/orig 2025-01-24T02:40:36.7958180Z * [new branch] gh/anijain2305/620/base -> origin/gh/anijain2305/620/base 2025-01-24T02:40:36.7959920Z * [new branch] gh/anijain2305/620/head -> origin/gh/anijain2305/620/head 2025-01-24T02:40:36.7961870Z * [new branch] gh/anijain2305/620/orig -> origin/gh/anijain2305/620/orig 2025-01-24T02:40:36.7964250Z * [new branch] gh/anijain2305/621/base -> origin/gh/anijain2305/621/base 2025-01-24T02:40:36.7966250Z * [new branch] gh/anijain2305/621/head -> origin/gh/anijain2305/621/head 2025-01-24T02:40:36.7968090Z * [new branch] gh/anijain2305/621/orig -> origin/gh/anijain2305/621/orig 2025-01-24T02:40:36.7970610Z * [new branch] gh/anijain2305/622/base -> origin/gh/anijain2305/622/base 2025-01-24T02:40:36.7972620Z * [new branch] gh/anijain2305/622/head -> origin/gh/anijain2305/622/head 2025-01-24T02:40:36.7974380Z * [new branch] gh/anijain2305/622/orig -> origin/gh/anijain2305/622/orig 2025-01-24T02:40:36.7976840Z * [new branch] gh/anijain2305/623/base -> origin/gh/anijain2305/623/base 2025-01-24T02:40:36.7978720Z * [new branch] gh/anijain2305/623/head -> origin/gh/anijain2305/623/head 2025-01-24T02:40:36.7980500Z * [new branch] gh/anijain2305/623/orig -> origin/gh/anijain2305/623/orig 2025-01-24T02:40:36.7982920Z * [new branch] gh/anijain2305/624/base -> origin/gh/anijain2305/624/base 2025-01-24T02:40:36.7984920Z * [new branch] gh/anijain2305/624/head -> origin/gh/anijain2305/624/head 2025-01-24T02:40:36.7986520Z * [new branch] gh/anijain2305/624/orig -> origin/gh/anijain2305/624/orig 2025-01-24T02:40:36.7989200Z * [new branch] gh/anijain2305/625/base -> origin/gh/anijain2305/625/base 2025-01-24T02:40:36.7990960Z * [new branch] gh/anijain2305/625/head -> origin/gh/anijain2305/625/head 2025-01-24T02:40:36.7992410Z * [new branch] gh/anijain2305/625/orig -> origin/gh/anijain2305/625/orig 2025-01-24T02:40:36.7995360Z * [new branch] gh/anijain2305/626/base -> origin/gh/anijain2305/626/base 2025-01-24T02:40:36.7997010Z * [new branch] gh/anijain2305/626/head -> origin/gh/anijain2305/626/head 2025-01-24T02:40:36.7998990Z * [new branch] gh/anijain2305/626/orig -> origin/gh/anijain2305/626/orig 2025-01-24T02:40:36.8001280Z * [new branch] gh/anijain2305/627/base -> origin/gh/anijain2305/627/base 2025-01-24T02:40:36.8003180Z * [new branch] gh/anijain2305/627/head -> origin/gh/anijain2305/627/head 2025-01-24T02:40:36.8004840Z * [new branch] gh/anijain2305/627/orig -> origin/gh/anijain2305/627/orig 2025-01-24T02:40:36.8007580Z * [new branch] gh/anijain2305/628/base -> origin/gh/anijain2305/628/base 2025-01-24T02:40:36.8009320Z * [new branch] gh/anijain2305/628/head -> origin/gh/anijain2305/628/head 2025-01-24T02:40:36.8011090Z * [new branch] gh/anijain2305/628/orig -> origin/gh/anijain2305/628/orig 2025-01-24T02:40:36.8014070Z * [new branch] gh/anijain2305/629/base -> origin/gh/anijain2305/629/base 2025-01-24T02:40:36.8016340Z * [new branch] gh/anijain2305/629/head -> origin/gh/anijain2305/629/head 2025-01-24T02:40:36.8017910Z * [new branch] gh/anijain2305/629/orig -> origin/gh/anijain2305/629/orig 2025-01-24T02:40:36.8020100Z * [new branch] gh/anijain2305/630/base -> origin/gh/anijain2305/630/base 2025-01-24T02:40:36.8021360Z * [new branch] gh/anijain2305/630/head -> origin/gh/anijain2305/630/head 2025-01-24T02:40:36.8023470Z * [new branch] gh/anijain2305/630/orig -> origin/gh/anijain2305/630/orig 2025-01-24T02:40:36.8025620Z * [new branch] gh/anijain2305/631/base -> origin/gh/anijain2305/631/base 2025-01-24T02:40:36.8027650Z * [new branch] gh/anijain2305/631/head -> origin/gh/anijain2305/631/head 2025-01-24T02:40:36.8029370Z * [new branch] gh/anijain2305/631/orig -> origin/gh/anijain2305/631/orig 2025-01-24T02:40:36.8031870Z * [new branch] gh/anijain2305/632/base -> origin/gh/anijain2305/632/base 2025-01-24T02:40:36.8033890Z * [new branch] gh/anijain2305/632/head -> origin/gh/anijain2305/632/head 2025-01-24T02:40:36.8038660Z * [new branch] gh/anijain2305/632/orig -> origin/gh/anijain2305/632/orig 2025-01-24T02:40:36.8039220Z * [new branch] gh/anijain2305/633/base -> origin/gh/anijain2305/633/base 2025-01-24T02:40:36.8039820Z * [new branch] gh/anijain2305/633/head -> origin/gh/anijain2305/633/head 2025-01-24T02:40:36.8041790Z * [new branch] gh/anijain2305/633/orig -> origin/gh/anijain2305/633/orig 2025-01-24T02:40:36.8044330Z * [new branch] gh/anijain2305/634/base -> origin/gh/anijain2305/634/base 2025-01-24T02:40:36.8046250Z * [new branch] gh/anijain2305/634/head -> origin/gh/anijain2305/634/head 2025-01-24T02:40:36.8047970Z * [new branch] gh/anijain2305/634/orig -> origin/gh/anijain2305/634/orig 2025-01-24T02:40:36.8051280Z * [new branch] gh/anjali411/216/base -> origin/gh/anjali411/216/base 2025-01-24T02:40:36.8053090Z * [new branch] gh/anjali411/216/head -> origin/gh/anjali411/216/head 2025-01-24T02:40:36.8055170Z * [new branch] gh/anjali411/216/orig -> origin/gh/anjali411/216/orig 2025-01-24T02:40:36.8058060Z * [new branch] gh/aorenste/120/base -> origin/gh/aorenste/120/base 2025-01-24T02:40:36.8060190Z * [new branch] gh/aorenste/120/head -> origin/gh/aorenste/120/head 2025-01-24T02:40:36.8062050Z * [new branch] gh/aorenste/120/orig -> origin/gh/aorenste/120/orig 2025-01-24T02:40:36.8064400Z * [new branch] gh/aorenste/132/base -> origin/gh/aorenste/132/base 2025-01-24T02:40:36.8066620Z * [new branch] gh/aorenste/132/head -> origin/gh/aorenste/132/head 2025-01-24T02:40:36.8068710Z * [new branch] gh/aorenste/141/base -> origin/gh/aorenste/141/base 2025-01-24T02:40:36.8070630Z * [new branch] gh/aorenste/141/head -> origin/gh/aorenste/141/head 2025-01-24T02:40:36.8072400Z * [new branch] gh/aorenste/141/orig -> origin/gh/aorenste/141/orig 2025-01-24T02:40:36.8074920Z * [new branch] gh/aorenste/147/base -> origin/gh/aorenste/147/base 2025-01-24T02:40:36.8076890Z * [new branch] gh/aorenste/147/head -> origin/gh/aorenste/147/head 2025-01-24T02:40:36.8078950Z * [new branch] gh/aorenste/147/orig -> origin/gh/aorenste/147/orig 2025-01-24T02:40:36.8081190Z * [new branch] gh/aorenste/159/base -> origin/gh/aorenste/159/base 2025-01-24T02:40:36.8083080Z * [new branch] gh/aorenste/159/head -> origin/gh/aorenste/159/head 2025-01-24T02:40:36.8084970Z * [new branch] gh/aorenste/159/orig -> origin/gh/aorenste/159/orig 2025-01-24T02:40:36.8087400Z * [new branch] gh/aorenste/168/base -> origin/gh/aorenste/168/base 2025-01-24T02:40:36.8089360Z * [new branch] gh/aorenste/168/head -> origin/gh/aorenste/168/head 2025-01-24T02:40:36.8091590Z * [new branch] gh/aorenste/168/orig -> origin/gh/aorenste/168/orig 2025-01-24T02:40:36.8093850Z * [new branch] gh/aorenste/169/base -> origin/gh/aorenste/169/base 2025-01-24T02:40:36.8095630Z * [new branch] gh/aorenste/169/head -> origin/gh/aorenste/169/head 2025-01-24T02:40:36.8097400Z * [new branch] gh/aorenste/169/orig -> origin/gh/aorenste/169/orig 2025-01-24T02:40:36.8099910Z * [new branch] gh/aorenste/170/base -> origin/gh/aorenste/170/base 2025-01-24T02:40:36.8101770Z * [new branch] gh/aorenste/170/head -> origin/gh/aorenste/170/head 2025-01-24T02:40:36.8103760Z * [new branch] gh/aorenste/170/orig -> origin/gh/aorenste/170/orig 2025-01-24T02:40:36.8106600Z * [new branch] gh/aorenste/171/base -> origin/gh/aorenste/171/base 2025-01-24T02:40:36.8108450Z * [new branch] gh/aorenste/171/head -> origin/gh/aorenste/171/head 2025-01-24T02:40:36.8110110Z * [new branch] gh/aorenste/171/orig -> origin/gh/aorenste/171/orig 2025-01-24T02:40:36.8112590Z * [new branch] gh/aorenste/172/base -> origin/gh/aorenste/172/base 2025-01-24T02:40:36.8114350Z * [new branch] gh/aorenste/172/head -> origin/gh/aorenste/172/head 2025-01-24T02:40:36.8116090Z * [new branch] gh/aorenste/172/orig -> origin/gh/aorenste/172/orig 2025-01-24T02:40:36.8118750Z * [new branch] gh/aorenste/173/base -> origin/gh/aorenste/173/base 2025-01-24T02:40:36.8120600Z * [new branch] gh/aorenste/173/head -> origin/gh/aorenste/173/head 2025-01-24T02:40:36.8122710Z * [new branch] gh/aorenste/173/orig -> origin/gh/aorenste/173/orig 2025-01-24T02:40:36.8124960Z * [new branch] gh/aorenste/174/base -> origin/gh/aorenste/174/base 2025-01-24T02:40:36.8126860Z * [new branch] gh/aorenste/174/head -> origin/gh/aorenste/174/head 2025-01-24T02:40:36.8128940Z * [new branch] gh/aorenste/174/orig -> origin/gh/aorenste/174/orig 2025-01-24T02:40:36.8131200Z * [new branch] gh/aorenste/175/base -> origin/gh/aorenste/175/base 2025-01-24T02:40:36.8133070Z * [new branch] gh/aorenste/175/head -> origin/gh/aorenste/175/head 2025-01-24T02:40:36.8134860Z * [new branch] gh/aorenste/175/orig -> origin/gh/aorenste/175/orig 2025-01-24T02:40:36.8137240Z * [new branch] gh/aorenste/176/base -> origin/gh/aorenste/176/base 2025-01-24T02:40:36.8138930Z * [new branch] gh/aorenste/176/head -> origin/gh/aorenste/176/head 2025-01-24T02:40:36.8141000Z * [new branch] gh/aorenste/176/orig -> origin/gh/aorenste/176/orig 2025-01-24T02:40:36.8143150Z * [new branch] gh/aorenste/177/base -> origin/gh/aorenste/177/base 2025-01-24T02:40:36.8145160Z * [new branch] gh/aorenste/177/head -> origin/gh/aorenste/177/head 2025-01-24T02:40:36.8146840Z * [new branch] gh/aorenste/177/orig -> origin/gh/aorenste/177/orig 2025-01-24T02:40:36.8149360Z * [new branch] gh/aorenste/178/base -> origin/gh/aorenste/178/base 2025-01-24T02:40:36.8151630Z * [new branch] gh/aorenste/178/head -> origin/gh/aorenste/178/head 2025-01-24T02:40:36.8153460Z * [new branch] gh/aorenste/178/orig -> origin/gh/aorenste/178/orig 2025-01-24T02:40:36.8155810Z * [new branch] gh/aorenste/179/base -> origin/gh/aorenste/179/base 2025-01-24T02:40:36.8157550Z * [new branch] gh/aorenste/179/head -> origin/gh/aorenste/179/head 2025-01-24T02:40:36.8159330Z * [new branch] gh/aorenste/179/orig -> origin/gh/aorenste/179/orig 2025-01-24T02:40:36.8161870Z * [new branch] gh/aorenste/180/base -> origin/gh/aorenste/180/base 2025-01-24T02:40:36.8163890Z * [new branch] gh/aorenste/180/head -> origin/gh/aorenste/180/head 2025-01-24T02:40:36.8165580Z * [new branch] gh/aorenste/180/orig -> origin/gh/aorenste/180/orig 2025-01-24T02:40:36.8168000Z * [new branch] gh/aorenste/181/base -> origin/gh/aorenste/181/base 2025-01-24T02:40:36.8169860Z * [new branch] gh/aorenste/181/head -> origin/gh/aorenste/181/head 2025-01-24T02:40:36.8171100Z * [new branch] gh/aorenste/181/orig -> origin/gh/aorenste/181/orig 2025-01-24T02:40:36.8174110Z * [new branch] gh/aorenste/182/base -> origin/gh/aorenste/182/base 2025-01-24T02:40:36.8175760Z * [new branch] gh/aorenste/182/head -> origin/gh/aorenste/182/head 2025-01-24T02:40:36.8177390Z * [new branch] gh/aorenste/182/orig -> origin/gh/aorenste/182/orig 2025-01-24T02:40:36.8179840Z * [new branch] gh/aorenste/183/base -> origin/gh/aorenste/183/base 2025-01-24T02:40:36.8181860Z * [new branch] gh/aorenste/183/head -> origin/gh/aorenste/183/head 2025-01-24T02:40:36.8183400Z * [new branch] gh/aorenste/183/orig -> origin/gh/aorenste/183/orig 2025-01-24T02:40:36.8185850Z * [new branch] gh/aorenste/184/base -> origin/gh/aorenste/184/base 2025-01-24T02:40:36.8187740Z * [new branch] gh/aorenste/184/head -> origin/gh/aorenste/184/head 2025-01-24T02:40:36.8189190Z * [new branch] gh/aorenste/184/orig -> origin/gh/aorenste/184/orig 2025-01-24T02:40:36.8191790Z * [new branch] gh/aorenste/185/base -> origin/gh/aorenste/185/base 2025-01-24T02:40:36.8193650Z * [new branch] gh/aorenste/185/head -> origin/gh/aorenste/185/head 2025-01-24T02:40:36.8195580Z * [new branch] gh/aorenste/185/orig -> origin/gh/aorenste/185/orig 2025-01-24T02:40:36.8198040Z * [new branch] gh/aorenste/186/base -> origin/gh/aorenste/186/base 2025-01-24T02:40:36.8199850Z * [new branch] gh/aorenste/186/head -> origin/gh/aorenste/186/head 2025-01-24T02:40:36.8201750Z * [new branch] gh/aorenste/186/orig -> origin/gh/aorenste/186/orig 2025-01-24T02:40:36.8204330Z * [new branch] gh/aorenste/187/base -> origin/gh/aorenste/187/base 2025-01-24T02:40:36.8206190Z * [new branch] gh/aorenste/187/head -> origin/gh/aorenste/187/head 2025-01-24T02:40:36.8208060Z * [new branch] gh/aorenste/187/orig -> origin/gh/aorenste/187/orig 2025-01-24T02:40:36.8210670Z * [new branch] gh/aorenste/188/base -> origin/gh/aorenste/188/base 2025-01-24T02:40:36.8212400Z * [new branch] gh/aorenste/188/head -> origin/gh/aorenste/188/head 2025-01-24T02:40:36.8214350Z * [new branch] gh/aorenste/188/orig -> origin/gh/aorenste/188/orig 2025-01-24T02:40:36.8217090Z * [new branch] gh/aorenste/189/base -> origin/gh/aorenste/189/base 2025-01-24T02:40:36.8218720Z * [new branch] gh/aorenste/189/head -> origin/gh/aorenste/189/head 2025-01-24T02:40:36.8220620Z * [new branch] gh/aorenste/189/orig -> origin/gh/aorenste/189/orig 2025-01-24T02:40:36.8226660Z * [new branch] gh/aorenste/190/base -> origin/gh/aorenste/190/base 2025-01-24T02:40:36.8227280Z * [new branch] gh/aorenste/190/head -> origin/gh/aorenste/190/head 2025-01-24T02:40:36.8227800Z * [new branch] gh/aorenste/190/orig -> origin/gh/aorenste/190/orig 2025-01-24T02:40:36.8229120Z * [new branch] gh/aorenste/191/base -> origin/gh/aorenste/191/base 2025-01-24T02:40:36.8231220Z * [new branch] gh/aorenste/191/head -> origin/gh/aorenste/191/head 2025-01-24T02:40:36.8232970Z * [new branch] gh/aorenste/191/orig -> origin/gh/aorenste/191/orig 2025-01-24T02:40:36.8235510Z * [new branch] gh/aorenste/192/base -> origin/gh/aorenste/192/base 2025-01-24T02:40:36.8237350Z * [new branch] gh/aorenste/192/head -> origin/gh/aorenste/192/head 2025-01-24T02:40:36.8239060Z * [new branch] gh/aorenste/192/orig -> origin/gh/aorenste/192/orig 2025-01-24T02:40:36.8241560Z * [new branch] gh/aorenste/193/base -> origin/gh/aorenste/193/base 2025-01-24T02:40:36.8243340Z * [new branch] gh/aorenste/193/head -> origin/gh/aorenste/193/head 2025-01-24T02:40:36.8245270Z * [new branch] gh/aorenste/193/orig -> origin/gh/aorenste/193/orig 2025-01-24T02:40:36.8247430Z * [new branch] gh/aorenste/194/base -> origin/gh/aorenste/194/base 2025-01-24T02:40:36.8249280Z * [new branch] gh/aorenste/194/head -> origin/gh/aorenste/194/head 2025-01-24T02:40:36.8251490Z * [new branch] gh/aorenste/194/orig -> origin/gh/aorenste/194/orig 2025-01-24T02:40:36.8253750Z * [new branch] gh/aorenste/195/base -> origin/gh/aorenste/195/base 2025-01-24T02:40:36.8255750Z * [new branch] gh/aorenste/195/head -> origin/gh/aorenste/195/head 2025-01-24T02:40:36.8257450Z * [new branch] gh/aorenste/195/orig -> origin/gh/aorenste/195/orig 2025-01-24T02:40:36.8259530Z * [new branch] gh/aorenste/196/base -> origin/gh/aorenste/196/base 2025-01-24T02:40:36.8261270Z * [new branch] gh/aorenste/196/head -> origin/gh/aorenste/196/head 2025-01-24T02:40:36.8263170Z * [new branch] gh/aorenste/196/orig -> origin/gh/aorenste/196/orig 2025-01-24T02:40:36.8266070Z * [new branch] gh/aorenste/197/base -> origin/gh/aorenste/197/base 2025-01-24T02:40:36.8267800Z * [new branch] gh/aorenste/197/head -> origin/gh/aorenste/197/head 2025-01-24T02:40:36.8269490Z * [new branch] gh/aorenste/197/orig -> origin/gh/aorenste/197/orig 2025-01-24T02:40:36.8272170Z * [new branch] gh/aorenste/198/base -> origin/gh/aorenste/198/base 2025-01-24T02:40:36.8274020Z * [new branch] gh/aorenste/198/head -> origin/gh/aorenste/198/head 2025-01-24T02:40:36.8275930Z * [new branch] gh/aorenste/198/orig -> origin/gh/aorenste/198/orig 2025-01-24T02:40:36.8278310Z * [new branch] gh/aorenste/199/base -> origin/gh/aorenste/199/base 2025-01-24T02:40:36.8279800Z * [new branch] gh/aorenste/199/head -> origin/gh/aorenste/199/head 2025-01-24T02:40:36.8281860Z * [new branch] gh/aorenste/199/orig -> origin/gh/aorenste/199/orig 2025-01-24T02:40:36.8284280Z * [new branch] gh/aorenste/200/base -> origin/gh/aorenste/200/base 2025-01-24T02:40:36.8286170Z * [new branch] gh/aorenste/200/head -> origin/gh/aorenste/200/head 2025-01-24T02:40:36.8288190Z * [new branch] gh/aorenste/200/orig -> origin/gh/aorenste/200/orig 2025-01-24T02:40:36.8290410Z * [new branch] gh/aorenste/201/base -> origin/gh/aorenste/201/base 2025-01-24T02:40:36.8292230Z * [new branch] gh/aorenste/201/head -> origin/gh/aorenste/201/head 2025-01-24T02:40:36.8293760Z * [new branch] gh/aorenste/201/orig -> origin/gh/aorenste/201/orig 2025-01-24T02:40:36.8297050Z * [new branch] gh/aorenste/202/base -> origin/gh/aorenste/202/base 2025-01-24T02:40:36.8299480Z * [new branch] gh/aorenste/202/head -> origin/gh/aorenste/202/head 2025-01-24T02:40:36.8301210Z * [new branch] gh/aorenste/202/orig -> origin/gh/aorenste/202/orig 2025-01-24T02:40:36.8303760Z * [new branch] gh/aorenste/203/base -> origin/gh/aorenste/203/base 2025-01-24T02:40:36.8305580Z * [new branch] gh/aorenste/203/head -> origin/gh/aorenste/203/head 2025-01-24T02:40:36.8307460Z * [new branch] gh/aorenste/203/orig -> origin/gh/aorenste/203/orig 2025-01-24T02:40:36.8309990Z * [new branch] gh/aorenste/204/base -> origin/gh/aorenste/204/base 2025-01-24T02:40:36.8311820Z * [new branch] gh/aorenste/204/head -> origin/gh/aorenste/204/head 2025-01-24T02:40:36.8313770Z * [new branch] gh/aorenste/204/orig -> origin/gh/aorenste/204/orig 2025-01-24T02:40:36.8316860Z * [new branch] gh/avikchaudhuri/39/base -> origin/gh/avikchaudhuri/39/base 2025-01-24T02:40:36.8318790Z * [new branch] gh/avikchaudhuri/39/head -> origin/gh/avikchaudhuri/39/head 2025-01-24T02:40:36.8320720Z * [new branch] gh/avikchaudhuri/39/orig -> origin/gh/avikchaudhuri/39/orig 2025-01-24T02:40:36.8323520Z * [new branch] gh/avikchaudhuri/44/base -> origin/gh/avikchaudhuri/44/base 2025-01-24T02:40:36.8325250Z * [new branch] gh/avikchaudhuri/44/head -> origin/gh/avikchaudhuri/44/head 2025-01-24T02:40:36.8327290Z * [new branch] gh/avikchaudhuri/44/orig -> origin/gh/avikchaudhuri/44/orig 2025-01-24T02:40:36.8329420Z * [new branch] gh/avikchaudhuri/45/base -> origin/gh/avikchaudhuri/45/base 2025-01-24T02:40:36.8331280Z * [new branch] gh/avikchaudhuri/45/head -> origin/gh/avikchaudhuri/45/head 2025-01-24T02:40:36.8333370Z * [new branch] gh/avikchaudhuri/45/orig -> origin/gh/avikchaudhuri/45/orig 2025-01-24T02:40:36.8336010Z * [new branch] gh/avikchaudhuri/46/base -> origin/gh/avikchaudhuri/46/base 2025-01-24T02:40:36.8337600Z * [new branch] gh/avikchaudhuri/46/head -> origin/gh/avikchaudhuri/46/head 2025-01-24T02:40:36.8339400Z * [new branch] gh/avikchaudhuri/46/orig -> origin/gh/avikchaudhuri/46/orig 2025-01-24T02:40:36.8342070Z * [new branch] gh/avikchaudhuri/47/base -> origin/gh/avikchaudhuri/47/base 2025-01-24T02:40:36.8343760Z * [new branch] gh/avikchaudhuri/47/head -> origin/gh/avikchaudhuri/47/head 2025-01-24T02:40:36.8345520Z * [new branch] gh/avikchaudhuri/47/orig -> origin/gh/avikchaudhuri/47/orig 2025-01-24T02:40:36.8348330Z * [new branch] gh/avikchaudhuri/48/base -> origin/gh/avikchaudhuri/48/base 2025-01-24T02:40:36.8350040Z * [new branch] gh/avikchaudhuri/48/head -> origin/gh/avikchaudhuri/48/head 2025-01-24T02:40:36.8352340Z * [new branch] gh/avikchaudhuri/48/orig -> origin/gh/avikchaudhuri/48/orig 2025-01-24T02:40:36.8354670Z * [new branch] gh/avikchaudhuri/49/base -> origin/gh/avikchaudhuri/49/base 2025-01-24T02:40:36.8356560Z * [new branch] gh/avikchaudhuri/49/head -> origin/gh/avikchaudhuri/49/head 2025-01-24T02:40:36.8358310Z * [new branch] gh/avikchaudhuri/49/orig -> origin/gh/avikchaudhuri/49/orig 2025-01-24T02:40:36.8361310Z * [new branch] gh/awgu/431/base -> origin/gh/awgu/431/base 2025-01-24T02:40:36.8363020Z * [new branch] gh/awgu/431/head -> origin/gh/awgu/431/head 2025-01-24T02:40:36.8364860Z * [new branch] gh/awgu/431/orig -> origin/gh/awgu/431/orig 2025-01-24T02:40:36.8367480Z * [new branch] gh/awgu/432/base -> origin/gh/awgu/432/base 2025-01-24T02:40:36.8369450Z * [new branch] gh/awgu/432/head -> origin/gh/awgu/432/head 2025-01-24T02:40:36.8371320Z * [new branch] gh/awgu/432/orig -> origin/gh/awgu/432/orig 2025-01-24T02:40:36.8373840Z * [new branch] gh/awgu/434/base -> origin/gh/awgu/434/base 2025-01-24T02:40:36.8375840Z * [new branch] gh/awgu/434/head -> origin/gh/awgu/434/head 2025-01-24T02:40:36.8377880Z * [new branch] gh/awgu/434/orig -> origin/gh/awgu/434/orig 2025-01-24T02:40:36.8380240Z * [new branch] gh/awgu/437/base -> origin/gh/awgu/437/base 2025-01-24T02:40:36.8381860Z * [new branch] gh/awgu/437/head -> origin/gh/awgu/437/head 2025-01-24T02:40:36.8383690Z * [new branch] gh/awgu/437/orig -> origin/gh/awgu/437/orig 2025-01-24T02:40:36.8386520Z * [new branch] gh/awgu/442/base -> origin/gh/awgu/442/base 2025-01-24T02:40:36.8388400Z * [new branch] gh/awgu/442/head -> origin/gh/awgu/442/head 2025-01-24T02:40:36.8390000Z * [new branch] gh/awgu/442/orig -> origin/gh/awgu/442/orig 2025-01-24T02:40:36.8392690Z * [new branch] gh/awgu/443/base -> origin/gh/awgu/443/base 2025-01-24T02:40:36.8394580Z * [new branch] gh/awgu/443/head -> origin/gh/awgu/443/head 2025-01-24T02:40:36.8396110Z * [new branch] gh/awgu/443/orig -> origin/gh/awgu/443/orig 2025-01-24T02:40:36.8399220Z * [new branch] gh/awgu/647/base -> origin/gh/awgu/647/base 2025-01-24T02:40:36.8401170Z * [new branch] gh/awgu/647/head -> origin/gh/awgu/647/head 2025-01-24T02:40:36.8403060Z * [new branch] gh/awgu/647/orig -> origin/gh/awgu/647/orig 2025-01-24T02:40:36.8405450Z * [new branch] gh/awgu/657/base -> origin/gh/awgu/657/base 2025-01-24T02:40:36.8407300Z * [new branch] gh/awgu/657/head -> origin/gh/awgu/657/head 2025-01-24T02:40:36.8409160Z * [new branch] gh/awgu/657/orig -> origin/gh/awgu/657/orig 2025-01-24T02:40:36.8411610Z * [new branch] gh/awgu/666/base -> origin/gh/awgu/666/base 2025-01-24T02:40:36.8413520Z * [new branch] gh/awgu/666/head -> origin/gh/awgu/666/head 2025-01-24T02:40:36.8419900Z * [new branch] gh/awgu/666/orig -> origin/gh/awgu/666/orig 2025-01-24T02:40:36.8421020Z * [new branch] gh/awgu/667/base -> origin/gh/awgu/667/base 2025-01-24T02:40:36.8421930Z * [new branch] gh/awgu/667/head -> origin/gh/awgu/667/head 2025-01-24T02:40:36.8422420Z * [new branch] gh/awgu/667/orig -> origin/gh/awgu/667/orig 2025-01-24T02:40:36.8424420Z * [new branch] gh/awgu/668/base -> origin/gh/awgu/668/base 2025-01-24T02:40:36.8425880Z * [new branch] gh/awgu/668/head -> origin/gh/awgu/668/head 2025-01-24T02:40:36.8427920Z * [new branch] gh/awgu/668/orig -> origin/gh/awgu/668/orig 2025-01-24T02:40:36.8430270Z * [new branch] gh/awgu/669/base -> origin/gh/awgu/669/base 2025-01-24T02:40:36.8432160Z * [new branch] gh/awgu/669/head -> origin/gh/awgu/669/head 2025-01-24T02:40:36.8434290Z * [new branch] gh/awgu/669/orig -> origin/gh/awgu/669/orig 2025-01-24T02:40:36.8436890Z * [new branch] gh/bdhirsh/588/base -> origin/gh/bdhirsh/588/base 2025-01-24T02:40:36.8438690Z * [new branch] gh/bdhirsh/588/head -> origin/gh/bdhirsh/588/head 2025-01-24T02:40:36.8440780Z * [new branch] gh/bdhirsh/588/orig -> origin/gh/bdhirsh/588/orig 2025-01-24T02:40:36.8442980Z * [new branch] gh/bdhirsh/604/base -> origin/gh/bdhirsh/604/base 2025-01-24T02:40:36.8445080Z * [new branch] gh/bdhirsh/604/head -> origin/gh/bdhirsh/604/head 2025-01-24T02:40:36.8446870Z * [new branch] gh/bdhirsh/604/orig -> origin/gh/bdhirsh/604/orig 2025-01-24T02:40:36.8449510Z * [new branch] gh/bdhirsh/617/base -> origin/gh/bdhirsh/617/base 2025-01-24T02:40:36.8451510Z * [new branch] gh/bdhirsh/617/head -> origin/gh/bdhirsh/617/head 2025-01-24T02:40:36.8453250Z * [new branch] gh/bdhirsh/617/orig -> origin/gh/bdhirsh/617/orig 2025-01-24T02:40:36.8455910Z * [new branch] gh/bdhirsh/619/base -> origin/gh/bdhirsh/619/base 2025-01-24T02:40:36.8457460Z * [new branch] gh/bdhirsh/619/head -> origin/gh/bdhirsh/619/head 2025-01-24T02:40:36.8459440Z * [new branch] gh/bdhirsh/619/orig -> origin/gh/bdhirsh/619/orig 2025-01-24T02:40:36.8462140Z * [new branch] gh/bdhirsh/620/base -> origin/gh/bdhirsh/620/base 2025-01-24T02:40:36.8463980Z * [new branch] gh/bdhirsh/620/head -> origin/gh/bdhirsh/620/head 2025-01-24T02:40:36.8465840Z * [new branch] gh/bdhirsh/620/orig -> origin/gh/bdhirsh/620/orig 2025-01-24T02:40:36.8468400Z * [new branch] gh/bdhirsh/626/base -> origin/gh/bdhirsh/626/base 2025-01-24T02:40:36.8470010Z * [new branch] gh/bdhirsh/626/head -> origin/gh/bdhirsh/626/head 2025-01-24T02:40:36.8472040Z * [new branch] gh/bdhirsh/626/orig -> origin/gh/bdhirsh/626/orig 2025-01-24T02:40:36.8474630Z * [new branch] gh/bdhirsh/627/base -> origin/gh/bdhirsh/627/base 2025-01-24T02:40:36.8476600Z * [new branch] gh/bdhirsh/627/head -> origin/gh/bdhirsh/627/head 2025-01-24T02:40:36.8478530Z * [new branch] gh/bdhirsh/627/orig -> origin/gh/bdhirsh/627/orig 2025-01-24T02:40:36.8480850Z * [new branch] gh/bdhirsh/628/base -> origin/gh/bdhirsh/628/base 2025-01-24T02:40:36.8482790Z * [new branch] gh/bdhirsh/628/head -> origin/gh/bdhirsh/628/head 2025-01-24T02:40:36.8484670Z * [new branch] gh/bdhirsh/628/orig -> origin/gh/bdhirsh/628/orig 2025-01-24T02:40:36.8486990Z * [new branch] gh/bdhirsh/629/base -> origin/gh/bdhirsh/629/base 2025-01-24T02:40:36.8488820Z * [new branch] gh/bdhirsh/629/head -> origin/gh/bdhirsh/629/head 2025-01-24T02:40:36.8490820Z * [new branch] gh/bdhirsh/629/orig -> origin/gh/bdhirsh/629/orig 2025-01-24T02:40:36.8493430Z * [new branch] gh/bdhirsh/630/base -> origin/gh/bdhirsh/630/base 2025-01-24T02:40:36.8494910Z * [new branch] gh/bdhirsh/630/head -> origin/gh/bdhirsh/630/head 2025-01-24T02:40:36.8497070Z * [new branch] gh/bdhirsh/630/orig -> origin/gh/bdhirsh/630/orig 2025-01-24T02:40:36.8499190Z * [new branch] gh/bdhirsh/634/base -> origin/gh/bdhirsh/634/base 2025-01-24T02:40:36.8501750Z * [new branch] gh/bdhirsh/634/head -> origin/gh/bdhirsh/634/head 2025-01-24T02:40:36.8503660Z * [new branch] gh/bdhirsh/634/orig -> origin/gh/bdhirsh/634/orig 2025-01-24T02:40:36.8506420Z * [new branch] gh/bdhirsh/635/base -> origin/gh/bdhirsh/635/base 2025-01-24T02:40:36.8508410Z * [new branch] gh/bdhirsh/635/head -> origin/gh/bdhirsh/635/head 2025-01-24T02:40:36.8510030Z * [new branch] gh/bdhirsh/635/orig -> origin/gh/bdhirsh/635/orig 2025-01-24T02:40:36.8512610Z * [new branch] gh/bdhirsh/636/base -> origin/gh/bdhirsh/636/base 2025-01-24T02:40:36.8514270Z * [new branch] gh/bdhirsh/636/head -> origin/gh/bdhirsh/636/head 2025-01-24T02:40:36.8516510Z * [new branch] gh/bdhirsh/636/orig -> origin/gh/bdhirsh/636/orig 2025-01-24T02:40:36.8518870Z * [new branch] gh/bdhirsh/637/base -> origin/gh/bdhirsh/637/base 2025-01-24T02:40:36.8520740Z * [new branch] gh/bdhirsh/637/head -> origin/gh/bdhirsh/637/head 2025-01-24T02:40:36.8522560Z * [new branch] gh/bdhirsh/637/orig -> origin/gh/bdhirsh/637/orig 2025-01-24T02:40:36.8525360Z * [new branch] gh/benjaminglass1/35/base -> origin/gh/benjaminglass1/35/base 2025-01-24T02:40:36.8527290Z * [new branch] gh/benjaminglass1/35/head -> origin/gh/benjaminglass1/35/head 2025-01-24T02:40:36.8529510Z * [new branch] gh/benjaminglass1/35/orig -> origin/gh/benjaminglass1/35/orig 2025-01-24T02:40:36.8531630Z * [new branch] gh/benjaminglass1/41/base -> origin/gh/benjaminglass1/41/base 2025-01-24T02:40:36.8533520Z * [new branch] gh/benjaminglass1/41/head -> origin/gh/benjaminglass1/41/head 2025-01-24T02:40:36.8535570Z * [new branch] gh/benjaminglass1/41/orig -> origin/gh/benjaminglass1/41/orig 2025-01-24T02:40:36.8538280Z * [new branch] gh/benjaminglass1/42/base -> origin/gh/benjaminglass1/42/base 2025-01-24T02:40:36.8539990Z * [new branch] gh/benjaminglass1/42/head -> origin/gh/benjaminglass1/42/head 2025-01-24T02:40:36.8541980Z * [new branch] gh/benjaminglass1/42/orig -> origin/gh/benjaminglass1/42/orig 2025-01-24T02:40:36.8544490Z * [new branch] gh/benjaminglass1/44/base -> origin/gh/benjaminglass1/44/base 2025-01-24T02:40:36.8546370Z * [new branch] gh/benjaminglass1/44/head -> origin/gh/benjaminglass1/44/head 2025-01-24T02:40:36.8548060Z * [new branch] gh/benjaminglass1/44/orig -> origin/gh/benjaminglass1/44/orig 2025-01-24T02:40:36.8550680Z * [new branch] gh/benjaminglass1/45/base -> origin/gh/benjaminglass1/45/base 2025-01-24T02:40:36.8552490Z * [new branch] gh/benjaminglass1/45/head -> origin/gh/benjaminglass1/45/head 2025-01-24T02:40:36.8554210Z * [new branch] gh/benjaminglass1/45/orig -> origin/gh/benjaminglass1/45/orig 2025-01-24T02:40:36.8556770Z * [new branch] gh/benjaminglass1/46/base -> origin/gh/benjaminglass1/46/base 2025-01-24T02:40:36.8558500Z * [new branch] gh/benjaminglass1/46/head -> origin/gh/benjaminglass1/46/head 2025-01-24T02:40:36.8560630Z * [new branch] gh/benjaminglass1/46/orig -> origin/gh/benjaminglass1/46/orig 2025-01-24T02:40:36.8562840Z * [new branch] gh/benjaminglass1/47/base -> origin/gh/benjaminglass1/47/base 2025-01-24T02:40:36.8564990Z * [new branch] gh/benjaminglass1/47/head -> origin/gh/benjaminglass1/47/head 2025-01-24T02:40:36.8566710Z * [new branch] gh/benjaminglass1/47/orig -> origin/gh/benjaminglass1/47/orig 2025-01-24T02:40:36.8569040Z * [new branch] gh/benjaminglass1/48/base -> origin/gh/benjaminglass1/48/base 2025-01-24T02:40:36.8570950Z * [new branch] gh/benjaminglass1/48/head -> origin/gh/benjaminglass1/48/head 2025-01-24T02:40:36.8572840Z * [new branch] gh/benjaminglass1/48/orig -> origin/gh/benjaminglass1/48/orig 2025-01-24T02:40:36.8575170Z * [new branch] gh/benjaminglass1/49/base -> origin/gh/benjaminglass1/49/base 2025-01-24T02:40:36.8577090Z * [new branch] gh/benjaminglass1/49/head -> origin/gh/benjaminglass1/49/head 2025-01-24T02:40:36.8579230Z * [new branch] gh/benjaminglass1/49/orig -> origin/gh/benjaminglass1/49/orig 2025-01-24T02:40:36.8581560Z * [new branch] gh/benjaminglass1/50/base -> origin/gh/benjaminglass1/50/base 2025-01-24T02:40:36.8584010Z * [new branch] gh/benjaminglass1/51/base -> origin/gh/benjaminglass1/51/base 2025-01-24T02:40:36.8585510Z * [new branch] gh/benjaminglass1/51/head -> origin/gh/benjaminglass1/51/head 2025-01-24T02:40:36.8587750Z * [new branch] gh/benjaminglass1/51/orig -> origin/gh/benjaminglass1/51/orig 2025-01-24T02:40:36.8590140Z * [new branch] gh/benjaminglass1/52/base -> origin/gh/benjaminglass1/52/base 2025-01-24T02:40:36.8592070Z * [new branch] gh/benjaminglass1/52/head -> origin/gh/benjaminglass1/52/head 2025-01-24T02:40:36.8593960Z * [new branch] gh/benjaminglass1/52/orig -> origin/gh/benjaminglass1/52/orig 2025-01-24T02:40:36.8596350Z * [new branch] gh/benjaminglass1/53/base -> origin/gh/benjaminglass1/53/base 2025-01-24T02:40:36.8598170Z * [new branch] gh/benjaminglass1/53/head -> origin/gh/benjaminglass1/53/head 2025-01-24T02:40:36.8600180Z * [new branch] gh/benjaminglass1/53/orig -> origin/gh/benjaminglass1/53/orig 2025-01-24T02:40:36.8602630Z * [new branch] gh/benjaminglass1/54/base -> origin/gh/benjaminglass1/54/base 2025-01-24T02:40:36.8604160Z * [new branch] gh/benjaminglass1/54/head -> origin/gh/benjaminglass1/54/head 2025-01-24T02:40:36.8606230Z * [new branch] gh/benjaminglass1/54/orig -> origin/gh/benjaminglass1/54/orig 2025-01-24T02:40:36.8611340Z * [new branch] gh/benjaminglass1/55/base -> origin/gh/benjaminglass1/55/base 2025-01-24T02:40:36.8611940Z * [new branch] gh/benjaminglass1/55/head -> origin/gh/benjaminglass1/55/head 2025-01-24T02:40:36.8612520Z * [new branch] gh/benjaminglass1/55/orig -> origin/gh/benjaminglass1/55/orig 2025-01-24T02:40:36.8614640Z * [new branch] gh/benjaminglass1/56/base -> origin/gh/benjaminglass1/56/base 2025-01-24T02:40:36.8616780Z * [new branch] gh/benjaminglass1/56/head -> origin/gh/benjaminglass1/56/head 2025-01-24T02:40:36.8618730Z * [new branch] gh/benjaminglass1/56/orig -> origin/gh/benjaminglass1/56/orig 2025-01-24T02:40:36.8620860Z * [new branch] gh/benjaminglass1/57/base -> origin/gh/benjaminglass1/57/base 2025-01-24T02:40:36.8622810Z * [new branch] gh/benjaminglass1/57/head -> origin/gh/benjaminglass1/57/head 2025-01-24T02:40:36.8624780Z * [new branch] gh/benjaminglass1/57/orig -> origin/gh/benjaminglass1/57/orig 2025-01-24T02:40:36.8627950Z * [new branch] gh/bertmaher/3/base -> origin/gh/bertmaher/3/base 2025-01-24T02:40:36.8629670Z * [new branch] gh/bertmaher/3/head -> origin/gh/bertmaher/3/head 2025-01-24T02:40:36.8631480Z * [new branch] gh/bertmaher/3/orig -> origin/gh/bertmaher/3/orig 2025-01-24T02:40:36.8633940Z * [new branch] gh/bertmaher/4/base -> origin/gh/bertmaher/4/base 2025-01-24T02:40:36.8635700Z * [new branch] gh/bertmaher/4/head -> origin/gh/bertmaher/4/head 2025-01-24T02:40:36.8637770Z * [new branch] gh/bertmaher/4/orig -> origin/gh/bertmaher/4/orig 2025-01-24T02:40:36.8640700Z * [new branch] gh/bigfootjon/1/base -> origin/gh/bigfootjon/1/base 2025-01-24T02:40:36.8642550Z * [new branch] gh/bigfootjon/1/head -> origin/gh/bigfootjon/1/head 2025-01-24T02:40:36.8645000Z * [new branch] gh/bigfootjon/2/base -> origin/gh/bigfootjon/2/base 2025-01-24T02:40:36.8646610Z * [new branch] gh/bigfootjon/2/orig -> origin/gh/bigfootjon/2/orig 2025-01-24T02:40:36.8649590Z * [new branch] gh/blzheng/3/base -> origin/gh/blzheng/3/base 2025-01-24T02:40:36.8651550Z * [new branch] gh/blzheng/3/head -> origin/gh/blzheng/3/head 2025-01-24T02:40:36.8653360Z * [new branch] gh/blzheng/3/orig -> origin/gh/blzheng/3/orig 2025-01-24T02:40:36.8656430Z * [new branch] gh/bobrenjc93/119/base -> origin/gh/bobrenjc93/119/base 2025-01-24T02:40:36.8658640Z * [new branch] gh/bobrenjc93/119/head -> origin/gh/bobrenjc93/119/head 2025-01-24T02:40:36.8660170Z * [new branch] gh/bobrenjc93/119/orig -> origin/gh/bobrenjc93/119/orig 2025-01-24T02:40:36.8662680Z * [new branch] gh/bobrenjc93/146/base -> origin/gh/bobrenjc93/146/base 2025-01-24T02:40:36.8664550Z * [new branch] gh/bobrenjc93/146/head -> origin/gh/bobrenjc93/146/head 2025-01-24T02:40:36.8666490Z * [new branch] gh/bobrenjc93/146/orig -> origin/gh/bobrenjc93/146/orig 2025-01-24T02:40:36.8668920Z * [new branch] gh/bobrenjc93/183/base -> origin/gh/bobrenjc93/183/base 2025-01-24T02:40:36.8670740Z * [new branch] gh/bobrenjc93/183/head -> origin/gh/bobrenjc93/183/head 2025-01-24T02:40:36.8672250Z * [new branch] gh/bobrenjc93/183/orig -> origin/gh/bobrenjc93/183/orig 2025-01-24T02:40:36.8675030Z * [new branch] gh/bobrenjc93/187/base -> origin/gh/bobrenjc93/187/base 2025-01-24T02:40:36.8676510Z * [new branch] gh/bobrenjc93/187/head -> origin/gh/bobrenjc93/187/head 2025-01-24T02:40:36.8678410Z * [new branch] gh/bobrenjc93/187/orig -> origin/gh/bobrenjc93/187/orig 2025-01-24T02:40:36.8680890Z * [new branch] gh/bobrenjc93/191/base -> origin/gh/bobrenjc93/191/base 2025-01-24T02:40:36.8682740Z * [new branch] gh/bobrenjc93/191/head -> origin/gh/bobrenjc93/191/head 2025-01-24T02:40:36.8684550Z * [new branch] gh/bobrenjc93/191/orig -> origin/gh/bobrenjc93/191/orig 2025-01-24T02:40:36.8687090Z * [new branch] gh/bobrenjc93/192/base -> origin/gh/bobrenjc93/192/base 2025-01-24T02:40:36.8689230Z * [new branch] gh/bobrenjc93/192/head -> origin/gh/bobrenjc93/192/head 2025-01-24T02:40:36.8690930Z * [new branch] gh/bobrenjc93/192/orig -> origin/gh/bobrenjc93/192/orig 2025-01-24T02:40:36.8694170Z * [new branch] gh/bobrenjc93/193/base -> origin/gh/bobrenjc93/193/base 2025-01-24T02:40:36.8695900Z * [new branch] gh/bobrenjc93/193/head -> origin/gh/bobrenjc93/193/head 2025-01-24T02:40:36.8698130Z * [new branch] gh/bobrenjc93/193/orig -> origin/gh/bobrenjc93/193/orig 2025-01-24T02:40:36.8700790Z * [new branch] gh/bobrenjc93/194/base -> origin/gh/bobrenjc93/194/base 2025-01-24T02:40:36.8702890Z * [new branch] gh/bobrenjc93/194/head -> origin/gh/bobrenjc93/194/head 2025-01-24T02:40:36.8704720Z * [new branch] gh/bobrenjc93/194/orig -> origin/gh/bobrenjc93/194/orig 2025-01-24T02:40:36.8707170Z * [new branch] gh/bobrenjc93/195/base -> origin/gh/bobrenjc93/195/base 2025-01-24T02:40:36.8709020Z * [new branch] gh/bobrenjc93/195/head -> origin/gh/bobrenjc93/195/head 2025-01-24T02:40:36.8710820Z * [new branch] gh/bobrenjc93/195/orig -> origin/gh/bobrenjc93/195/orig 2025-01-24T02:40:36.8713400Z * [new branch] gh/bobrenjc93/196/base -> origin/gh/bobrenjc93/196/base 2025-01-24T02:40:36.8715130Z * [new branch] gh/bobrenjc93/196/head -> origin/gh/bobrenjc93/196/head 2025-01-24T02:40:36.8716980Z * [new branch] gh/bobrenjc93/196/orig -> origin/gh/bobrenjc93/196/orig 2025-01-24T02:40:36.8719400Z * [new branch] gh/bobrenjc93/197/base -> origin/gh/bobrenjc93/197/base 2025-01-24T02:40:36.8720900Z * [new branch] gh/bobrenjc93/197/head -> origin/gh/bobrenjc93/197/head 2025-01-24T02:40:36.8722800Z * [new branch] gh/bobrenjc93/197/orig -> origin/gh/bobrenjc93/197/orig 2025-01-24T02:40:36.8725340Z * [new branch] gh/bobrenjc93/198/base -> origin/gh/bobrenjc93/198/base 2025-01-24T02:40:36.8727160Z * [new branch] gh/bobrenjc93/198/head -> origin/gh/bobrenjc93/198/head 2025-01-24T02:40:36.8728960Z * [new branch] gh/bobrenjc93/198/orig -> origin/gh/bobrenjc93/198/orig 2025-01-24T02:40:36.8731470Z * [new branch] gh/bobrenjc93/199/base -> origin/gh/bobrenjc93/199/base 2025-01-24T02:40:36.8733360Z * [new branch] gh/bobrenjc93/199/head -> origin/gh/bobrenjc93/199/head 2025-01-24T02:40:36.8735200Z * [new branch] gh/bobrenjc93/199/orig -> origin/gh/bobrenjc93/199/orig 2025-01-24T02:40:36.8737550Z * [new branch] gh/bobrenjc93/200/base -> origin/gh/bobrenjc93/200/base 2025-01-24T02:40:36.8739500Z * [new branch] gh/bobrenjc93/200/head -> origin/gh/bobrenjc93/200/head 2025-01-24T02:40:36.8740890Z * [new branch] gh/bobrenjc93/200/orig -> origin/gh/bobrenjc93/200/orig 2025-01-24T02:40:36.8743540Z * [new branch] gh/bobrenjc93/201/base -> origin/gh/bobrenjc93/201/base 2025-01-24T02:40:36.8745170Z * [new branch] gh/bobrenjc93/201/head -> origin/gh/bobrenjc93/201/head 2025-01-24T02:40:36.8747400Z * [new branch] gh/bobrenjc93/201/orig -> origin/gh/bobrenjc93/201/orig 2025-01-24T02:40:36.8749720Z * [new branch] gh/bobrenjc93/202/base -> origin/gh/bobrenjc93/202/base 2025-01-24T02:40:36.8751450Z * [new branch] gh/bobrenjc93/202/head -> origin/gh/bobrenjc93/202/head 2025-01-24T02:40:36.8753330Z * [new branch] gh/bobrenjc93/202/orig -> origin/gh/bobrenjc93/202/orig 2025-01-24T02:40:36.8755770Z * [new branch] gh/bobrenjc93/203/base -> origin/gh/bobrenjc93/203/base 2025-01-24T02:40:36.8757580Z * [new branch] gh/bobrenjc93/203/head -> origin/gh/bobrenjc93/203/head 2025-01-24T02:40:36.8759460Z * [new branch] gh/bobrenjc93/203/orig -> origin/gh/bobrenjc93/203/orig 2025-01-24T02:40:36.8761850Z * [new branch] gh/bobrenjc93/204/base -> origin/gh/bobrenjc93/204/base 2025-01-24T02:40:36.8763920Z * [new branch] gh/bobrenjc93/204/head -> origin/gh/bobrenjc93/204/head 2025-01-24T02:40:36.8765760Z * [new branch] gh/bobrenjc93/204/orig -> origin/gh/bobrenjc93/204/orig 2025-01-24T02:40:36.8768160Z * [new branch] gh/bobrenjc93/205/base -> origin/gh/bobrenjc93/205/base 2025-01-24T02:40:36.8770220Z * [new branch] gh/bobrenjc93/205/head -> origin/gh/bobrenjc93/205/head 2025-01-24T02:40:36.8772080Z * [new branch] gh/bobrenjc93/205/orig -> origin/gh/bobrenjc93/205/orig 2025-01-24T02:40:36.8774470Z * [new branch] gh/bobrenjc93/206/base -> origin/gh/bobrenjc93/206/base 2025-01-24T02:40:36.8776440Z * [new branch] gh/bobrenjc93/206/head -> origin/gh/bobrenjc93/206/head 2025-01-24T02:40:36.8778180Z * [new branch] gh/bobrenjc93/206/orig -> origin/gh/bobrenjc93/206/orig 2025-01-24T02:40:36.8780600Z * [new branch] gh/bobrenjc93/207/base -> origin/gh/bobrenjc93/207/base 2025-01-24T02:40:36.8782520Z * [new branch] gh/bobrenjc93/207/head -> origin/gh/bobrenjc93/207/head 2025-01-24T02:40:36.8784320Z * [new branch] gh/bobrenjc93/207/orig -> origin/gh/bobrenjc93/207/orig 2025-01-24T02:40:36.8786780Z * [new branch] gh/bobrenjc93/208/base -> origin/gh/bobrenjc93/208/base 2025-01-24T02:40:36.8788620Z * [new branch] gh/bobrenjc93/208/head -> origin/gh/bobrenjc93/208/head 2025-01-24T02:40:36.8790150Z * [new branch] gh/bobrenjc93/208/orig -> origin/gh/bobrenjc93/208/orig 2025-01-24T02:40:36.8792610Z * [new branch] gh/bobrenjc93/209/base -> origin/gh/bobrenjc93/209/base 2025-01-24T02:40:36.8794300Z * [new branch] gh/bobrenjc93/209/head -> origin/gh/bobrenjc93/209/head 2025-01-24T02:40:36.8796400Z * [new branch] gh/bobrenjc93/209/orig -> origin/gh/bobrenjc93/209/orig 2025-01-24T02:40:36.8799270Z * [new branch] gh/bobrenjc93/210/base -> origin/gh/bobrenjc93/210/base 2025-01-24T02:40:36.8800800Z * [new branch] gh/bobrenjc93/210/head -> origin/gh/bobrenjc93/210/head 2025-01-24T02:40:36.8802750Z * [new branch] gh/bobrenjc93/210/orig -> origin/gh/bobrenjc93/210/orig 2025-01-24T02:40:36.8805190Z * [new branch] gh/bobrenjc93/211/base -> origin/gh/bobrenjc93/211/base 2025-01-24T02:40:36.8807070Z * [new branch] gh/bobrenjc93/211/head -> origin/gh/bobrenjc93/211/head 2025-01-24T02:40:36.8809030Z * [new branch] gh/bobrenjc93/211/orig -> origin/gh/bobrenjc93/211/orig 2025-01-24T02:40:36.8811370Z * [new branch] gh/bobrenjc93/212/base -> origin/gh/bobrenjc93/212/base 2025-01-24T02:40:36.8813190Z * [new branch] gh/bobrenjc93/212/head -> origin/gh/bobrenjc93/212/head 2025-01-24T02:40:36.8815040Z * [new branch] gh/bobrenjc93/212/orig -> origin/gh/bobrenjc93/212/orig 2025-01-24T02:40:36.8817470Z * [new branch] gh/bobrenjc93/213/base -> origin/gh/bobrenjc93/213/base 2025-01-24T02:40:36.8819440Z * [new branch] gh/bobrenjc93/213/head -> origin/gh/bobrenjc93/213/head 2025-01-24T02:40:36.8820970Z * [new branch] gh/bobrenjc93/213/orig -> origin/gh/bobrenjc93/213/orig 2025-01-24T02:40:36.8823270Z * [new branch] gh/bobrenjc93/214/base -> origin/gh/bobrenjc93/214/base 2025-01-24T02:40:36.8824970Z * [new branch] gh/bobrenjc93/214/head -> origin/gh/bobrenjc93/214/head 2025-01-24T02:40:36.8827030Z * [new branch] gh/bobrenjc93/214/orig -> origin/gh/bobrenjc93/214/orig 2025-01-24T02:40:36.8829460Z * [new branch] gh/bobrenjc93/215/base -> origin/gh/bobrenjc93/215/base 2025-01-24T02:40:36.8831670Z * [new branch] gh/bobrenjc93/215/head -> origin/gh/bobrenjc93/215/head 2025-01-24T02:40:36.8833180Z * [new branch] gh/bobrenjc93/215/orig -> origin/gh/bobrenjc93/215/orig 2025-01-24T02:40:36.8835560Z * [new branch] gh/bobrenjc93/216/base -> origin/gh/bobrenjc93/216/base 2025-01-24T02:40:36.8837360Z * [new branch] gh/bobrenjc93/216/head -> origin/gh/bobrenjc93/216/head 2025-01-24T02:40:36.8839190Z * [new branch] gh/bobrenjc93/216/orig -> origin/gh/bobrenjc93/216/orig 2025-01-24T02:40:36.8841380Z * [new branch] gh/bobrenjc93/217/base -> origin/gh/bobrenjc93/217/base 2025-01-24T02:40:36.8843240Z * [new branch] gh/bobrenjc93/217/head -> origin/gh/bobrenjc93/217/head 2025-01-24T02:40:36.8845000Z * [new branch] gh/bobrenjc93/217/orig -> origin/gh/bobrenjc93/217/orig 2025-01-24T02:40:36.8847370Z * [new branch] gh/bobrenjc93/218/base -> origin/gh/bobrenjc93/218/base 2025-01-24T02:40:36.8848880Z * [new branch] gh/bobrenjc93/218/head -> origin/gh/bobrenjc93/218/head 2025-01-24T02:40:36.8850680Z * [new branch] gh/bobrenjc93/218/orig -> origin/gh/bobrenjc93/218/orig 2025-01-24T02:40:36.8853090Z * [new branch] gh/bobrenjc93/219/base -> origin/gh/bobrenjc93/219/base 2025-01-24T02:40:36.8854950Z * [new branch] gh/bobrenjc93/219/head -> origin/gh/bobrenjc93/219/head 2025-01-24T02:40:36.8856850Z * [new branch] gh/bobrenjc93/219/orig -> origin/gh/bobrenjc93/219/orig 2025-01-24T02:40:36.8859010Z * [new branch] gh/bobrenjc93/220/base -> origin/gh/bobrenjc93/220/base 2025-01-24T02:40:36.8861040Z * [new branch] gh/bobrenjc93/220/head -> origin/gh/bobrenjc93/220/head 2025-01-24T02:40:36.8862780Z * [new branch] gh/bobrenjc93/220/orig -> origin/gh/bobrenjc93/220/orig 2025-01-24T02:40:36.8865130Z * [new branch] gh/bobrenjc93/221/base -> origin/gh/bobrenjc93/221/base 2025-01-24T02:40:36.8867140Z * [new branch] gh/bobrenjc93/221/head -> origin/gh/bobrenjc93/221/head 2025-01-24T02:40:36.8868740Z * [new branch] gh/bobrenjc93/221/orig -> origin/gh/bobrenjc93/221/orig 2025-01-24T02:40:36.8871290Z * [new branch] gh/bobrenjc93/222/base -> origin/gh/bobrenjc93/222/base 2025-01-24T02:40:36.8872800Z * [new branch] gh/bobrenjc93/222/head -> origin/gh/bobrenjc93/222/head 2025-01-24T02:40:36.8875030Z * [new branch] gh/bobrenjc93/222/orig -> origin/gh/bobrenjc93/222/orig 2025-01-24T02:40:36.8877480Z * [new branch] gh/bobrenjc93/223/base -> origin/gh/bobrenjc93/223/base 2025-01-24T02:40:36.8879030Z * [new branch] gh/bobrenjc93/223/head -> origin/gh/bobrenjc93/223/head 2025-01-24T02:40:36.8880820Z * [new branch] gh/bobrenjc93/223/orig -> origin/gh/bobrenjc93/223/orig 2025-01-24T02:40:36.8883700Z * [new branch] gh/bobrenjc93/224/base -> origin/gh/bobrenjc93/224/base 2025-01-24T02:40:36.8885370Z * [new branch] gh/bobrenjc93/224/head -> origin/gh/bobrenjc93/224/head 2025-01-24T02:40:36.8887400Z * [new branch] gh/bobrenjc93/224/orig -> origin/gh/bobrenjc93/224/orig 2025-01-24T02:40:36.8889910Z * [new branch] gh/bobrenjc93/225/base -> origin/gh/bobrenjc93/225/base 2025-01-24T02:40:36.8891800Z * [new branch] gh/bobrenjc93/225/head -> origin/gh/bobrenjc93/225/head 2025-01-24T02:40:36.8893590Z * [new branch] gh/bobrenjc93/225/orig -> origin/gh/bobrenjc93/225/orig 2025-01-24T02:40:36.8896050Z * [new branch] gh/bobrenjc93/226/base -> origin/gh/bobrenjc93/226/base 2025-01-24T02:40:36.8897570Z * [new branch] gh/bobrenjc93/226/head -> origin/gh/bobrenjc93/226/head 2025-01-24T02:40:36.8899600Z * [new branch] gh/bobrenjc93/226/orig -> origin/gh/bobrenjc93/226/orig 2025-01-24T02:40:36.8902370Z * [new branch] gh/bobrenjc93/227/base -> origin/gh/bobrenjc93/227/base 2025-01-24T02:40:36.8903850Z * [new branch] gh/bobrenjc93/227/head -> origin/gh/bobrenjc93/227/head 2025-01-24T02:40:36.8905640Z * [new branch] gh/bobrenjc93/227/orig -> origin/gh/bobrenjc93/227/orig 2025-01-24T02:40:36.8908310Z * [new branch] gh/bobrenjc93/228/base -> origin/gh/bobrenjc93/228/base 2025-01-24T02:40:36.8910200Z * [new branch] gh/bobrenjc93/228/head -> origin/gh/bobrenjc93/228/head 2025-01-24T02:40:36.8912080Z * [new branch] gh/bobrenjc93/228/orig -> origin/gh/bobrenjc93/228/orig 2025-01-24T02:40:36.8914360Z * [new branch] gh/bobrenjc93/229/base -> origin/gh/bobrenjc93/229/base 2025-01-24T02:40:36.8916140Z * [new branch] gh/bobrenjc93/229/head -> origin/gh/bobrenjc93/229/head 2025-01-24T02:40:36.8918050Z * [new branch] gh/bobrenjc93/229/orig -> origin/gh/bobrenjc93/229/orig 2025-01-24T02:40:36.8921470Z * [new branch] gh/bobrenjc93/230/base -> origin/gh/bobrenjc93/230/base 2025-01-24T02:40:36.8924020Z * [new branch] gh/bobrenjc93/230/head -> origin/gh/bobrenjc93/230/head 2025-01-24T02:40:36.8925620Z * [new branch] gh/bobrenjc93/230/orig -> origin/gh/bobrenjc93/230/orig 2025-01-24T02:40:36.8928410Z * [new branch] gh/bobrenjc93/231/base -> origin/gh/bobrenjc93/231/base 2025-01-24T02:40:36.8930130Z * [new branch] gh/bobrenjc93/231/head -> origin/gh/bobrenjc93/231/head 2025-01-24T02:40:36.8931890Z * [new branch] gh/bobrenjc93/231/orig -> origin/gh/bobrenjc93/231/orig 2025-01-24T02:40:36.8934610Z * [new branch] gh/bobrenjc93/232/base -> origin/gh/bobrenjc93/232/base 2025-01-24T02:40:36.8936240Z * [new branch] gh/bobrenjc93/232/head -> origin/gh/bobrenjc93/232/head 2025-01-24T02:40:36.8939620Z * [new branch] gh/bobrenjc93/232/orig -> origin/gh/bobrenjc93/232/orig 2025-01-24T02:40:36.8942440Z * [new branch] gh/bobrenjc93/233/base -> origin/gh/bobrenjc93/233/base 2025-01-24T02:40:36.8944630Z * [new branch] gh/bobrenjc93/233/head -> origin/gh/bobrenjc93/233/head 2025-01-24T02:40:36.8946620Z * [new branch] gh/bobrenjc93/233/orig -> origin/gh/bobrenjc93/233/orig 2025-01-24T02:40:36.8949180Z * [new branch] gh/bobrenjc93/234/base -> origin/gh/bobrenjc93/234/base 2025-01-24T02:40:36.8950650Z * [new branch] gh/bobrenjc93/234/head -> origin/gh/bobrenjc93/234/head 2025-01-24T02:40:36.8952790Z * [new branch] gh/bobrenjc93/234/orig -> origin/gh/bobrenjc93/234/orig 2025-01-24T02:40:36.8955370Z * [new branch] gh/bobrenjc93/235/base -> origin/gh/bobrenjc93/235/base 2025-01-24T02:40:36.8956940Z * [new branch] gh/bobrenjc93/235/head -> origin/gh/bobrenjc93/235/head 2025-01-24T02:40:36.8959190Z * [new branch] gh/bobrenjc93/235/orig -> origin/gh/bobrenjc93/235/orig 2025-01-24T02:40:36.8961640Z * [new branch] gh/bobrenjc93/236/base -> origin/gh/bobrenjc93/236/base 2025-01-24T02:40:36.8964110Z * [new branch] gh/bobrenjc93/236/head -> origin/gh/bobrenjc93/236/head 2025-01-24T02:40:36.8965870Z * [new branch] gh/bobrenjc93/236/orig -> origin/gh/bobrenjc93/236/orig 2025-01-24T02:40:36.8968350Z * [new branch] gh/bobrenjc93/237/base -> origin/gh/bobrenjc93/237/base 2025-01-24T02:40:36.8969890Z * [new branch] gh/bobrenjc93/237/head -> origin/gh/bobrenjc93/237/head 2025-01-24T02:40:36.8971970Z * [new branch] gh/bobrenjc93/237/orig -> origin/gh/bobrenjc93/237/orig 2025-01-24T02:40:36.8974380Z * [new branch] gh/bobrenjc93/238/base -> origin/gh/bobrenjc93/238/base 2025-01-24T02:40:36.8976220Z * [new branch] gh/bobrenjc93/238/head -> origin/gh/bobrenjc93/238/head 2025-01-24T02:40:36.8978150Z * [new branch] gh/bobrenjc93/238/orig -> origin/gh/bobrenjc93/238/orig 2025-01-24T02:40:36.8980670Z * [new branch] gh/bobrenjc93/239/base -> origin/gh/bobrenjc93/239/base 2025-01-24T02:40:36.8982320Z * [new branch] gh/bobrenjc93/239/head -> origin/gh/bobrenjc93/239/head 2025-01-24T02:40:36.8984200Z * [new branch] gh/bobrenjc93/239/orig -> origin/gh/bobrenjc93/239/orig 2025-01-24T02:40:36.8986860Z * [new branch] gh/bobrenjc93/240/base -> origin/gh/bobrenjc93/240/base 2025-01-24T02:40:36.8988540Z * [new branch] gh/bobrenjc93/240/head -> origin/gh/bobrenjc93/240/head 2025-01-24T02:40:36.8990480Z * [new branch] gh/bobrenjc93/240/orig -> origin/gh/bobrenjc93/240/orig 2025-01-24T02:40:36.8993200Z * [new branch] gh/bobrenjc93/241/base -> origin/gh/bobrenjc93/241/base 2025-01-24T02:40:36.8994550Z * [new branch] gh/bobrenjc93/241/head -> origin/gh/bobrenjc93/241/head 2025-01-24T02:40:36.8996260Z * [new branch] gh/bobrenjc93/241/orig -> origin/gh/bobrenjc93/241/orig 2025-01-24T02:40:36.8998790Z * [new branch] gh/bobrenjc93/242/base -> origin/gh/bobrenjc93/242/base 2025-01-24T02:40:36.9001020Z * [new branch] gh/bobrenjc93/242/head -> origin/gh/bobrenjc93/242/head 2025-01-24T02:40:36.9002540Z * [new branch] gh/bobrenjc93/242/orig -> origin/gh/bobrenjc93/242/orig 2025-01-24T02:40:36.9005560Z * [new branch] gh/bobrenjc93/243/base -> origin/gh/bobrenjc93/243/base 2025-01-24T02:40:36.9007410Z * [new branch] gh/bobrenjc93/243/head -> origin/gh/bobrenjc93/243/head 2025-01-24T02:40:36.9009190Z * [new branch] gh/bobrenjc93/243/orig -> origin/gh/bobrenjc93/243/orig 2025-01-24T02:40:36.9018710Z * [new branch] gh/bobrenjc93/244/base -> origin/gh/bobrenjc93/244/base 2025-01-24T02:40:36.9019300Z * [new branch] gh/bobrenjc93/244/head -> origin/gh/bobrenjc93/244/head 2025-01-24T02:40:36.9019850Z * [new branch] gh/bobrenjc93/244/orig -> origin/gh/bobrenjc93/244/orig 2025-01-24T02:40:36.9020390Z * [new branch] gh/bobrenjc93/245/base -> origin/gh/bobrenjc93/245/base 2025-01-24T02:40:36.9024190Z * [new branch] gh/bobrenjc93/245/head -> origin/gh/bobrenjc93/245/head 2025-01-24T02:40:36.9024760Z * [new branch] gh/bobrenjc93/245/orig -> origin/gh/bobrenjc93/245/orig 2025-01-24T02:40:36.9025310Z * [new branch] gh/bobrenjc93/246/base -> origin/gh/bobrenjc93/246/base 2025-01-24T02:40:36.9026010Z * [new branch] gh/bobrenjc93/246/head -> origin/gh/bobrenjc93/246/head 2025-01-24T02:40:36.9027920Z * [new branch] gh/bobrenjc93/246/orig -> origin/gh/bobrenjc93/246/orig 2025-01-24T02:40:36.9030420Z * [new branch] gh/bobrenjc93/247/base -> origin/gh/bobrenjc93/247/base 2025-01-24T02:40:36.9032240Z * [new branch] gh/bobrenjc93/247/head -> origin/gh/bobrenjc93/247/head 2025-01-24T02:40:36.9034100Z * [new branch] gh/bobrenjc93/247/orig -> origin/gh/bobrenjc93/247/orig 2025-01-24T02:40:36.9037490Z * [new branch] gh/bobrenjc93/248/base -> origin/gh/bobrenjc93/248/base 2025-01-24T02:40:36.9038760Z * [new branch] gh/bobrenjc93/248/head -> origin/gh/bobrenjc93/248/head 2025-01-24T02:40:36.9040400Z * [new branch] gh/bobrenjc93/248/orig -> origin/gh/bobrenjc93/248/orig 2025-01-24T02:40:36.9043110Z * [new branch] gh/bobrenjc93/249/base -> origin/gh/bobrenjc93/249/base 2025-01-24T02:40:36.9044800Z * [new branch] gh/bobrenjc93/249/head -> origin/gh/bobrenjc93/249/head 2025-01-24T02:40:36.9046680Z * [new branch] gh/bobrenjc93/249/orig -> origin/gh/bobrenjc93/249/orig 2025-01-24T02:40:36.9049170Z * [new branch] gh/bobrenjc93/250/base -> origin/gh/bobrenjc93/250/base 2025-01-24T02:40:36.9051150Z * [new branch] gh/bobrenjc93/250/head -> origin/gh/bobrenjc93/250/head 2025-01-24T02:40:36.9053170Z * [new branch] gh/bobrenjc93/250/orig -> origin/gh/bobrenjc93/250/orig 2025-01-24T02:40:36.9055540Z * [new branch] gh/bobrenjc93/251/base -> origin/gh/bobrenjc93/251/base 2025-01-24T02:40:36.9057350Z * [new branch] gh/bobrenjc93/251/head -> origin/gh/bobrenjc93/251/head 2025-01-24T02:40:36.9059170Z * [new branch] gh/bobrenjc93/251/orig -> origin/gh/bobrenjc93/251/orig 2025-01-24T02:40:36.9062370Z * [new branch] gh/bobrenjc93/252/base -> origin/gh/bobrenjc93/252/base 2025-01-24T02:40:36.9064180Z * [new branch] gh/bobrenjc93/252/head -> origin/gh/bobrenjc93/252/head 2025-01-24T02:40:36.9066010Z * [new branch] gh/bobrenjc93/252/orig -> origin/gh/bobrenjc93/252/orig 2025-01-24T02:40:36.9068650Z * [new branch] gh/bobrenjc93/253/base -> origin/gh/bobrenjc93/253/base 2025-01-24T02:40:36.9070770Z * [new branch] gh/bobrenjc93/253/head -> origin/gh/bobrenjc93/253/head 2025-01-24T02:40:36.9072830Z * [new branch] gh/bobrenjc93/253/orig -> origin/gh/bobrenjc93/253/orig 2025-01-24T02:40:36.9075210Z * [new branch] gh/bobrenjc93/254/base -> origin/gh/bobrenjc93/254/base 2025-01-24T02:40:36.9077050Z * [new branch] gh/bobrenjc93/254/head -> origin/gh/bobrenjc93/254/head 2025-01-24T02:40:36.9078740Z * [new branch] gh/bobrenjc93/254/orig -> origin/gh/bobrenjc93/254/orig 2025-01-24T02:40:36.9081100Z * [new branch] gh/bobrenjc93/255/base -> origin/gh/bobrenjc93/255/base 2025-01-24T02:40:36.9082900Z * [new branch] gh/bobrenjc93/255/head -> origin/gh/bobrenjc93/255/head 2025-01-24T02:40:36.9084780Z * [new branch] gh/bobrenjc93/255/orig -> origin/gh/bobrenjc93/255/orig 2025-01-24T02:40:36.9088270Z * [new branch] gh/briancoutinho/2/base -> origin/gh/briancoutinho/2/base 2025-01-24T02:40:36.9090170Z * [new branch] gh/briancoutinho/2/head -> origin/gh/briancoutinho/2/head 2025-01-24T02:40:36.9093340Z * [new branch] gh/c-p-i-o/1/base -> origin/gh/c-p-i-o/1/base 2025-01-24T02:40:36.9095120Z * [new branch] gh/c-p-i-o/1/head -> origin/gh/c-p-i-o/1/head 2025-01-24T02:40:36.9096630Z * [new branch] gh/c-p-i-o/1/orig -> origin/gh/c-p-i-o/1/orig 2025-01-24T02:40:36.9099460Z * [new branch] gh/c-p-i-o/3/base -> origin/gh/c-p-i-o/3/base 2025-01-24T02:40:36.9101410Z * [new branch] gh/c-p-i-o/3/head -> origin/gh/c-p-i-o/3/head 2025-01-24T02:40:36.9103150Z * [new branch] gh/c-p-i-o/3/orig -> origin/gh/c-p-i-o/3/orig 2025-01-24T02:40:36.9105730Z * [new branch] gh/c-p-i-o/4/base -> origin/gh/c-p-i-o/4/base 2025-01-24T02:40:36.9107320Z * [new branch] gh/c-p-i-o/4/head -> origin/gh/c-p-i-o/4/head 2025-01-24T02:40:36.9109590Z * [new branch] gh/c-p-i-o/4/orig -> origin/gh/c-p-i-o/4/orig 2025-01-24T02:40:36.9112030Z * [new branch] gh/c-p-i-o/5/base -> origin/gh/c-p-i-o/5/base 2025-01-24T02:40:36.9114020Z * [new branch] gh/c-p-i-o/5/head -> origin/gh/c-p-i-o/5/head 2025-01-24T02:40:36.9115830Z * [new branch] gh/c-p-i-o/5/orig -> origin/gh/c-p-i-o/5/orig 2025-01-24T02:40:36.9118870Z * [new branch] gh/c00w/19/base -> origin/gh/c00w/19/base 2025-01-24T02:40:36.9120300Z * [new branch] gh/c00w/19/head -> origin/gh/c00w/19/head 2025-01-24T02:40:36.9123480Z * [new branch] gh/c00w/19/orig -> origin/gh/c00w/19/orig 2025-01-24T02:40:36.9126460Z * [new branch] gh/c00w/20/base -> origin/gh/c00w/20/base 2025-01-24T02:40:36.9129190Z * [new branch] gh/c00w/20/head -> origin/gh/c00w/20/head 2025-01-24T02:40:36.9131130Z * [new branch] gh/c00w/20/orig -> origin/gh/c00w/20/orig 2025-01-24T02:40:36.9133440Z * [new branch] gh/c00w/21/base -> origin/gh/c00w/21/base 2025-01-24T02:40:36.9135740Z * [new branch] gh/c00w/21/head -> origin/gh/c00w/21/head 2025-01-24T02:40:36.9137510Z * [new branch] gh/c00w/21/orig -> origin/gh/c00w/21/orig 2025-01-24T02:40:36.9140190Z * [new branch] gh/c00w/23/base -> origin/gh/c00w/23/base 2025-01-24T02:40:36.9141830Z * [new branch] gh/c00w/23/head -> origin/gh/c00w/23/head 2025-01-24T02:40:36.9144610Z * [new branch] gh/c00w/24/base -> origin/gh/c00w/24/base 2025-01-24T02:40:36.9146800Z * [new branch] gh/c00w/24/head -> origin/gh/c00w/24/head 2025-01-24T02:40:36.9148470Z * [new branch] gh/c00w/24/orig -> origin/gh/c00w/24/orig 2025-01-24T02:40:36.9151140Z * [new branch] gh/c00w/25/base -> origin/gh/c00w/25/base 2025-01-24T02:40:36.9152770Z * [new branch] gh/c00w/25/head -> origin/gh/c00w/25/head 2025-01-24T02:40:36.9155000Z * [new branch] gh/c00w/25/orig -> origin/gh/c00w/25/orig 2025-01-24T02:40:36.9157600Z * [new branch] gh/c00w/26/base -> origin/gh/c00w/26/base 2025-01-24T02:40:36.9159180Z * [new branch] gh/c00w/26/head -> origin/gh/c00w/26/head 2025-01-24T02:40:36.9161000Z * [new branch] gh/c00w/26/orig -> origin/gh/c00w/26/orig 2025-01-24T02:40:36.9163420Z * [new branch] gh/c00w/27/base -> origin/gh/c00w/27/base 2025-01-24T02:40:36.9165230Z * [new branch] gh/c00w/27/head -> origin/gh/c00w/27/head 2025-01-24T02:40:36.9167180Z * [new branch] gh/c00w/27/orig -> origin/gh/c00w/27/orig 2025-01-24T02:40:36.9169560Z * [new branch] gh/c00w/28/base -> origin/gh/c00w/28/base 2025-01-24T02:40:36.9171500Z * [new branch] gh/c00w/28/head -> origin/gh/c00w/28/head 2025-01-24T02:40:36.9173330Z * [new branch] gh/c00w/28/orig -> origin/gh/c00w/28/orig 2025-01-24T02:40:36.9175760Z * [new branch] gh/c00w/29/base -> origin/gh/c00w/29/base 2025-01-24T02:40:36.9177440Z * [new branch] gh/c00w/29/head -> origin/gh/c00w/29/head 2025-01-24T02:40:36.9179420Z * [new branch] gh/c00w/29/orig -> origin/gh/c00w/29/orig 2025-01-24T02:40:36.9181870Z * [new branch] gh/c00w/30/base -> origin/gh/c00w/30/base 2025-01-24T02:40:36.9183460Z * [new branch] gh/c00w/30/head -> origin/gh/c00w/30/head 2025-01-24T02:40:36.9185380Z * [new branch] gh/c00w/30/orig -> origin/gh/c00w/30/orig 2025-01-24T02:40:36.9188020Z * [new branch] gh/c00w/31/base -> origin/gh/c00w/31/base 2025-01-24T02:40:36.9189570Z * [new branch] gh/c00w/31/head -> origin/gh/c00w/31/head 2025-01-24T02:40:36.9192070Z * [new branch] gh/c00w/31/orig -> origin/gh/c00w/31/orig 2025-01-24T02:40:36.9195170Z * [new branch] gh/chenyang78/1/base -> origin/gh/chenyang78/1/base 2025-01-24T02:40:36.9197090Z * [new branch] gh/chenyang78/1/head -> origin/gh/chenyang78/1/head 2025-01-24T02:40:36.9203790Z * [new branch] gh/chenyang78/1/orig -> origin/gh/chenyang78/1/orig 2025-01-24T02:40:36.9204420Z * [new branch] gh/chillee/220/base -> origin/gh/chillee/220/base 2025-01-24T02:40:36.9204970Z * [new branch] gh/chillee/220/head -> origin/gh/chillee/220/head 2025-01-24T02:40:36.9205590Z * [new branch] gh/chillee/220/orig -> origin/gh/chillee/220/orig 2025-01-24T02:40:36.9208330Z * [new branch] gh/chillee/352/base -> origin/gh/chillee/352/base 2025-01-24T02:40:36.9209770Z * [new branch] gh/chillee/352/head -> origin/gh/chillee/352/head 2025-01-24T02:40:36.9211960Z * [new branch] gh/chillee/352/orig -> origin/gh/chillee/352/orig 2025-01-24T02:40:36.9214510Z * [new branch] gh/chillee/360/base -> origin/gh/chillee/360/base 2025-01-24T02:40:36.9216760Z * [new branch] gh/chillee/360/head -> origin/gh/chillee/360/head 2025-01-24T02:40:36.9217960Z * [new branch] gh/chillee/360/orig -> origin/gh/chillee/360/orig 2025-01-24T02:40:36.9220740Z * [new branch] gh/chillee/362/base -> origin/gh/chillee/362/base 2025-01-24T02:40:36.9222670Z * [new branch] gh/chillee/362/head -> origin/gh/chillee/362/head 2025-01-24T02:40:36.9224920Z * [new branch] gh/chillee/362/orig -> origin/gh/chillee/362/orig 2025-01-24T02:40:36.9226950Z * [new branch] gh/chillee/367/base -> origin/gh/chillee/367/base 2025-01-24T02:40:36.9228810Z * [new branch] gh/chillee/367/head -> origin/gh/chillee/367/head 2025-01-24T02:40:36.9230780Z * [new branch] gh/chillee/367/orig -> origin/gh/chillee/367/orig 2025-01-24T02:40:36.9233180Z * [new branch] gh/chillee/376/base -> origin/gh/chillee/376/base 2025-01-24T02:40:36.9235300Z * [new branch] gh/chillee/376/head -> origin/gh/chillee/376/head 2025-01-24T02:40:36.9236590Z * [new branch] gh/chillee/376/orig -> origin/gh/chillee/376/orig 2025-01-24T02:40:36.9239330Z * [new branch] gh/chillee/377/base -> origin/gh/chillee/377/base 2025-01-24T02:40:36.9241280Z * [new branch] gh/chillee/377/head -> origin/gh/chillee/377/head 2025-01-24T02:40:36.9243200Z * [new branch] gh/chillee/377/orig -> origin/gh/chillee/377/orig 2025-01-24T02:40:36.9245480Z * [new branch] gh/chillee/378/base -> origin/gh/chillee/378/base 2025-01-24T02:40:36.9247510Z * [new branch] gh/chillee/378/head -> origin/gh/chillee/378/head 2025-01-24T02:40:36.9249300Z * [new branch] gh/chillee/378/orig -> origin/gh/chillee/378/orig 2025-01-24T02:40:36.9251740Z * [new branch] gh/chillee/379/base -> origin/gh/chillee/379/base 2025-01-24T02:40:36.9253420Z * [new branch] gh/chillee/379/head -> origin/gh/chillee/379/head 2025-01-24T02:40:36.9255350Z * [new branch] gh/chillee/379/orig -> origin/gh/chillee/379/orig 2025-01-24T02:40:36.9258470Z * [new branch] gh/chunyuan-w/1/base -> origin/gh/chunyuan-w/1/base 2025-01-24T02:40:36.9260140Z * [new branch] gh/chunyuan-w/1/head -> origin/gh/chunyuan-w/1/head 2025-01-24T02:40:36.9261980Z * [new branch] gh/chunyuan-w/1/orig -> origin/gh/chunyuan-w/1/orig 2025-01-24T02:40:36.9264460Z * [new branch] gh/chunyuan-w/3/base -> origin/gh/chunyuan-w/3/base 2025-01-24T02:40:36.9266580Z * [new branch] gh/chunyuan-w/3/head -> origin/gh/chunyuan-w/3/head 2025-01-24T02:40:36.9267980Z * [new branch] gh/chunyuan-w/3/orig -> origin/gh/chunyuan-w/3/orig 2025-01-24T02:40:36.9270520Z * [new branch] gh/chunyuan-w/4/base -> origin/gh/chunyuan-w/4/base 2025-01-24T02:40:36.9272140Z * [new branch] gh/chunyuan-w/4/head -> origin/gh/chunyuan-w/4/head 2025-01-24T02:40:36.9274320Z * [new branch] gh/chunyuan-w/4/orig -> origin/gh/chunyuan-w/4/orig 2025-01-24T02:40:36.9277200Z * [new branch] gh/clee2000/1/base -> origin/gh/clee2000/1/base 2025-01-24T02:40:36.9278950Z * [new branch] gh/clee2000/1/head -> origin/gh/clee2000/1/head 2025-01-24T02:40:36.9281060Z * [new branch] gh/clee2000/1/orig -> origin/gh/clee2000/1/orig 2025-01-24T02:40:36.9284170Z * [new branch] gh/davidberard98/230/base -> origin/gh/davidberard98/230/base 2025-01-24T02:40:36.9285920Z * [new branch] gh/davidberard98/230/head -> origin/gh/davidberard98/230/head 2025-01-24T02:40:36.9287660Z * [new branch] gh/davidberard98/230/orig -> origin/gh/davidberard98/230/orig 2025-01-24T02:40:36.9290340Z * [new branch] gh/davidberard98/328/base -> origin/gh/davidberard98/328/base 2025-01-24T02:40:36.9292570Z * [new branch] gh/davidberard98/328/head -> origin/gh/davidberard98/328/head 2025-01-24T02:40:36.9294480Z * [new branch] gh/davidberard98/328/orig -> origin/gh/davidberard98/328/orig 2025-01-24T02:40:36.9297050Z * [new branch] gh/davidberard98/329/base -> origin/gh/davidberard98/329/base 2025-01-24T02:40:36.9298910Z * [new branch] gh/davidberard98/329/head -> origin/gh/davidberard98/329/head 2025-01-24T02:40:36.9300850Z * [new branch] gh/davidberard98/329/orig -> origin/gh/davidberard98/329/orig 2025-01-24T02:40:36.9303930Z * [new branch] gh/davidberard98/330/base -> origin/gh/davidberard98/330/base 2025-01-24T02:40:36.9305770Z * [new branch] gh/davidberard98/330/head -> origin/gh/davidberard98/330/head 2025-01-24T02:40:36.9307610Z * [new branch] gh/davidberard98/330/orig -> origin/gh/davidberard98/330/orig 2025-01-24T02:40:36.9309920Z * [new branch] gh/davidberard98/331/base -> origin/gh/davidberard98/331/base 2025-01-24T02:40:36.9311820Z * [new branch] gh/davidberard98/331/head -> origin/gh/davidberard98/331/head 2025-01-24T02:40:36.9313750Z * [new branch] gh/davidberard98/331/orig -> origin/gh/davidberard98/331/orig 2025-01-24T02:40:36.9316220Z * [new branch] gh/davidberard98/332/base -> origin/gh/davidberard98/332/base 2025-01-24T02:40:36.9318040Z * [new branch] gh/davidberard98/332/head -> origin/gh/davidberard98/332/head 2025-01-24T02:40:36.9320000Z * [new branch] gh/davidberard98/332/orig -> origin/gh/davidberard98/332/orig 2025-01-24T02:40:36.9322140Z * [new branch] gh/davidberard98/333/base -> origin/gh/davidberard98/333/base 2025-01-24T02:40:36.9323930Z * [new branch] gh/davidberard98/333/head -> origin/gh/davidberard98/333/head 2025-01-24T02:40:36.9326040Z * [new branch] gh/davidberard98/333/orig -> origin/gh/davidberard98/333/orig 2025-01-24T02:40:36.9328810Z * [new branch] gh/desertfire/520/base -> origin/gh/desertfire/520/base 2025-01-24T02:40:36.9330890Z * [new branch] gh/desertfire/520/head -> origin/gh/desertfire/520/head 2025-01-24T02:40:36.9332530Z * [new branch] gh/desertfire/520/orig -> origin/gh/desertfire/520/orig 2025-01-24T02:40:36.9335000Z * [new branch] gh/desertfire/522/base -> origin/gh/desertfire/522/base 2025-01-24T02:40:36.9336910Z * [new branch] gh/desertfire/522/head -> origin/gh/desertfire/522/head 2025-01-24T02:40:36.9339030Z * [new branch] gh/desertfire/522/orig -> origin/gh/desertfire/522/orig 2025-01-24T02:40:36.9341200Z * [new branch] gh/desertfire/528/base -> origin/gh/desertfire/528/base 2025-01-24T02:40:36.9343000Z * [new branch] gh/desertfire/528/head -> origin/gh/desertfire/528/head 2025-01-24T02:40:36.9344910Z * [new branch] gh/desertfire/528/orig -> origin/gh/desertfire/528/orig 2025-01-24T02:40:36.9347280Z * [new branch] gh/desertfire/529/base -> origin/gh/desertfire/529/base 2025-01-24T02:40:36.9349160Z * [new branch] gh/desertfire/529/head -> origin/gh/desertfire/529/head 2025-01-24T02:40:36.9351440Z * [new branch] gh/desertfire/529/orig -> origin/gh/desertfire/529/orig 2025-01-24T02:40:36.9353760Z * [new branch] gh/desertfire/530/base -> origin/gh/desertfire/530/base 2025-01-24T02:40:36.9355610Z * [new branch] gh/desertfire/530/head -> origin/gh/desertfire/530/head 2025-01-24T02:40:36.9357240Z * [new branch] gh/desertfire/530/orig -> origin/gh/desertfire/530/orig 2025-01-24T02:40:36.9360610Z * [new branch] gh/drisspg/100/base -> origin/gh/drisspg/100/base 2025-01-24T02:40:36.9362440Z * [new branch] gh/drisspg/100/head -> origin/gh/drisspg/100/head 2025-01-24T02:40:36.9364560Z * [new branch] gh/drisspg/100/orig -> origin/gh/drisspg/100/orig 2025-01-24T02:40:36.9366850Z * [new branch] gh/drisspg/103/base -> origin/gh/drisspg/103/base 2025-01-24T02:40:36.9368430Z * [new branch] gh/drisspg/103/head -> origin/gh/drisspg/103/head 2025-01-24T02:40:36.9370630Z * [new branch] gh/drisspg/103/orig -> origin/gh/drisspg/103/orig 2025-01-24T02:40:36.9372930Z * [new branch] gh/drisspg/104/base -> origin/gh/drisspg/104/base 2025-01-24T02:40:36.9374820Z * [new branch] gh/drisspg/104/head -> origin/gh/drisspg/104/head 2025-01-24T02:40:36.9376840Z * [new branch] gh/drisspg/104/orig -> origin/gh/drisspg/104/orig 2025-01-24T02:40:36.9378900Z * [new branch] gh/drisspg/106/base -> origin/gh/drisspg/106/base 2025-01-24T02:40:36.9381020Z * [new branch] gh/drisspg/106/head -> origin/gh/drisspg/106/head 2025-01-24T02:40:36.9382410Z * [new branch] gh/drisspg/106/orig -> origin/gh/drisspg/106/orig 2025-01-24T02:40:36.9385060Z * [new branch] gh/drisspg/107/base -> origin/gh/drisspg/107/base 2025-01-24T02:40:36.9387180Z * [new branch] gh/drisspg/107/head -> origin/gh/drisspg/107/head 2025-01-24T02:40:36.9388870Z * [new branch] gh/drisspg/107/orig -> origin/gh/drisspg/107/orig 2025-01-24T02:40:36.9391260Z * [new branch] gh/drisspg/108/base -> origin/gh/drisspg/108/base 2025-01-24T02:40:36.9396920Z * [new branch] gh/drisspg/108/head -> origin/gh/drisspg/108/head 2025-01-24T02:40:36.9397460Z * [new branch] gh/drisspg/108/orig -> origin/gh/drisspg/108/orig 2025-01-24T02:40:36.9398280Z * [new branch] gh/drisspg/109/base -> origin/gh/drisspg/109/base 2025-01-24T02:40:36.9400580Z * [new branch] gh/drisspg/109/head -> origin/gh/drisspg/109/head 2025-01-24T02:40:36.9402480Z * [new branch] gh/drisspg/109/orig -> origin/gh/drisspg/109/orig 2025-01-24T02:40:36.9404980Z * [new branch] gh/drisspg/110/base -> origin/gh/drisspg/110/base 2025-01-24T02:40:36.9406830Z * [new branch] gh/drisspg/110/head -> origin/gh/drisspg/110/head 2025-01-24T02:40:36.9408770Z * [new branch] gh/drisspg/110/orig -> origin/gh/drisspg/110/orig 2025-01-24T02:40:36.9411250Z * [new branch] gh/drisspg/111/base -> origin/gh/drisspg/111/base 2025-01-24T02:40:36.9413070Z * [new branch] gh/drisspg/111/head -> origin/gh/drisspg/111/head 2025-01-24T02:40:36.9415000Z * [new branch] gh/drisspg/111/orig -> origin/gh/drisspg/111/orig 2025-01-24T02:40:36.9417450Z * [new branch] gh/drisspg/112/base -> origin/gh/drisspg/112/base 2025-01-24T02:40:36.9419320Z * [new branch] gh/drisspg/112/head -> origin/gh/drisspg/112/head 2025-01-24T02:40:36.9421370Z * [new branch] gh/drisspg/112/orig -> origin/gh/drisspg/112/orig 2025-01-24T02:40:36.9423820Z * [new branch] gh/drisspg/113/base -> origin/gh/drisspg/113/base 2025-01-24T02:40:36.9425650Z * [new branch] gh/drisspg/113/head -> origin/gh/drisspg/113/head 2025-01-24T02:40:36.9427760Z * [new branch] gh/drisspg/113/orig -> origin/gh/drisspg/113/orig 2025-01-24T02:40:36.9429860Z * [new branch] gh/drisspg/114/base -> origin/gh/drisspg/114/base 2025-01-24T02:40:36.9431810Z * [new branch] gh/drisspg/114/head -> origin/gh/drisspg/114/head 2025-01-24T02:40:36.9433670Z * [new branch] gh/drisspg/114/orig -> origin/gh/drisspg/114/orig 2025-01-24T02:40:36.9436160Z * [new branch] gh/drisspg/115/base -> origin/gh/drisspg/115/base 2025-01-24T02:40:36.9438340Z * [new branch] gh/drisspg/115/head -> origin/gh/drisspg/115/head 2025-01-24T02:40:36.9440300Z * [new branch] gh/drisspg/115/orig -> origin/gh/drisspg/115/orig 2025-01-24T02:40:36.9442370Z * [new branch] gh/drisspg/116/base -> origin/gh/drisspg/116/base 2025-01-24T02:40:36.9444300Z * [new branch] gh/drisspg/116/head -> origin/gh/drisspg/116/head 2025-01-24T02:40:36.9445980Z * [new branch] gh/drisspg/116/orig -> origin/gh/drisspg/116/orig 2025-01-24T02:40:36.9448570Z * [new branch] gh/drisspg/117/base -> origin/gh/drisspg/117/base 2025-01-24T02:40:36.9450350Z * [new branch] gh/drisspg/117/head -> origin/gh/drisspg/117/head 2025-01-24T02:40:36.9451930Z * [new branch] gh/drisspg/117/orig -> origin/gh/drisspg/117/orig 2025-01-24T02:40:36.9454320Z * [new branch] gh/drisspg/118/base -> origin/gh/drisspg/118/base 2025-01-24T02:40:36.9456480Z * [new branch] gh/drisspg/118/head -> origin/gh/drisspg/118/head 2025-01-24T02:40:36.9458250Z * [new branch] gh/drisspg/118/orig -> origin/gh/drisspg/118/orig 2025-01-24T02:40:36.9460530Z * [new branch] gh/drisspg/119/base -> origin/gh/drisspg/119/base 2025-01-24T02:40:36.9462550Z * [new branch] gh/drisspg/119/head -> origin/gh/drisspg/119/head 2025-01-24T02:40:36.9464340Z * [new branch] gh/drisspg/119/orig -> origin/gh/drisspg/119/orig 2025-01-24T02:40:36.9467550Z * [new branch] gh/drisspg/32/base -> origin/gh/drisspg/32/base 2025-01-24T02:40:36.9469530Z * [new branch] gh/drisspg/32/head -> origin/gh/drisspg/32/head 2025-01-24T02:40:36.9471590Z * [new branch] gh/drisspg/32/orig -> origin/gh/drisspg/32/orig 2025-01-24T02:40:36.9474030Z * [new branch] gh/drisspg/66/base -> origin/gh/drisspg/66/base 2025-01-24T02:40:36.9475980Z * [new branch] gh/drisspg/66/head -> origin/gh/drisspg/66/head 2025-01-24T02:40:36.9477860Z * [new branch] gh/drisspg/66/orig -> origin/gh/drisspg/66/orig 2025-01-24T02:40:36.9480300Z * [new branch] gh/drisspg/72/base -> origin/gh/drisspg/72/base 2025-01-24T02:40:36.9482290Z * [new branch] gh/drisspg/72/head -> origin/gh/drisspg/72/head 2025-01-24T02:40:36.9483880Z * [new branch] gh/drisspg/72/orig -> origin/gh/drisspg/72/orig 2025-01-24T02:40:36.9486560Z * [new branch] gh/drisspg/79/base -> origin/gh/drisspg/79/base 2025-01-24T02:40:36.9488520Z * [new branch] gh/drisspg/79/head -> origin/gh/drisspg/79/head 2025-01-24T02:40:36.9490070Z * [new branch] gh/drisspg/79/orig -> origin/gh/drisspg/79/orig 2025-01-24T02:40:36.9492670Z * [new branch] gh/drisspg/94/base -> origin/gh/drisspg/94/base 2025-01-24T02:40:36.9494270Z * [new branch] gh/drisspg/94/head -> origin/gh/drisspg/94/head 2025-01-24T02:40:36.9496120Z * [new branch] gh/drisspg/94/orig -> origin/gh/drisspg/94/orig 2025-01-24T02:40:36.9499100Z * [new branch] gh/drisspg/98/base -> origin/gh/drisspg/98/base 2025-01-24T02:40:36.9501050Z * [new branch] gh/drisspg/98/head -> origin/gh/drisspg/98/head 2025-01-24T02:40:36.9502920Z * [new branch] gh/drisspg/98/orig -> origin/gh/drisspg/98/orig 2025-01-24T02:40:36.9505740Z * [new branch] gh/eellison/554/base -> origin/gh/eellison/554/base 2025-01-24T02:40:36.9507750Z * [new branch] gh/eellison/554/head -> origin/gh/eellison/554/head 2025-01-24T02:40:36.9509540Z * [new branch] gh/eellison/554/orig -> origin/gh/eellison/554/orig 2025-01-24T02:40:36.9512020Z * [new branch] gh/eellison/555/base -> origin/gh/eellison/555/base 2025-01-24T02:40:36.9513490Z * [new branch] gh/eellison/555/head -> origin/gh/eellison/555/head 2025-01-24T02:40:36.9515640Z * [new branch] gh/eellison/555/orig -> origin/gh/eellison/555/orig 2025-01-24T02:40:36.9517890Z * [new branch] gh/eellison/691/base -> origin/gh/eellison/691/base 2025-01-24T02:40:36.9520010Z * [new branch] gh/eellison/691/head -> origin/gh/eellison/691/head 2025-01-24T02:40:36.9521600Z * [new branch] gh/eellison/691/orig -> origin/gh/eellison/691/orig 2025-01-24T02:40:36.9524140Z * [new branch] gh/eellison/697/base -> origin/gh/eellison/697/base 2025-01-24T02:40:36.9525850Z * [new branch] gh/eellison/697/head -> origin/gh/eellison/697/head 2025-01-24T02:40:36.9527780Z * [new branch] gh/eellison/697/orig -> origin/gh/eellison/697/orig 2025-01-24T02:40:36.9530260Z * [new branch] gh/eellison/703/base -> origin/gh/eellison/703/base 2025-01-24T02:40:36.9532130Z * [new branch] gh/eellison/703/head -> origin/gh/eellison/703/head 2025-01-24T02:40:36.9533950Z * [new branch] gh/eellison/703/orig -> origin/gh/eellison/703/orig 2025-01-24T02:40:36.9536320Z * [new branch] gh/eellison/709/base -> origin/gh/eellison/709/base 2025-01-24T02:40:36.9537940Z * [new branch] gh/eellison/709/head -> origin/gh/eellison/709/head 2025-01-24T02:40:36.9539950Z * [new branch] gh/eellison/709/orig -> origin/gh/eellison/709/orig 2025-01-24T02:40:36.9542360Z * [new branch] gh/eellison/710/base -> origin/gh/eellison/710/base 2025-01-24T02:40:36.9544110Z * [new branch] gh/eellison/710/head -> origin/gh/eellison/710/head 2025-01-24T02:40:36.9546040Z * [new branch] gh/eellison/710/orig -> origin/gh/eellison/710/orig 2025-01-24T02:40:36.9548350Z * [new branch] gh/eellison/711/base -> origin/gh/eellison/711/base 2025-01-24T02:40:36.9550210Z * [new branch] gh/eellison/711/head -> origin/gh/eellison/711/head 2025-01-24T02:40:36.9551820Z * [new branch] gh/eellison/711/orig -> origin/gh/eellison/711/orig 2025-01-24T02:40:36.9554260Z * [new branch] gh/eellison/716/base -> origin/gh/eellison/716/base 2025-01-24T02:40:36.9556210Z * [new branch] gh/eellison/716/head -> origin/gh/eellison/716/head 2025-01-24T02:40:36.9557870Z * [new branch] gh/eellison/716/orig -> origin/gh/eellison/716/orig 2025-01-24T02:40:36.9560550Z * [new branch] gh/eellison/717/base -> origin/gh/eellison/717/base 2025-01-24T02:40:36.9562300Z * [new branch] gh/eellison/717/head -> origin/gh/eellison/717/head 2025-01-24T02:40:36.9564070Z * [new branch] gh/eellison/717/orig -> origin/gh/eellison/717/orig 2025-01-24T02:40:36.9566740Z * [new branch] gh/eellison/718/base -> origin/gh/eellison/718/base 2025-01-24T02:40:36.9568550Z * [new branch] gh/eellison/718/head -> origin/gh/eellison/718/head 2025-01-24T02:40:36.9570360Z * [new branch] gh/eellison/718/orig -> origin/gh/eellison/718/orig 2025-01-24T02:40:36.9572790Z * [new branch] gh/eellison/735/base -> origin/gh/eellison/735/base 2025-01-24T02:40:36.9574550Z * [new branch] gh/eellison/735/head -> origin/gh/eellison/735/head 2025-01-24T02:40:36.9576380Z * [new branch] gh/eellison/735/orig -> origin/gh/eellison/735/orig 2025-01-24T02:40:36.9578830Z * [new branch] gh/eellison/743/base -> origin/gh/eellison/743/base 2025-01-24T02:40:36.9580670Z * [new branch] gh/eellison/743/head -> origin/gh/eellison/743/head 2025-01-24T02:40:36.9586360Z * [new branch] gh/eellison/743/orig -> origin/gh/eellison/743/orig 2025-01-24T02:40:36.9586910Z * [new branch] gh/eellison/745/base -> origin/gh/eellison/745/base 2025-01-24T02:40:36.9587440Z * [new branch] gh/eellison/745/head -> origin/gh/eellison/745/head 2025-01-24T02:40:36.9589180Z * [new branch] gh/eellison/745/orig -> origin/gh/eellison/745/orig 2025-01-24T02:40:36.9591480Z * [new branch] gh/eellison/747/base -> origin/gh/eellison/747/base 2025-01-24T02:40:36.9593480Z * [new branch] gh/eellison/747/head -> origin/gh/eellison/747/head 2025-01-24T02:40:36.9595150Z * [new branch] gh/eellison/747/orig -> origin/gh/eellison/747/orig 2025-01-24T02:40:36.9597630Z * [new branch] gh/eellison/748/base -> origin/gh/eellison/748/base 2025-01-24T02:40:36.9599290Z * [new branch] gh/eellison/748/head -> origin/gh/eellison/748/head 2025-01-24T02:40:36.9601120Z * [new branch] gh/eellison/748/orig -> origin/gh/eellison/748/orig 2025-01-24T02:40:36.9603440Z * [new branch] gh/eellison/749/base -> origin/gh/eellison/749/base 2025-01-24T02:40:36.9605440Z * [new branch] gh/eellison/749/head -> origin/gh/eellison/749/head 2025-01-24T02:40:36.9607390Z * [new branch] gh/eellison/749/orig -> origin/gh/eellison/749/orig 2025-01-24T02:40:36.9609640Z * [new branch] gh/eellison/750/base -> origin/gh/eellison/750/base 2025-01-24T02:40:36.9612120Z * [new branch] gh/eellison/750/head -> origin/gh/eellison/750/head 2025-01-24T02:40:36.9614090Z * [new branch] gh/eellison/750/orig -> origin/gh/eellison/750/orig 2025-01-24T02:40:36.9616750Z * [new branch] gh/eellison/751/base -> origin/gh/eellison/751/base 2025-01-24T02:40:36.9618520Z * [new branch] gh/eellison/751/head -> origin/gh/eellison/751/head 2025-01-24T02:40:36.9620430Z * [new branch] gh/eellison/751/orig -> origin/gh/eellison/751/orig 2025-01-24T02:40:36.9622840Z * [new branch] gh/eellison/752/base -> origin/gh/eellison/752/base 2025-01-24T02:40:36.9624680Z * [new branch] gh/eellison/752/head -> origin/gh/eellison/752/head 2025-01-24T02:40:36.9626550Z * [new branch] gh/eellison/752/orig -> origin/gh/eellison/752/orig 2025-01-24T02:40:36.9629100Z * [new branch] gh/eellison/753/base -> origin/gh/eellison/753/base 2025-01-24T02:40:36.9630970Z * [new branch] gh/eellison/753/head -> origin/gh/eellison/753/head 2025-01-24T02:40:36.9632710Z * [new branch] gh/eellison/753/orig -> origin/gh/eellison/753/orig 2025-01-24T02:40:36.9635170Z * [new branch] gh/eellison/754/base -> origin/gh/eellison/754/base 2025-01-24T02:40:36.9637150Z * [new branch] gh/eellison/754/head -> origin/gh/eellison/754/head 2025-01-24T02:40:36.9639000Z * [new branch] gh/eellison/754/orig -> origin/gh/eellison/754/orig 2025-01-24T02:40:36.9641990Z * [new branch] gh/etaf/64/base -> origin/gh/etaf/64/base 2025-01-24T02:40:36.9643570Z * [new branch] gh/etaf/64/head -> origin/gh/etaf/64/head 2025-01-24T02:40:36.9645450Z * [new branch] gh/etaf/64/orig -> origin/gh/etaf/64/orig 2025-01-24T02:40:36.9647950Z * [new branch] gh/etaf/68/base -> origin/gh/etaf/68/base 2025-01-24T02:40:36.9649890Z * [new branch] gh/etaf/68/head -> origin/gh/etaf/68/head 2025-01-24T02:40:36.9651680Z * [new branch] gh/etaf/68/orig -> origin/gh/etaf/68/orig 2025-01-24T02:40:36.9654030Z * [new branch] gh/etaf/69/base -> origin/gh/etaf/69/base 2025-01-24T02:40:36.9655860Z * [new branch] gh/etaf/69/head -> origin/gh/etaf/69/head 2025-01-24T02:40:36.9657780Z * [new branch] gh/etaf/69/orig -> origin/gh/etaf/69/orig 2025-01-24T02:40:36.9660220Z * [new branch] gh/etaf/76/base -> origin/gh/etaf/76/base 2025-01-24T02:40:36.9662030Z * [new branch] gh/etaf/76/head -> origin/gh/etaf/76/head 2025-01-24T02:40:36.9663810Z * [new branch] gh/etaf/76/orig -> origin/gh/etaf/76/orig 2025-01-24T02:40:36.9665900Z * [new branch] gh/etaf/78/base -> origin/gh/etaf/78/base 2025-01-24T02:40:36.9668040Z * [new branch] gh/etaf/78/head -> origin/gh/etaf/78/head 2025-01-24T02:40:36.9669840Z * [new branch] gh/etaf/78/orig -> origin/gh/etaf/78/orig 2025-01-24T02:40:36.9672300Z * [new branch] gh/etaf/79/base -> origin/gh/etaf/79/base 2025-01-24T02:40:36.9673960Z * [new branch] gh/etaf/79/head -> origin/gh/etaf/79/head 2025-01-24T02:40:36.9675900Z * [new branch] gh/etaf/79/orig -> origin/gh/etaf/79/orig 2025-01-24T02:40:36.9678270Z * [new branch] gh/etaf/80/base -> origin/gh/etaf/80/base 2025-01-24T02:40:36.9679860Z * [new branch] gh/etaf/80/head -> origin/gh/etaf/80/head 2025-01-24T02:40:36.9681520Z * [new branch] gh/etaf/80/orig -> origin/gh/etaf/80/orig 2025-01-24T02:40:36.9684080Z * [new branch] gh/etaf/81/base -> origin/gh/etaf/81/base 2025-01-24T02:40:36.9685930Z * [new branch] gh/etaf/81/head -> origin/gh/etaf/81/head 2025-01-24T02:40:36.9687670Z * [new branch] gh/etaf/81/orig -> origin/gh/etaf/81/orig 2025-01-24T02:40:36.9690170Z * [new branch] gh/etaf/82/base -> origin/gh/etaf/82/base 2025-01-24T02:40:36.9692030Z * [new branch] gh/etaf/82/head -> origin/gh/etaf/82/head 2025-01-24T02:40:36.9693940Z * [new branch] gh/etaf/82/orig -> origin/gh/etaf/82/orig 2025-01-24T02:40:36.9696180Z * [new branch] gh/etaf/83/base -> origin/gh/etaf/83/base 2025-01-24T02:40:36.9697780Z * [new branch] gh/etaf/83/head -> origin/gh/etaf/83/head 2025-01-24T02:40:36.9699640Z * [new branch] gh/etaf/83/orig -> origin/gh/etaf/83/orig 2025-01-24T02:40:36.9702460Z * [new branch] gh/etaf/84/base -> origin/gh/etaf/84/base 2025-01-24T02:40:36.9704380Z * [new branch] gh/etaf/84/head -> origin/gh/etaf/84/head 2025-01-24T02:40:36.9705860Z * [new branch] gh/etaf/84/orig -> origin/gh/etaf/84/orig 2025-01-24T02:40:36.9708650Z * [new branch] gh/etaf/85/base -> origin/gh/etaf/85/base 2025-01-24T02:40:36.9710540Z * [new branch] gh/etaf/85/head -> origin/gh/etaf/85/head 2025-01-24T02:40:36.9712140Z * [new branch] gh/etaf/85/orig -> origin/gh/etaf/85/orig 2025-01-24T02:40:36.9714530Z * [new branch] gh/etaf/86/base -> origin/gh/etaf/86/base 2025-01-24T02:40:36.9716580Z * [new branch] gh/etaf/86/head -> origin/gh/etaf/86/head 2025-01-24T02:40:36.9718820Z * [new branch] gh/etaf/86/orig -> origin/gh/etaf/86/orig 2025-01-24T02:40:36.9721180Z * [new branch] gh/etaf/87/base -> origin/gh/etaf/87/base 2025-01-24T02:40:36.9722800Z * [new branch] gh/etaf/87/head -> origin/gh/etaf/87/head 2025-01-24T02:40:36.9724530Z * [new branch] gh/etaf/87/orig -> origin/gh/etaf/87/orig 2025-01-24T02:40:36.9727030Z * [new branch] gh/etaf/88/base -> origin/gh/etaf/88/base 2025-01-24T02:40:36.9728910Z * [new branch] gh/etaf/88/head -> origin/gh/etaf/88/head 2025-01-24T02:40:36.9730840Z * [new branch] gh/etaf/88/orig -> origin/gh/etaf/88/orig 2025-01-24T02:40:36.9733560Z * [new branch] gh/etaf/89/base -> origin/gh/etaf/89/base 2025-01-24T02:40:36.9735060Z * [new branch] gh/etaf/89/head -> origin/gh/etaf/89/head 2025-01-24T02:40:36.9736920Z * [new branch] gh/etaf/89/orig -> origin/gh/etaf/89/orig 2025-01-24T02:40:36.9739530Z * [new branch] gh/etaf/90/base -> origin/gh/etaf/90/base 2025-01-24T02:40:36.9741130Z * [new branch] gh/etaf/90/head -> origin/gh/etaf/90/head 2025-01-24T02:40:36.9743030Z * [new branch] gh/etaf/90/orig -> origin/gh/etaf/90/orig 2025-01-24T02:40:36.9745570Z * [new branch] gh/etaf/91/base -> origin/gh/etaf/91/base 2025-01-24T02:40:36.9747110Z * [new branch] gh/etaf/91/head -> origin/gh/etaf/91/head 2025-01-24T02:40:36.9749660Z * [new branch] gh/etaf/91/orig -> origin/gh/etaf/91/orig 2025-01-24T02:40:36.9752690Z * [new branch] gh/etaf/92/base -> origin/gh/etaf/92/base 2025-01-24T02:40:36.9754500Z * [new branch] gh/etaf/92/head -> origin/gh/etaf/92/head 2025-01-24T02:40:36.9756320Z * [new branch] gh/etaf/92/orig -> origin/gh/etaf/92/orig 2025-01-24T02:40:36.9758810Z * [new branch] gh/etaf/93/base -> origin/gh/etaf/93/base 2025-01-24T02:40:36.9760770Z * [new branch] gh/etaf/93/head -> origin/gh/etaf/93/head 2025-01-24T02:40:36.9762310Z * [new branch] gh/etaf/93/orig -> origin/gh/etaf/93/orig 2025-01-24T02:40:36.9764930Z * [new branch] gh/etaf/94/base -> origin/gh/etaf/94/base 2025-01-24T02:40:36.9766550Z * [new branch] gh/etaf/94/head -> origin/gh/etaf/94/head 2025-01-24T02:40:36.9768390Z * [new branch] gh/etaf/94/orig -> origin/gh/etaf/94/orig 2025-01-24T02:40:36.9775240Z * [new branch] gh/etaf/95/base -> origin/gh/etaf/95/base 2025-01-24T02:40:36.9775770Z * [new branch] gh/etaf/95/head -> origin/gh/etaf/95/head 2025-01-24T02:40:36.9776260Z * [new branch] gh/etaf/95/orig -> origin/gh/etaf/95/orig 2025-01-24T02:40:36.9777910Z * [new branch] gh/ezyang/2374/base -> origin/gh/ezyang/2374/base 2025-01-24T02:40:36.9779620Z * [new branch] gh/ezyang/2374/head -> origin/gh/ezyang/2374/head 2025-01-24T02:40:36.9781620Z * [new branch] gh/ezyang/2374/orig -> origin/gh/ezyang/2374/orig 2025-01-24T02:40:36.9783940Z * [new branch] gh/ezyang/2449/orig -> origin/gh/ezyang/2449/orig 2025-01-24T02:40:36.9786450Z * [new branch] gh/ezyang/2479/next -> origin/gh/ezyang/2479/next 2025-01-24T02:40:36.9789170Z * [new branch] gh/ezyang/2480/next -> origin/gh/ezyang/2480/next 2025-01-24T02:40:36.9791390Z * [new branch] gh/ezyang/2973/base -> origin/gh/ezyang/2973/base 2025-01-24T02:40:36.9793160Z * [new branch] gh/ezyang/2973/head -> origin/gh/ezyang/2973/head 2025-01-24T02:40:36.9795020Z * [new branch] gh/ezyang/2973/orig -> origin/gh/ezyang/2973/orig 2025-01-24T02:40:36.9797600Z * [new branch] gh/ezyang/2974/base -> origin/gh/ezyang/2974/base 2025-01-24T02:40:36.9799520Z * [new branch] gh/ezyang/2974/head -> origin/gh/ezyang/2974/head 2025-01-24T02:40:36.9800850Z * [new branch] gh/ezyang/2974/orig -> origin/gh/ezyang/2974/orig 2025-01-24T02:40:36.9803420Z * [new branch] gh/ezyang/2987/base -> origin/gh/ezyang/2987/base 2025-01-24T02:40:36.9805470Z * [new branch] gh/ezyang/2987/head -> origin/gh/ezyang/2987/head 2025-01-24T02:40:36.9807320Z * [new branch] gh/ezyang/2987/orig -> origin/gh/ezyang/2987/orig 2025-01-24T02:40:36.9809610Z * [new branch] gh/ezyang/2997/base -> origin/gh/ezyang/2997/base 2025-01-24T02:40:36.9811490Z * [new branch] gh/ezyang/2997/head -> origin/gh/ezyang/2997/head 2025-01-24T02:40:36.9813510Z * [new branch] gh/ezyang/2997/orig -> origin/gh/ezyang/2997/orig 2025-01-24T02:40:36.9815830Z * [new branch] gh/ezyang/3031/base -> origin/gh/ezyang/3031/base 2025-01-24T02:40:36.9817770Z * [new branch] gh/ezyang/3031/head -> origin/gh/ezyang/3031/head 2025-01-24T02:40:36.9819600Z * [new branch] gh/ezyang/3031/orig -> origin/gh/ezyang/3031/orig 2025-01-24T02:40:36.9821990Z * [new branch] gh/ezyang/3045/base -> origin/gh/ezyang/3045/base 2025-01-24T02:40:36.9823840Z * [new branch] gh/ezyang/3045/head -> origin/gh/ezyang/3045/head 2025-01-24T02:40:36.9825620Z * [new branch] gh/ezyang/3045/orig -> origin/gh/ezyang/3045/orig 2025-01-24T02:40:36.9828330Z * [new branch] gh/ezyang/3047/base -> origin/gh/ezyang/3047/base 2025-01-24T02:40:36.9830340Z * [new branch] gh/ezyang/3047/head -> origin/gh/ezyang/3047/head 2025-01-24T02:40:36.9832100Z * [new branch] gh/ezyang/3047/orig -> origin/gh/ezyang/3047/orig 2025-01-24T02:40:36.9834640Z * [new branch] gh/ezyang/3051/base -> origin/gh/ezyang/3051/base 2025-01-24T02:40:36.9836430Z * [new branch] gh/ezyang/3051/head -> origin/gh/ezyang/3051/head 2025-01-24T02:40:36.9838400Z * [new branch] gh/ezyang/3051/orig -> origin/gh/ezyang/3051/orig 2025-01-24T02:40:36.9840850Z * [new branch] gh/ezyang/3056/base -> origin/gh/ezyang/3056/base 2025-01-24T02:40:36.9842830Z * [new branch] gh/ezyang/3056/head -> origin/gh/ezyang/3056/head 2025-01-24T02:40:36.9844560Z * [new branch] gh/ezyang/3056/orig -> origin/gh/ezyang/3056/orig 2025-01-24T02:40:36.9847250Z * [new branch] gh/ezyang/3057/base -> origin/gh/ezyang/3057/base 2025-01-24T02:40:36.9849150Z * [new branch] gh/ezyang/3057/head -> origin/gh/ezyang/3057/head 2025-01-24T02:40:36.9850830Z * [new branch] gh/ezyang/3057/orig -> origin/gh/ezyang/3057/orig 2025-01-24T02:40:36.9853270Z * [new branch] gh/ezyang/3058/base -> origin/gh/ezyang/3058/base 2025-01-24T02:40:36.9855090Z * [new branch] gh/ezyang/3058/head -> origin/gh/ezyang/3058/head 2025-01-24T02:40:36.9857000Z * [new branch] gh/ezyang/3058/orig -> origin/gh/ezyang/3058/orig 2025-01-24T02:40:36.9859420Z * [new branch] gh/ezyang/3059/base -> origin/gh/ezyang/3059/base 2025-01-24T02:40:36.9861330Z * [new branch] gh/ezyang/3059/head -> origin/gh/ezyang/3059/head 2025-01-24T02:40:36.9863210Z * [new branch] gh/ezyang/3059/orig -> origin/gh/ezyang/3059/orig 2025-01-24T02:40:36.9865880Z * [new branch] gh/ezyang/3060/base -> origin/gh/ezyang/3060/base 2025-01-24T02:40:36.9867810Z * [new branch] gh/ezyang/3060/head -> origin/gh/ezyang/3060/head 2025-01-24T02:40:36.9869500Z * [new branch] gh/ezyang/3060/orig -> origin/gh/ezyang/3060/orig 2025-01-24T02:40:36.9871870Z * [new branch] gh/ezyang/3061/base -> origin/gh/ezyang/3061/base 2025-01-24T02:40:36.9873790Z * [new branch] gh/ezyang/3061/head -> origin/gh/ezyang/3061/head 2025-01-24T02:40:36.9875410Z * [new branch] gh/ezyang/3061/orig -> origin/gh/ezyang/3061/orig 2025-01-24T02:40:36.9878080Z * [new branch] gh/ezyang/3062/base -> origin/gh/ezyang/3062/base 2025-01-24T02:40:36.9879970Z * [new branch] gh/ezyang/3062/head -> origin/gh/ezyang/3062/head 2025-01-24T02:40:36.9881810Z * [new branch] gh/ezyang/3062/orig -> origin/gh/ezyang/3062/orig 2025-01-24T02:40:36.9884290Z * [new branch] gh/ezyang/3063/base -> origin/gh/ezyang/3063/base 2025-01-24T02:40:36.9885890Z * [new branch] gh/ezyang/3063/head -> origin/gh/ezyang/3063/head 2025-01-24T02:40:36.9887730Z * [new branch] gh/ezyang/3063/orig -> origin/gh/ezyang/3063/orig 2025-01-24T02:40:36.9890010Z * [new branch] gh/ezyang/3064/base -> origin/gh/ezyang/3064/base 2025-01-24T02:40:36.9892180Z * [new branch] gh/ezyang/3064/head -> origin/gh/ezyang/3064/head 2025-01-24T02:40:36.9893870Z * [new branch] gh/ezyang/3064/orig -> origin/gh/ezyang/3064/orig 2025-01-24T02:40:36.9896280Z * [new branch] gh/ezyang/3065/base -> origin/gh/ezyang/3065/base 2025-01-24T02:40:36.9898130Z * [new branch] gh/ezyang/3065/head -> origin/gh/ezyang/3065/head 2025-01-24T02:40:36.9899940Z * [new branch] gh/ezyang/3065/orig -> origin/gh/ezyang/3065/orig 2025-01-24T02:40:36.9902490Z * [new branch] gh/ezyang/3066/base -> origin/gh/ezyang/3066/base 2025-01-24T02:40:36.9903930Z * [new branch] gh/ezyang/3066/head -> origin/gh/ezyang/3066/head 2025-01-24T02:40:36.9906530Z * [new branch] gh/ezyang/3066/orig -> origin/gh/ezyang/3066/orig 2025-01-24T02:40:36.9908550Z * [new branch] gh/ezyang/3067/base -> origin/gh/ezyang/3067/base 2025-01-24T02:40:36.9910490Z * [new branch] gh/ezyang/3067/head -> origin/gh/ezyang/3067/head 2025-01-24T02:40:36.9912550Z * [new branch] gh/ezyang/3067/orig -> origin/gh/ezyang/3067/orig 2025-01-24T02:40:36.9914840Z * [new branch] gh/ezyang/3068/base -> origin/gh/ezyang/3068/base 2025-01-24T02:40:36.9916270Z * [new branch] gh/ezyang/3068/head -> origin/gh/ezyang/3068/head 2025-01-24T02:40:36.9918410Z * [new branch] gh/ezyang/3068/orig -> origin/gh/ezyang/3068/orig 2025-01-24T02:40:36.9920700Z * [new branch] gh/ezyang/3069/base -> origin/gh/ezyang/3069/base 2025-01-24T02:40:36.9922800Z * [new branch] gh/ezyang/3069/head -> origin/gh/ezyang/3069/head 2025-01-24T02:40:36.9924610Z * [new branch] gh/ezyang/3069/orig -> origin/gh/ezyang/3069/orig 2025-01-24T02:40:36.9926840Z * [new branch] gh/ezyang/3070/base -> origin/gh/ezyang/3070/base 2025-01-24T02:40:36.9928770Z * [new branch] gh/ezyang/3070/head -> origin/gh/ezyang/3070/head 2025-01-24T02:40:36.9930770Z * [new branch] gh/ezyang/3070/orig -> origin/gh/ezyang/3070/orig 2025-01-24T02:40:36.9933130Z * [new branch] gh/ezyang/3071/base -> origin/gh/ezyang/3071/base 2025-01-24T02:40:36.9935130Z * [new branch] gh/ezyang/3071/head -> origin/gh/ezyang/3071/head 2025-01-24T02:40:36.9936750Z * [new branch] gh/ezyang/3071/orig -> origin/gh/ezyang/3071/orig 2025-01-24T02:40:36.9941160Z * [new branch] gh/fduwjj/102/base -> origin/gh/fduwjj/102/base 2025-01-24T02:40:36.9941970Z * [new branch] gh/fduwjj/102/head -> origin/gh/fduwjj/102/head 2025-01-24T02:40:36.9944170Z * [new branch] gh/fduwjj/102/orig -> origin/gh/fduwjj/102/orig 2025-01-24T02:40:36.9946510Z * [new branch] gh/fduwjj/103/base -> origin/gh/fduwjj/103/base 2025-01-24T02:40:36.9948350Z * [new branch] gh/fduwjj/103/head -> origin/gh/fduwjj/103/head 2025-01-24T02:40:36.9949930Z * [new branch] gh/fduwjj/103/orig -> origin/gh/fduwjj/103/orig 2025-01-24T02:40:36.9952440Z * [new branch] gh/fduwjj/104/base -> origin/gh/fduwjj/104/base 2025-01-24T02:40:36.9954610Z * [new branch] gh/fduwjj/104/head -> origin/gh/fduwjj/104/head 2025-01-24T02:40:36.9956250Z * [new branch] gh/fduwjj/104/orig -> origin/gh/fduwjj/104/orig 2025-01-24T02:40:36.9958720Z * [new branch] gh/fduwjj/105/base -> origin/gh/fduwjj/105/base 2025-01-24T02:40:36.9960580Z * [new branch] gh/fduwjj/105/head -> origin/gh/fduwjj/105/head 2025-01-24T02:40:36.9963270Z * [new branch] gh/fduwjj/105/orig -> origin/gh/fduwjj/105/orig 2025-01-24T02:40:36.9964970Z * [new branch] gh/fduwjj/106/base -> origin/gh/fduwjj/106/base 2025-01-24T02:40:36.9966780Z * [new branch] gh/fduwjj/106/head -> origin/gh/fduwjj/106/head 2025-01-24T02:40:36.9968700Z * [new branch] gh/fduwjj/106/orig -> origin/gh/fduwjj/106/orig 2025-01-24T02:40:36.9974450Z * [new branch] gh/fduwjj/107/base -> origin/gh/fduwjj/107/base 2025-01-24T02:40:36.9974960Z * [new branch] gh/fduwjj/107/head -> origin/gh/fduwjj/107/head 2025-01-24T02:40:36.9975460Z * [new branch] gh/fduwjj/107/orig -> origin/gh/fduwjj/107/orig 2025-01-24T02:40:36.9977370Z * [new branch] gh/fduwjj/108/base -> origin/gh/fduwjj/108/base 2025-01-24T02:40:36.9979220Z * [new branch] gh/fduwjj/108/head -> origin/gh/fduwjj/108/head 2025-01-24T02:40:36.9980810Z * [new branch] gh/fduwjj/108/orig -> origin/gh/fduwjj/108/orig 2025-01-24T02:40:36.9983180Z * [new branch] gh/fduwjj/109/base -> origin/gh/fduwjj/109/base 2025-01-24T02:40:36.9984860Z * [new branch] gh/fduwjj/109/head -> origin/gh/fduwjj/109/head 2025-01-24T02:40:36.9986910Z * [new branch] gh/fduwjj/109/orig -> origin/gh/fduwjj/109/orig 2025-01-24T02:40:36.9990150Z * [new branch] gh/fegin/148/base -> origin/gh/fegin/148/base 2025-01-24T02:40:36.9991790Z * [new branch] gh/fegin/148/head -> origin/gh/fegin/148/head 2025-01-24T02:40:36.9993710Z * [new branch] gh/fegin/148/orig -> origin/gh/fegin/148/orig 2025-01-24T02:40:36.9996130Z * [new branch] gh/fegin/159/base -> origin/gh/fegin/159/base 2025-01-24T02:40:36.9998030Z * [new branch] gh/fegin/159/head -> origin/gh/fegin/159/head 2025-01-24T02:40:36.9999890Z * [new branch] gh/fegin/159/orig -> origin/gh/fegin/159/orig 2025-01-24T02:40:37.0002420Z * [new branch] gh/fegin/160/base -> origin/gh/fegin/160/base 2025-01-24T02:40:37.0004080Z * [new branch] gh/fegin/160/head -> origin/gh/fegin/160/head 2025-01-24T02:40:37.0006160Z * [new branch] gh/fegin/160/orig -> origin/gh/fegin/160/orig 2025-01-24T02:40:37.0008710Z * [new branch] gh/fegin/169/base -> origin/gh/fegin/169/base 2025-01-24T02:40:37.0010480Z * [new branch] gh/fegin/169/head -> origin/gh/fegin/169/head 2025-01-24T02:40:37.0012330Z * [new branch] gh/fegin/169/orig -> origin/gh/fegin/169/orig 2025-01-24T02:40:37.0014840Z * [new branch] gh/fegin/171/base -> origin/gh/fegin/171/base 2025-01-24T02:40:37.0016840Z * [new branch] gh/fegin/171/head -> origin/gh/fegin/171/head 2025-01-24T02:40:37.0018630Z * [new branch] gh/fegin/171/orig -> origin/gh/fegin/171/orig 2025-01-24T02:40:37.0021200Z * [new branch] gh/fegin/172/base -> origin/gh/fegin/172/base 2025-01-24T02:40:37.0023220Z * [new branch] gh/fegin/172/head -> origin/gh/fegin/172/head 2025-01-24T02:40:37.0024830Z * [new branch] gh/fegin/172/orig -> origin/gh/fegin/172/orig 2025-01-24T02:40:37.0027390Z * [new branch] gh/fegin/292/base -> origin/gh/fegin/292/base 2025-01-24T02:40:37.0029410Z * [new branch] gh/fegin/292/head -> origin/gh/fegin/292/head 2025-01-24T02:40:37.0031230Z * [new branch] gh/fegin/292/orig -> origin/gh/fegin/292/orig 2025-01-24T02:40:37.0033670Z * [new branch] gh/fegin/293/base -> origin/gh/fegin/293/base 2025-01-24T02:40:37.0035520Z * [new branch] gh/fegin/293/head -> origin/gh/fegin/293/head 2025-01-24T02:40:37.0037370Z * [new branch] gh/fegin/293/orig -> origin/gh/fegin/293/orig 2025-01-24T02:40:37.0039900Z * [new branch] gh/fegin/294/base -> origin/gh/fegin/294/base 2025-01-24T02:40:37.0041740Z * [new branch] gh/fegin/294/head -> origin/gh/fegin/294/head 2025-01-24T02:40:37.0043670Z * [new branch] gh/fegin/294/orig -> origin/gh/fegin/294/orig 2025-01-24T02:40:37.0047340Z * [new branch] gh/fffrog/26/base -> origin/gh/fffrog/26/base 2025-01-24T02:40:37.0049140Z * [new branch] gh/fffrog/26/head -> origin/gh/fffrog/26/head 2025-01-24T02:40:37.0051160Z * [new branch] gh/fffrog/26/orig -> origin/gh/fffrog/26/orig 2025-01-24T02:40:37.0053570Z * [new branch] gh/fffrog/28/base -> origin/gh/fffrog/28/base 2025-01-24T02:40:37.0055570Z * [new branch] gh/fffrog/28/head -> origin/gh/fffrog/28/head 2025-01-24T02:40:37.0057440Z * [new branch] gh/fffrog/28/orig -> origin/gh/fffrog/28/orig 2025-01-24T02:40:37.0059960Z * [new branch] gh/fffrog/37/base -> origin/gh/fffrog/37/base 2025-01-24T02:40:37.0061810Z * [new branch] gh/fffrog/37/head -> origin/gh/fffrog/37/head 2025-01-24T02:40:37.0063650Z * [new branch] gh/fffrog/37/orig -> origin/gh/fffrog/37/orig 2025-01-24T02:40:37.0066750Z * [new branch] gh/guangy10/2/base -> origin/gh/guangy10/2/base 2025-01-24T02:40:37.0068640Z * [new branch] gh/guangy10/2/orig -> origin/gh/guangy10/2/orig 2025-01-24T02:40:37.0071730Z * [new branch] gh/guangyey/100/base -> origin/gh/guangyey/100/base 2025-01-24T02:40:37.0073520Z * [new branch] gh/guangyey/100/head -> origin/gh/guangyey/100/head 2025-01-24T02:40:37.0075480Z * [new branch] gh/guangyey/100/orig -> origin/gh/guangyey/100/orig 2025-01-24T02:40:37.0078020Z * [new branch] gh/guangyey/105/base -> origin/gh/guangyey/105/base 2025-01-24T02:40:37.0079840Z * [new branch] gh/guangyey/105/head -> origin/gh/guangyey/105/head 2025-01-24T02:40:37.0081810Z * [new branch] gh/guangyey/105/orig -> origin/gh/guangyey/105/orig 2025-01-24T02:40:37.0084210Z * [new branch] gh/guangyey/111/base -> origin/gh/guangyey/111/base 2025-01-24T02:40:37.0086180Z * [new branch] gh/guangyey/111/head -> origin/gh/guangyey/111/head 2025-01-24T02:40:37.0087970Z * [new branch] gh/guangyey/111/orig -> origin/gh/guangyey/111/orig 2025-01-24T02:40:37.0090400Z * [new branch] gh/guangyey/112/base -> origin/gh/guangyey/112/base 2025-01-24T02:40:37.0092250Z * [new branch] gh/guangyey/112/head -> origin/gh/guangyey/112/head 2025-01-24T02:40:37.0094220Z * [new branch] gh/guangyey/112/orig -> origin/gh/guangyey/112/orig 2025-01-24T02:40:37.0096250Z * [new branch] gh/guangyey/113/base -> origin/gh/guangyey/113/base 2025-01-24T02:40:37.0098430Z * [new branch] gh/guangyey/113/head -> origin/gh/guangyey/113/head 2025-01-24T02:40:37.0100300Z * [new branch] gh/guangyey/113/orig -> origin/gh/guangyey/113/orig 2025-01-24T02:40:37.0102770Z * [new branch] gh/guangyey/114/base -> origin/gh/guangyey/114/base 2025-01-24T02:40:37.0104520Z * [new branch] gh/guangyey/114/head -> origin/gh/guangyey/114/head 2025-01-24T02:40:37.0106190Z * [new branch] gh/guangyey/114/orig -> origin/gh/guangyey/114/orig 2025-01-24T02:40:37.0108820Z * [new branch] gh/guangyey/115/base -> origin/gh/guangyey/115/base 2025-01-24T02:40:37.0110460Z * [new branch] gh/guangyey/115/head -> origin/gh/guangyey/115/head 2025-01-24T02:40:37.0112370Z * [new branch] gh/guangyey/115/orig -> origin/gh/guangyey/115/orig 2025-01-24T02:40:37.0114880Z * [new branch] gh/guangyey/116/base -> origin/gh/guangyey/116/base 2025-01-24T02:40:37.0116800Z * [new branch] gh/guangyey/116/head -> origin/gh/guangyey/116/head 2025-01-24T02:40:37.0118640Z * [new branch] gh/guangyey/116/orig -> origin/gh/guangyey/116/orig 2025-01-24T02:40:37.0121110Z * [new branch] gh/guangyey/117/base -> origin/gh/guangyey/117/base 2025-01-24T02:40:37.0122780Z * [new branch] gh/guangyey/117/head -> origin/gh/guangyey/117/head 2025-01-24T02:40:37.0124710Z * [new branch] gh/guangyey/117/orig -> origin/gh/guangyey/117/orig 2025-01-24T02:40:37.0126800Z * [new branch] gh/guangyey/118/base -> origin/gh/guangyey/118/base 2025-01-24T02:40:37.0129160Z * [new branch] gh/guangyey/118/head -> origin/gh/guangyey/118/head 2025-01-24T02:40:37.0131000Z * [new branch] gh/guangyey/118/orig -> origin/gh/guangyey/118/orig 2025-01-24T02:40:37.0133400Z * [new branch] gh/guangyey/119/base -> origin/gh/guangyey/119/base 2025-01-24T02:40:37.0135230Z * [new branch] gh/guangyey/119/head -> origin/gh/guangyey/119/head 2025-01-24T02:40:37.0137230Z * [new branch] gh/guangyey/119/orig -> origin/gh/guangyey/119/orig 2025-01-24T02:40:37.0139370Z * [new branch] gh/guangyey/120/base -> origin/gh/guangyey/120/base 2025-01-24T02:40:37.0141090Z * [new branch] gh/guangyey/120/head -> origin/gh/guangyey/120/head 2025-01-24T02:40:37.0142960Z * [new branch] gh/guangyey/120/orig -> origin/gh/guangyey/120/orig 2025-01-24T02:40:37.0145510Z * [new branch] gh/guangyey/121/base -> origin/gh/guangyey/121/base 2025-01-24T02:40:37.0147340Z * [new branch] gh/guangyey/121/head -> origin/gh/guangyey/121/head 2025-01-24T02:40:37.0149390Z * [new branch] gh/guangyey/121/orig -> origin/gh/guangyey/121/orig 2025-01-24T02:40:37.0151770Z * [new branch] gh/guangyey/71/base -> origin/gh/guangyey/71/base 2025-01-24T02:40:37.0153650Z * [new branch] gh/guangyey/71/head -> origin/gh/guangyey/71/head 2025-01-24T02:40:37.0155610Z * [new branch] gh/guangyey/71/orig -> origin/gh/guangyey/71/orig 2025-01-24T02:40:37.0157960Z * [new branch] gh/guangyey/79/base -> origin/gh/guangyey/79/base 2025-01-24T02:40:37.0159860Z * [new branch] gh/guangyey/79/head -> origin/gh/guangyey/79/head 2025-01-24T02:40:37.0161800Z * [new branch] gh/guangyey/79/orig -> origin/gh/guangyey/79/orig 2025-01-24T02:40:37.0164270Z * [new branch] gh/guangyey/87/base -> origin/gh/guangyey/87/base 2025-01-24T02:40:37.0165760Z * [new branch] gh/guangyey/87/head -> origin/gh/guangyey/87/head 2025-01-24T02:40:37.0167810Z * [new branch] gh/guangyey/87/orig -> origin/gh/guangyey/87/orig 2025-01-24T02:40:37.0170440Z * [new branch] gh/guangyey/89/base -> origin/gh/guangyey/89/base 2025-01-24T02:40:37.0172130Z * [new branch] gh/guangyey/89/head -> origin/gh/guangyey/89/head 2025-01-24T02:40:37.0174010Z * [new branch] gh/guangyey/89/orig -> origin/gh/guangyey/89/orig 2025-01-24T02:40:37.0176450Z * [new branch] gh/guangyey/90/base -> origin/gh/guangyey/90/base 2025-01-24T02:40:37.0178380Z * [new branch] gh/guangyey/90/head -> origin/gh/guangyey/90/head 2025-01-24T02:40:37.0179880Z * [new branch] gh/guangyey/90/orig -> origin/gh/guangyey/90/orig 2025-01-24T02:40:37.0182310Z * [new branch] gh/guangyey/99/base -> origin/gh/guangyey/99/base 2025-01-24T02:40:37.0184390Z * [new branch] gh/guangyey/99/head -> origin/gh/guangyey/99/head 2025-01-24T02:40:37.0186150Z * [new branch] gh/guangyey/99/orig -> origin/gh/guangyey/99/orig 2025-01-24T02:40:37.0189330Z * [new branch] gh/guilhermeleobas/11/base -> origin/gh/guilhermeleobas/11/base 2025-01-24T02:40:37.0191130Z * [new branch] gh/guilhermeleobas/11/head -> origin/gh/guilhermeleobas/11/head 2025-01-24T02:40:37.0193000Z * [new branch] gh/guilhermeleobas/11/orig -> origin/gh/guilhermeleobas/11/orig 2025-01-24T02:40:37.0195510Z * [new branch] gh/guilhermeleobas/65/base -> origin/gh/guilhermeleobas/65/base 2025-01-24T02:40:37.0197380Z * [new branch] gh/guilhermeleobas/65/head -> origin/gh/guilhermeleobas/65/head 2025-01-24T02:40:37.0199530Z * [new branch] gh/guilhermeleobas/65/orig -> origin/gh/guilhermeleobas/65/orig 2025-01-24T02:40:37.0201830Z * [new branch] gh/guilhermeleobas/69/base -> origin/gh/guilhermeleobas/69/base 2025-01-24T02:40:37.0203920Z * [new branch] gh/guilhermeleobas/69/head -> origin/gh/guilhermeleobas/69/head 2025-01-24T02:40:37.0205630Z * [new branch] gh/guilhermeleobas/69/orig -> origin/gh/guilhermeleobas/69/orig 2025-01-24T02:40:37.0208040Z * [new branch] gh/guilhermeleobas/73/base -> origin/gh/guilhermeleobas/73/base 2025-01-24T02:40:37.0210050Z * [new branch] gh/guilhermeleobas/73/head -> origin/gh/guilhermeleobas/73/head 2025-01-24T02:40:37.0211860Z * [new branch] gh/guilhermeleobas/73/orig -> origin/gh/guilhermeleobas/73/orig 2025-01-24T02:40:37.0214360Z * [new branch] gh/guilhermeleobas/74/base -> origin/gh/guilhermeleobas/74/base 2025-01-24T02:40:37.0216170Z * [new branch] gh/guilhermeleobas/74/head -> origin/gh/guilhermeleobas/74/head 2025-01-24T02:40:37.0217780Z * [new branch] gh/guilhermeleobas/74/orig -> origin/gh/guilhermeleobas/74/orig 2025-01-24T02:40:37.0220530Z * [new branch] gh/guilhermeleobas/77/base -> origin/gh/guilhermeleobas/77/base 2025-01-24T02:40:37.0222390Z * [new branch] gh/guilhermeleobas/77/head -> origin/gh/guilhermeleobas/77/head 2025-01-24T02:40:37.0224430Z * [new branch] gh/guilhermeleobas/77/orig -> origin/gh/guilhermeleobas/77/orig 2025-01-24T02:40:37.0226770Z * [new branch] gh/guilhermeleobas/79/base -> origin/gh/guilhermeleobas/79/base 2025-01-24T02:40:37.0228640Z * [new branch] gh/guilhermeleobas/79/head -> origin/gh/guilhermeleobas/79/head 2025-01-24T02:40:37.0230590Z * [new branch] gh/guilhermeleobas/79/orig -> origin/gh/guilhermeleobas/79/orig 2025-01-24T02:40:37.0233070Z * [new branch] gh/guilhermeleobas/82/base -> origin/gh/guilhermeleobas/82/base 2025-01-24T02:40:37.0234970Z * [new branch] gh/guilhermeleobas/82/head -> origin/gh/guilhermeleobas/82/head 2025-01-24T02:40:37.0237020Z * [new branch] gh/guilhermeleobas/82/orig -> origin/gh/guilhermeleobas/82/orig 2025-01-24T02:40:37.0239320Z * [new branch] gh/guilhermeleobas/83/base -> origin/gh/guilhermeleobas/83/base 2025-01-24T02:40:37.0241170Z * [new branch] gh/guilhermeleobas/83/head -> origin/gh/guilhermeleobas/83/head 2025-01-24T02:40:37.0242760Z * [new branch] gh/guilhermeleobas/83/orig -> origin/gh/guilhermeleobas/83/orig 2025-01-24T02:40:37.0245420Z * [new branch] gh/guilhermeleobas/84/base -> origin/gh/guilhermeleobas/84/base 2025-01-24T02:40:37.0247370Z * [new branch] gh/guilhermeleobas/84/head -> origin/gh/guilhermeleobas/84/head 2025-01-24T02:40:37.0249020Z * [new branch] gh/guilhermeleobas/84/orig -> origin/gh/guilhermeleobas/84/orig 2025-01-24T02:40:37.0251750Z * [new branch] gh/guilhermeleobas/85/base -> origin/gh/guilhermeleobas/85/base 2025-01-24T02:40:37.0253710Z * [new branch] gh/guilhermeleobas/85/head -> origin/gh/guilhermeleobas/85/head 2025-01-24T02:40:37.0255550Z * [new branch] gh/guilhermeleobas/85/orig -> origin/gh/guilhermeleobas/85/orig 2025-01-24T02:40:37.0261730Z * [new branch] gh/guilhermeleobas/86/base -> origin/gh/guilhermeleobas/86/base 2025-01-24T02:40:37.0262150Z * [new branch] gh/guilhermeleobas/86/head -> origin/gh/guilhermeleobas/86/head 2025-01-24T02:40:37.0262420Z * [new branch] gh/guilhermeleobas/86/orig -> origin/gh/guilhermeleobas/86/orig 2025-01-24T02:40:37.0264260Z * [new branch] gh/guilhermeleobas/87/base -> origin/gh/guilhermeleobas/87/base 2025-01-24T02:40:37.0265990Z * [new branch] gh/guilhermeleobas/87/head -> origin/gh/guilhermeleobas/87/head 2025-01-24T02:40:37.0268000Z * [new branch] gh/guilhermeleobas/87/orig -> origin/gh/guilhermeleobas/87/orig 2025-01-24T02:40:37.0270320Z * [new branch] gh/guilhermeleobas/88/base -> origin/gh/guilhermeleobas/88/base 2025-01-24T02:40:37.0272330Z * [new branch] gh/guilhermeleobas/88/head -> origin/gh/guilhermeleobas/88/head 2025-01-24T02:40:37.0274070Z * [new branch] gh/guilhermeleobas/88/orig -> origin/gh/guilhermeleobas/88/orig 2025-01-24T02:40:37.0276700Z * [new branch] gh/guilhermeleobas/89/base -> origin/gh/guilhermeleobas/89/base 2025-01-24T02:40:37.0278670Z * [new branch] gh/guilhermeleobas/89/head -> origin/gh/guilhermeleobas/89/head 2025-01-24T02:40:37.0280530Z * [new branch] gh/guilhermeleobas/89/orig -> origin/gh/guilhermeleobas/89/orig 2025-01-24T02:40:37.0283100Z * [new branch] gh/guilhermeleobas/90/base -> origin/gh/guilhermeleobas/90/base 2025-01-24T02:40:37.0285140Z * [new branch] gh/guilhermeleobas/90/head -> origin/gh/guilhermeleobas/90/head 2025-01-24T02:40:37.0286790Z * [new branch] gh/guilhermeleobas/90/orig -> origin/gh/guilhermeleobas/90/orig 2025-01-24T02:40:37.0289380Z * [new branch] gh/guilhermeleobas/91/base -> origin/gh/guilhermeleobas/91/base 2025-01-24T02:40:37.0291190Z * [new branch] gh/guilhermeleobas/91/head -> origin/gh/guilhermeleobas/91/head 2025-01-24T02:40:37.0292960Z * [new branch] gh/guilhermeleobas/91/orig -> origin/gh/guilhermeleobas/91/orig 2025-01-24T02:40:37.0296120Z * [new branch] gh/int3/10/base -> origin/gh/int3/10/base 2025-01-24T02:40:37.0298020Z * [new branch] gh/int3/10/head -> origin/gh/int3/10/head 2025-01-24T02:40:37.0299860Z * [new branch] gh/int3/10/orig -> origin/gh/int3/10/orig 2025-01-24T02:40:37.0302560Z * [new branch] gh/int3/100/base -> origin/gh/int3/100/base 2025-01-24T02:40:37.0304330Z * [new branch] gh/int3/100/head -> origin/gh/int3/100/head 2025-01-24T02:40:37.0306170Z * [new branch] gh/int3/100/orig -> origin/gh/int3/100/orig 2025-01-24T02:40:37.0308820Z * [new branch] gh/int3/109/base -> origin/gh/int3/109/base 2025-01-24T02:40:37.0310560Z * [new branch] gh/int3/109/head -> origin/gh/int3/109/head 2025-01-24T02:40:37.0312390Z * [new branch] gh/int3/109/orig -> origin/gh/int3/109/orig 2025-01-24T02:40:37.0314840Z * [new branch] gh/int3/11/base -> origin/gh/int3/11/base 2025-01-24T02:40:37.0316750Z * [new branch] gh/int3/11/head -> origin/gh/int3/11/head 2025-01-24T02:40:37.0318570Z * [new branch] gh/int3/11/orig -> origin/gh/int3/11/orig 2025-01-24T02:40:37.0321410Z * [new branch] gh/int3/113/base -> origin/gh/int3/113/base 2025-01-24T02:40:37.0323140Z * [new branch] gh/int3/113/head -> origin/gh/int3/113/head 2025-01-24T02:40:37.0324940Z * [new branch] gh/int3/113/orig -> origin/gh/int3/113/orig 2025-01-24T02:40:37.0327220Z * [new branch] gh/int3/2/base -> origin/gh/int3/2/base 2025-01-24T02:40:37.0329170Z * [new branch] gh/int3/2/orig -> origin/gh/int3/2/orig 2025-01-24T02:40:37.0332300Z * [new branch] gh/int3/21/base -> origin/gh/int3/21/base 2025-01-24T02:40:37.0334770Z * [new branch] gh/int3/21/head -> origin/gh/int3/21/head 2025-01-24T02:40:37.0336570Z * [new branch] gh/int3/21/orig -> origin/gh/int3/21/orig 2025-01-24T02:40:37.0339100Z * [new branch] gh/int3/34/base -> origin/gh/int3/34/base 2025-01-24T02:40:37.0340960Z * [new branch] gh/int3/34/head -> origin/gh/int3/34/head 2025-01-24T02:40:37.0342860Z * [new branch] gh/int3/34/orig -> origin/gh/int3/34/orig 2025-01-24T02:40:37.0345190Z * [new branch] gh/int3/36/base -> origin/gh/int3/36/base 2025-01-24T02:40:37.0347160Z * [new branch] gh/int3/36/head -> origin/gh/int3/36/head 2025-01-24T02:40:37.0349140Z * [new branch] gh/int3/36/orig -> origin/gh/int3/36/orig 2025-01-24T02:40:37.0351630Z * [new branch] gh/int3/41/base -> origin/gh/int3/41/base 2025-01-24T02:40:37.0353520Z * [new branch] gh/int3/41/head -> origin/gh/int3/41/head 2025-01-24T02:40:37.0355430Z * [new branch] gh/int3/41/orig -> origin/gh/int3/41/orig 2025-01-24T02:40:37.0357960Z * [new branch] gh/int3/45/base -> origin/gh/int3/45/base 2025-01-24T02:40:37.0359840Z * [new branch] gh/int3/45/head -> origin/gh/int3/45/head 2025-01-24T02:40:37.0361730Z * [new branch] gh/int3/45/orig -> origin/gh/int3/45/orig 2025-01-24T02:40:37.0364310Z * [new branch] gh/int3/46/base -> origin/gh/int3/46/base 2025-01-24T02:40:37.0366300Z * [new branch] gh/int3/46/head -> origin/gh/int3/46/head 2025-01-24T02:40:37.0367840Z * [new branch] gh/int3/46/orig -> origin/gh/int3/46/orig 2025-01-24T02:40:37.0370550Z * [new branch] gh/int3/47/base -> origin/gh/int3/47/base 2025-01-24T02:40:37.0372240Z * [new branch] gh/int3/47/head -> origin/gh/int3/47/head 2025-01-24T02:40:37.0374340Z * [new branch] gh/int3/47/orig -> origin/gh/int3/47/orig 2025-01-24T02:40:37.0378150Z * [new branch] gh/int3/55/base -> origin/gh/int3/55/base 2025-01-24T02:40:37.0378360Z * [new branch] gh/int3/55/head -> origin/gh/int3/55/head 2025-01-24T02:40:37.0380350Z * [new branch] gh/int3/55/orig -> origin/gh/int3/55/orig 2025-01-24T02:40:37.0382810Z * [new branch] gh/int3/79/base -> origin/gh/int3/79/base 2025-01-24T02:40:37.0384790Z * [new branch] gh/int3/79/head -> origin/gh/int3/79/head 2025-01-24T02:40:37.0386650Z * [new branch] gh/int3/79/orig -> origin/gh/int3/79/orig 2025-01-24T02:40:37.0389110Z * [new branch] gh/int3/9/base -> origin/gh/int3/9/base 2025-01-24T02:40:37.0391040Z * [new branch] gh/int3/9/head -> origin/gh/int3/9/head 2025-01-24T02:40:37.0392850Z * [new branch] gh/int3/9/orig -> origin/gh/int3/9/orig 2025-01-24T02:40:37.0395340Z * [new branch] gh/int3/94/base -> origin/gh/int3/94/base 2025-01-24T02:40:37.0397150Z * [new branch] gh/int3/94/head -> origin/gh/int3/94/head 2025-01-24T02:40:37.0399020Z * [new branch] gh/int3/94/orig -> origin/gh/int3/94/orig 2025-01-24T02:40:37.0401390Z * [new branch] gh/int3/95/base -> origin/gh/int3/95/base 2025-01-24T02:40:37.0403400Z * [new branch] gh/int3/95/head -> origin/gh/int3/95/head 2025-01-24T02:40:37.0405040Z * [new branch] gh/int3/95/orig -> origin/gh/int3/95/orig 2025-01-24T02:40:37.0407190Z * [new branch] gh/int3/97/base -> origin/gh/int3/97/base 2025-01-24T02:40:37.0409080Z * [new branch] gh/int3/97/head -> origin/gh/int3/97/head 2025-01-24T02:40:37.0412600Z * [new branch] gh/isuruf/101/base -> origin/gh/isuruf/101/base 2025-01-24T02:40:37.0414020Z * [new branch] gh/isuruf/101/head -> origin/gh/isuruf/101/head 2025-01-24T02:40:37.0416820Z * [new branch] gh/isuruf/102/base -> origin/gh/isuruf/102/base 2025-01-24T02:40:37.0418410Z * [new branch] gh/isuruf/102/head -> origin/gh/isuruf/102/head 2025-01-24T02:40:37.0420340Z * [new branch] gh/isuruf/102/orig -> origin/gh/isuruf/102/orig 2025-01-24T02:40:37.0422700Z * [new branch] gh/isuruf/103/base -> origin/gh/isuruf/103/base 2025-01-24T02:40:37.0424570Z * [new branch] gh/isuruf/103/head -> origin/gh/isuruf/103/head 2025-01-24T02:40:37.0426610Z * [new branch] gh/isuruf/103/orig -> origin/gh/isuruf/103/orig 2025-01-24T02:40:37.0428910Z * [new branch] gh/isuruf/105/base -> origin/gh/isuruf/105/base 2025-01-24T02:40:37.0430750Z * [new branch] gh/isuruf/105/head -> origin/gh/isuruf/105/head 2025-01-24T02:40:37.0432430Z * [new branch] gh/isuruf/105/orig -> origin/gh/isuruf/105/orig 2025-01-24T02:40:37.0435200Z * [new branch] gh/isuruf/108/base -> origin/gh/isuruf/108/base 2025-01-24T02:40:37.0436980Z * [new branch] gh/isuruf/108/head -> origin/gh/isuruf/108/head 2025-01-24T02:40:37.0438840Z * [new branch] gh/isuruf/108/orig -> origin/gh/isuruf/108/orig 2025-01-24T02:40:37.0441070Z * [new branch] gh/isuruf/109/base -> origin/gh/isuruf/109/base 2025-01-24T02:40:37.0442890Z * [new branch] gh/isuruf/109/head -> origin/gh/isuruf/109/head 2025-01-24T02:40:37.0444730Z * [new branch] gh/isuruf/109/orig -> origin/gh/isuruf/109/orig 2025-01-24T02:40:37.0447180Z * [new branch] gh/isuruf/110/base -> origin/gh/isuruf/110/base 2025-01-24T02:40:37.0448980Z * [new branch] gh/isuruf/110/head -> origin/gh/isuruf/110/head 2025-01-24T02:40:37.0450720Z * [new branch] gh/isuruf/110/orig -> origin/gh/isuruf/110/orig 2025-01-24T02:40:37.0453220Z * [new branch] gh/isuruf/111/base -> origin/gh/isuruf/111/base 2025-01-24T02:40:37.0454980Z * [new branch] gh/isuruf/111/head -> origin/gh/isuruf/111/head 2025-01-24T02:40:37.0456980Z * [new branch] gh/isuruf/111/orig -> origin/gh/isuruf/111/orig 2025-01-24T02:40:37.0459530Z * [new branch] gh/isuruf/112/base -> origin/gh/isuruf/112/base 2025-01-24T02:40:37.0461220Z * [new branch] gh/isuruf/112/head -> origin/gh/isuruf/112/head 2025-01-24T02:40:37.0462980Z * [new branch] gh/isuruf/112/orig -> origin/gh/isuruf/112/orig 2025-01-24T02:40:37.0465470Z * [new branch] gh/isuruf/113/base -> origin/gh/isuruf/113/base 2025-01-24T02:40:37.0467280Z * [new branch] gh/isuruf/113/head -> origin/gh/isuruf/113/head 2025-01-24T02:40:37.0469100Z * [new branch] gh/isuruf/113/orig -> origin/gh/isuruf/113/orig 2025-01-24T02:40:37.0471450Z * [new branch] gh/isuruf/114/base -> origin/gh/isuruf/114/base 2025-01-24T02:40:37.0473360Z * [new branch] gh/isuruf/114/head -> origin/gh/isuruf/114/head 2025-01-24T02:40:37.0474950Z * [new branch] gh/isuruf/114/orig -> origin/gh/isuruf/114/orig 2025-01-24T02:40:37.0477620Z * [new branch] gh/isuruf/115/base -> origin/gh/isuruf/115/base 2025-01-24T02:40:37.0479310Z * [new branch] gh/isuruf/115/head -> origin/gh/isuruf/115/head 2025-01-24T02:40:37.0481390Z * [new branch] gh/isuruf/115/orig -> origin/gh/isuruf/115/orig 2025-01-24T02:40:37.0483750Z * [new branch] gh/isuruf/116/base -> origin/gh/isuruf/116/base 2025-01-24T02:40:37.0485500Z * [new branch] gh/isuruf/116/head -> origin/gh/isuruf/116/head 2025-01-24T02:40:37.0487340Z * [new branch] gh/isuruf/116/orig -> origin/gh/isuruf/116/orig 2025-01-24T02:40:37.0489920Z * [new branch] gh/isuruf/117/base -> origin/gh/isuruf/117/base 2025-01-24T02:40:37.0491620Z * [new branch] gh/isuruf/117/head -> origin/gh/isuruf/117/head 2025-01-24T02:40:37.0493370Z * [new branch] gh/isuruf/117/orig -> origin/gh/isuruf/117/orig 2025-01-24T02:40:37.0495820Z * [new branch] gh/isuruf/39/base -> origin/gh/isuruf/39/base 2025-01-24T02:40:37.0497730Z * [new branch] gh/isuruf/39/head -> origin/gh/isuruf/39/head 2025-01-24T02:40:37.0499570Z * [new branch] gh/isuruf/39/orig -> origin/gh/isuruf/39/orig 2025-01-24T02:40:37.0501940Z * [new branch] gh/isuruf/74/base -> origin/gh/isuruf/74/base 2025-01-24T02:40:37.0503660Z * [new branch] gh/isuruf/74/head -> origin/gh/isuruf/74/head 2025-01-24T02:40:37.0505440Z * [new branch] gh/isuruf/74/orig -> origin/gh/isuruf/74/orig 2025-01-24T02:40:37.0507890Z * [new branch] gh/isuruf/81/base -> origin/gh/isuruf/81/base 2025-01-24T02:40:37.0509700Z * [new branch] gh/isuruf/81/head -> origin/gh/isuruf/81/head 2025-01-24T02:40:37.0511520Z * [new branch] gh/isuruf/81/orig -> origin/gh/isuruf/81/orig 2025-01-24T02:40:37.0513960Z * [new branch] gh/isuruf/98/base -> origin/gh/isuruf/98/base 2025-01-24T02:40:37.0515620Z * [new branch] gh/isuruf/98/head -> origin/gh/isuruf/98/head 2025-01-24T02:40:37.0517400Z * [new branch] gh/isuruf/98/orig -> origin/gh/isuruf/98/orig 2025-01-24T02:40:37.0520580Z * [new branch] gh/jamesjwu/52/base -> origin/gh/jamesjwu/52/base 2025-01-24T02:40:37.0522370Z * [new branch] gh/jamesjwu/52/head -> origin/gh/jamesjwu/52/head 2025-01-24T02:40:37.0524760Z * [new branch] gh/jamesjwu/53/base -> origin/gh/jamesjwu/53/base 2025-01-24T02:40:37.0526600Z * [new branch] gh/jamesjwu/53/head -> origin/gh/jamesjwu/53/head 2025-01-24T02:40:37.0531840Z * [new branch] gh/jamesjwu/54/base -> origin/gh/jamesjwu/54/base 2025-01-24T02:40:37.0539590Z * [new branch] gh/jamesjwu/54/head -> origin/gh/jamesjwu/54/head 2025-01-24T02:40:37.0546090Z * [new branch] gh/jamesjwu/55/base -> origin/gh/jamesjwu/55/base 2025-01-24T02:40:37.0553400Z * [new branch] gh/jamesjwu/55/head -> origin/gh/jamesjwu/55/head 2025-01-24T02:40:37.0561500Z * [new branch] gh/jamesjwu/56/base -> origin/gh/jamesjwu/56/base 2025-01-24T02:40:37.0565300Z * [new branch] gh/jamesjwu/56/head -> origin/gh/jamesjwu/56/head 2025-01-24T02:40:37.0573780Z * [new branch] gh/jamesjwu/57/base -> origin/gh/jamesjwu/57/base 2025-01-24T02:40:37.0580620Z * [new branch] gh/jamesjwu/57/head -> origin/gh/jamesjwu/57/head 2025-01-24T02:40:37.0588770Z * [new branch] gh/jamesjwu/58/base -> origin/gh/jamesjwu/58/base 2025-01-24T02:40:37.0596370Z * [new branch] gh/jamesjwu/58/head -> origin/gh/jamesjwu/58/head 2025-01-24T02:40:37.0604670Z * [new branch] gh/jamesjwu/59/base -> origin/gh/jamesjwu/59/base 2025-01-24T02:40:37.0606540Z * [new branch] gh/jamesjwu/59/head -> origin/gh/jamesjwu/59/head 2025-01-24T02:40:37.0613770Z * [new branch] gh/jamesjwu/60/base -> origin/gh/jamesjwu/60/base 2025-01-24T02:40:37.0620770Z * [new branch] gh/jamesjwu/60/head -> origin/gh/jamesjwu/60/head 2025-01-24T02:40:37.0629160Z * [new branch] gh/jamesjwu/61/base -> origin/gh/jamesjwu/61/base 2025-01-24T02:40:37.0637290Z * [new branch] gh/jamesjwu/61/head -> origin/gh/jamesjwu/61/head 2025-01-24T02:40:37.0644520Z * [new branch] gh/jamesjwu/62/base -> origin/gh/jamesjwu/62/base 2025-01-24T02:40:37.0646550Z * [new branch] gh/jamesjwu/62/head -> origin/gh/jamesjwu/62/head 2025-01-24T02:40:37.0654090Z * [new branch] gh/jamesjwu/63/base -> origin/gh/jamesjwu/63/base 2025-01-24T02:40:37.0661520Z * [new branch] gh/jamesjwu/63/head -> origin/gh/jamesjwu/63/head 2025-01-24T02:40:37.0669580Z * [new branch] gh/jamesjwu/64/base -> origin/gh/jamesjwu/64/base 2025-01-24T02:40:37.0677540Z * [new branch] gh/jamesjwu/64/head -> origin/gh/jamesjwu/64/head 2025-01-24T02:40:37.0679990Z * [new branch] gh/jamesjwu/65/base -> origin/gh/jamesjwu/65/base 2025-01-24T02:40:37.0688250Z * [new branch] gh/jamesjwu/65/head -> origin/gh/jamesjwu/65/head 2025-01-24T02:40:37.0694770Z * [new branch] gh/jamesjwu/70/base -> origin/gh/jamesjwu/70/base 2025-01-24T02:40:37.0701810Z * [new branch] gh/jamesjwu/70/head -> origin/gh/jamesjwu/70/head 2025-01-24T02:40:37.0709320Z * [new branch] gh/jamesjwu/70/orig -> origin/gh/jamesjwu/70/orig 2025-01-24T02:40:37.0716330Z * [new branch] gh/jamesjwu/90/base -> origin/gh/jamesjwu/90/base 2025-01-24T02:40:37.0718510Z * [new branch] gh/jamesjwu/90/head -> origin/gh/jamesjwu/90/head 2025-01-24T02:40:37.0733210Z * [new branch] gh/jamesjwu/90/orig -> origin/gh/jamesjwu/90/orig 2025-01-24T02:40:37.0740910Z * [new branch] gh/jamesjwu/91/base -> origin/gh/jamesjwu/91/base 2025-01-24T02:40:37.0742830Z * [new branch] gh/jamesjwu/91/head -> origin/gh/jamesjwu/91/head 2025-01-24T02:40:37.0749730Z * [new branch] gh/jamesjwu/91/orig -> origin/gh/jamesjwu/91/orig 2025-01-24T02:40:37.0757580Z * [new branch] gh/jamesjwu/93/base -> origin/gh/jamesjwu/93/base 2025-01-24T02:40:37.0765460Z * [new branch] gh/jamesjwu/93/head -> origin/gh/jamesjwu/93/head 2025-01-24T02:40:37.0772600Z * [new branch] gh/jamesjwu/93/orig -> origin/gh/jamesjwu/93/orig 2025-01-24T02:40:37.0780400Z * [new branch] gh/jamesjwu/94/base -> origin/gh/jamesjwu/94/base 2025-01-24T02:40:37.0782900Z * [new branch] gh/jamesjwu/94/head -> origin/gh/jamesjwu/94/head 2025-01-24T02:40:37.0788520Z * [new branch] gh/jamesjwu/94/orig -> origin/gh/jamesjwu/94/orig 2025-01-24T02:40:37.0794000Z * [new branch] gh/janeyx99/165/base -> origin/gh/janeyx99/165/base 2025-01-24T02:40:37.0801600Z * [new branch] gh/janeyx99/165/head -> origin/gh/janeyx99/165/head 2025-01-24T02:40:37.0806380Z * [new branch] gh/janeyx99/165/orig -> origin/gh/janeyx99/165/orig 2025-01-24T02:40:37.0814620Z * [new branch] gh/janeyx99/200/base -> origin/gh/janeyx99/200/base 2025-01-24T02:40:37.0819490Z * [new branch] gh/janeyx99/200/head -> origin/gh/janeyx99/200/head 2025-01-24T02:40:37.0828260Z * [new branch] gh/janeyx99/200/orig -> origin/gh/janeyx99/200/orig 2025-01-24T02:40:37.0832650Z * [new branch] gh/janeyx99/201/base -> origin/gh/janeyx99/201/base 2025-01-24T02:40:37.0844010Z * [new branch] gh/janeyx99/201/head -> origin/gh/janeyx99/201/head 2025-01-24T02:40:37.0847510Z * [new branch] gh/janeyx99/201/orig -> origin/gh/janeyx99/201/orig 2025-01-24T02:40:37.0855380Z * [new branch] gh/janeyx99/211/base -> origin/gh/janeyx99/211/base 2025-01-24T02:40:37.0862100Z * [new branch] gh/janeyx99/211/head -> origin/gh/janeyx99/211/head 2025-01-24T02:40:37.0870050Z * [new branch] gh/janeyx99/211/orig -> origin/gh/janeyx99/211/orig 2025-01-24T02:40:37.0873420Z * [new branch] gh/janeyx99/212/base -> origin/gh/janeyx99/212/base 2025-01-24T02:40:37.0880200Z * [new branch] gh/janeyx99/212/head -> origin/gh/janeyx99/212/head 2025-01-24T02:40:37.0888330Z * [new branch] gh/janeyx99/212/orig -> origin/gh/janeyx99/212/orig 2025-01-24T02:40:37.0896260Z * [new branch] gh/janeyx99/213/base -> origin/gh/janeyx99/213/base 2025-01-24T02:40:37.0904900Z * [new branch] gh/janeyx99/213/head -> origin/gh/janeyx99/213/head 2025-01-24T02:40:37.0912310Z * [new branch] gh/janeyx99/213/orig -> origin/gh/janeyx99/213/orig 2025-01-24T02:40:37.0918830Z * [new branch] gh/janeyx99/214/base -> origin/gh/janeyx99/214/base 2025-01-24T02:40:37.0926760Z * [new branch] gh/janeyx99/214/head -> origin/gh/janeyx99/214/head 2025-01-24T02:40:37.0934980Z * [new branch] gh/janeyx99/214/orig -> origin/gh/janeyx99/214/orig 2025-01-24T02:40:37.0937610Z * [new branch] gh/janeyx99/215/base -> origin/gh/janeyx99/215/base 2025-01-24T02:40:37.0944090Z * [new branch] gh/janeyx99/215/head -> origin/gh/janeyx99/215/head 2025-01-24T02:40:37.0952010Z * [new branch] gh/janeyx99/215/orig -> origin/gh/janeyx99/215/orig 2025-01-24T02:40:37.0959080Z * [new branch] gh/janeyx99/216/base -> origin/gh/janeyx99/216/base 2025-01-24T02:40:37.0967480Z * [new branch] gh/janeyx99/216/head -> origin/gh/janeyx99/216/head 2025-01-24T02:40:37.0969260Z * [new branch] gh/janeyx99/216/orig -> origin/gh/janeyx99/216/orig 2025-01-24T02:40:37.0977330Z * [new branch] gh/janeyx99/217/base -> origin/gh/janeyx99/217/base 2025-01-24T02:40:37.0985500Z * [new branch] gh/janeyx99/217/head -> origin/gh/janeyx99/217/head 2025-01-24T02:40:37.0990410Z * [new branch] gh/janeyx99/217/orig -> origin/gh/janeyx99/217/orig 2025-01-24T02:40:37.0994830Z * [new branch] gh/janeyx99/86/base -> origin/gh/janeyx99/86/base 2025-01-24T02:40:37.0999190Z * [new branch] gh/janeyx99/86/head -> origin/gh/janeyx99/86/head 2025-01-24T02:40:37.1007090Z * [new branch] gh/janeyx99/86/orig -> origin/gh/janeyx99/86/orig 2025-01-24T02:40:37.1013910Z * [new branch] gh/janeyx99/88/base -> origin/gh/janeyx99/88/base 2025-01-24T02:40:37.1021410Z * [new branch] gh/janeyx99/88/head -> origin/gh/janeyx99/88/head 2025-01-24T02:40:37.1029120Z * [new branch] gh/janeyx99/88/orig -> origin/gh/janeyx99/88/orig 2025-01-24T02:40:37.1037050Z * [new branch] gh/jansel/227/base -> origin/gh/jansel/227/base 2025-01-24T02:40:37.1039500Z * [new branch] gh/jansel/227/head -> origin/gh/jansel/227/head 2025-01-24T02:40:37.1046260Z * [new branch] gh/jansel/227/orig -> origin/gh/jansel/227/orig 2025-01-24T02:40:37.1060050Z * [new branch] gh/jansel/360/base -> origin/gh/jansel/360/base 2025-01-24T02:40:37.1061980Z * [new branch] gh/jansel/360/head -> origin/gh/jansel/360/head 2025-01-24T02:40:37.1070460Z * [new branch] gh/jansel/422/base -> origin/gh/jansel/422/base 2025-01-24T02:40:37.1078590Z * [new branch] gh/jansel/422/head -> origin/gh/jansel/422/head 2025-01-24T02:40:37.1086330Z * [new branch] gh/jansel/422/orig -> origin/gh/jansel/422/orig 2025-01-24T02:40:37.1093810Z * [new branch] gh/jansel/446/base -> origin/gh/jansel/446/base 2025-01-24T02:40:37.1101230Z * [new branch] gh/jansel/446/head -> origin/gh/jansel/446/head 2025-01-24T02:40:37.1103340Z * [new branch] gh/jansel/446/orig -> origin/gh/jansel/446/orig 2025-01-24T02:40:37.1110270Z * [new branch] gh/jansel/451/base -> origin/gh/jansel/451/base 2025-01-24T02:40:37.1118510Z * [new branch] gh/jansel/451/head -> origin/gh/jansel/451/head 2025-01-24T02:40:37.1126320Z * [new branch] gh/jansel/451/orig -> origin/gh/jansel/451/orig 2025-01-24T02:40:37.1134330Z * [new branch] gh/jansel/462/base -> origin/gh/jansel/462/base 2025-01-24T02:40:37.1136320Z * [new branch] gh/jansel/462/head -> origin/gh/jansel/462/head 2025-01-24T02:40:37.1144300Z * [new branch] gh/jansel/462/orig -> origin/gh/jansel/462/orig 2025-01-24T02:40:37.1151030Z * [new branch] gh/jansel/463/base -> origin/gh/jansel/463/base 2025-01-24T02:40:37.1158570Z * [new branch] gh/jansel/463/head -> origin/gh/jansel/463/head 2025-01-24T02:40:37.1166560Z * [new branch] gh/jansel/463/orig -> origin/gh/jansel/463/orig 2025-01-24T02:40:37.1174280Z * [new branch] gh/jansel/464/base -> origin/gh/jansel/464/base 2025-01-24T02:40:37.1176360Z * [new branch] gh/jansel/464/head -> origin/gh/jansel/464/head 2025-01-24T02:40:37.1185680Z * [new branch] gh/jansel/464/orig -> origin/gh/jansel/464/orig 2025-01-24T02:40:37.1192970Z * [new branch] gh/jansel/465/base -> origin/gh/jansel/465/base 2025-01-24T02:40:37.1194830Z * [new branch] gh/jansel/465/head -> origin/gh/jansel/465/head 2025-01-24T02:40:37.1199840Z * [new branch] gh/jansel/465/orig -> origin/gh/jansel/465/orig 2025-01-24T02:40:37.1207520Z * [new branch] gh/jansel/466/base -> origin/gh/jansel/466/base 2025-01-24T02:40:37.1221570Z * [new branch] gh/jansel/466/head -> origin/gh/jansel/466/head 2025-01-24T02:40:37.1229600Z * [new branch] gh/jansel/466/orig -> origin/gh/jansel/466/orig 2025-01-24T02:40:37.1237070Z * [new branch] gh/jansel/467/base -> origin/gh/jansel/467/base 2025-01-24T02:40:37.1239160Z * [new branch] gh/jansel/467/head -> origin/gh/jansel/467/head 2025-01-24T02:40:37.1246520Z * [new branch] gh/jansel/467/orig -> origin/gh/jansel/467/orig 2025-01-24T02:40:37.1254840Z * [new branch] gh/jansel/468/base -> origin/gh/jansel/468/base 2025-01-24T02:40:37.1262170Z * [new branch] gh/jansel/468/head -> origin/gh/jansel/468/head 2025-01-24T02:40:37.1267870Z * [new branch] gh/jansel/468/orig -> origin/gh/jansel/468/orig 2025-01-24T02:40:37.1275780Z * [new branch] gh/jansel/469/base -> origin/gh/jansel/469/base 2025-01-24T02:40:37.1284400Z * [new branch] gh/jansel/469/head -> origin/gh/jansel/469/head 2025-01-24T02:40:37.1286050Z * [new branch] gh/jansel/469/orig -> origin/gh/jansel/469/orig 2025-01-24T02:40:37.1294090Z * [new branch] gh/jansel/470/base -> origin/gh/jansel/470/base 2025-01-24T02:40:37.1301840Z * [new branch] gh/jansel/470/head -> origin/gh/jansel/470/head 2025-01-24T02:40:37.1309500Z * [new branch] gh/jansel/470/orig -> origin/gh/jansel/470/orig 2025-01-24T02:40:37.1317220Z * [new branch] gh/jansel/471/base -> origin/gh/jansel/471/base 2025-01-24T02:40:37.1318910Z * [new branch] gh/jansel/471/head -> origin/gh/jansel/471/head 2025-01-24T02:40:37.1327040Z * [new branch] gh/jansel/471/orig -> origin/gh/jansel/471/orig 2025-01-24T02:40:37.1334370Z * [new branch] gh/jansel/472/base -> origin/gh/jansel/472/base 2025-01-24T02:40:37.1342040Z * [new branch] gh/jansel/472/head -> origin/gh/jansel/472/head 2025-01-24T02:40:37.1349850Z * [new branch] gh/jansel/472/orig -> origin/gh/jansel/472/orig 2025-01-24T02:40:37.1357150Z * [new branch] gh/jansel/473/base -> origin/gh/jansel/473/base 2025-01-24T02:40:37.1359660Z * [new branch] gh/jansel/473/head -> origin/gh/jansel/473/head 2025-01-24T02:40:37.1366120Z * [new branch] gh/jansel/473/orig -> origin/gh/jansel/473/orig 2025-01-24T02:40:37.1374910Z * [new branch] gh/jansel/474/base -> origin/gh/jansel/474/base 2025-01-24T02:40:37.1382370Z * [new branch] gh/jansel/474/head -> origin/gh/jansel/474/head 2025-01-24T02:40:37.1390250Z * [new branch] gh/jansel/474/orig -> origin/gh/jansel/474/orig 2025-01-24T02:40:37.1392490Z * [new branch] gh/jansel/475/base -> origin/gh/jansel/475/base 2025-01-24T02:40:37.1398710Z * [new branch] gh/jansel/475/head -> origin/gh/jansel/475/head 2025-01-24T02:40:37.1405810Z * [new branch] gh/jansel/475/orig -> origin/gh/jansel/475/orig 2025-01-24T02:40:37.1414790Z * [new branch] gh/jansel/476/base -> origin/gh/jansel/476/base 2025-01-24T02:40:37.1421150Z * [new branch] gh/jansel/476/head -> origin/gh/jansel/476/head 2025-01-24T02:40:37.1428860Z * [new branch] gh/jansel/476/orig -> origin/gh/jansel/476/orig 2025-01-24T02:40:37.1432560Z * [new branch] gh/jansel/477/base -> origin/gh/jansel/477/base 2025-01-24T02:40:37.1439180Z * [new branch] gh/jansel/477/head -> origin/gh/jansel/477/head 2025-01-24T02:40:37.1447630Z * [new branch] gh/jansel/477/orig -> origin/gh/jansel/477/orig 2025-01-24T02:40:37.1455810Z * [new branch] gh/jbschlosser/174/base -> origin/gh/jbschlosser/174/base 2025-01-24T02:40:37.1462770Z * [new branch] gh/jbschlosser/174/head -> origin/gh/jbschlosser/174/head 2025-01-24T02:40:37.1470120Z * [new branch] gh/jbschlosser/174/orig -> origin/gh/jbschlosser/174/orig 2025-01-24T02:40:37.1472780Z * [new branch] gh/jbschlosser/187/base -> origin/gh/jbschlosser/187/base 2025-01-24T02:40:37.1479550Z * [new branch] gh/jbschlosser/187/head -> origin/gh/jbschlosser/187/head 2025-01-24T02:40:37.1488550Z * [new branch] gh/jbschlosser/187/orig -> origin/gh/jbschlosser/187/orig 2025-01-24T02:40:37.1494680Z * [new branch] gh/jbschlosser/195/base -> origin/gh/jbschlosser/195/base 2025-01-24T02:40:37.1501190Z * [new branch] gh/jbschlosser/195/head -> origin/gh/jbschlosser/195/head 2025-01-24T02:40:37.1507010Z * [new branch] gh/jbschlosser/195/orig -> origin/gh/jbschlosser/195/orig 2025-01-24T02:40:37.1514510Z * [new branch] gh/jbschlosser/208/base -> origin/gh/jbschlosser/208/base 2025-01-24T02:40:37.1520140Z * [new branch] gh/jbschlosser/208/head -> origin/gh/jbschlosser/208/head 2025-01-24T02:40:37.1528770Z * [new branch] gh/jbschlosser/208/orig -> origin/gh/jbschlosser/208/orig 2025-01-24T02:40:37.1531580Z * [new branch] gh/jbschlosser/214/base -> origin/gh/jbschlosser/214/base 2025-01-24T02:40:37.1538790Z * [new branch] gh/jbschlosser/214/head -> origin/gh/jbschlosser/214/head 2025-01-24T02:40:37.1547310Z * [new branch] gh/jbschlosser/214/orig -> origin/gh/jbschlosser/214/orig 2025-01-24T02:40:37.1554570Z * [new branch] gh/jbschlosser/216/base -> origin/gh/jbschlosser/216/base 2025-01-24T02:40:37.1562770Z * [new branch] gh/jbschlosser/216/head -> origin/gh/jbschlosser/216/head 2025-01-24T02:40:37.1570340Z * [new branch] gh/jbschlosser/216/orig -> origin/gh/jbschlosser/216/orig 2025-01-24T02:40:37.1572920Z * [new branch] gh/jbschlosser/217/base -> origin/gh/jbschlosser/217/base 2025-01-24T02:40:37.1579170Z * [new branch] gh/jbschlosser/217/head -> origin/gh/jbschlosser/217/head 2025-01-24T02:40:37.1584970Z * [new branch] gh/jbschlosser/217/orig -> origin/gh/jbschlosser/217/orig 2025-01-24T02:40:37.1592960Z * [new branch] gh/jbschlosser/218/base -> origin/gh/jbschlosser/218/base 2025-01-24T02:40:37.1602160Z * [new branch] gh/jbschlosser/218/head -> origin/gh/jbschlosser/218/head 2025-01-24T02:40:37.1609840Z * [new branch] gh/jbschlosser/218/orig -> origin/gh/jbschlosser/218/orig 2025-01-24T02:40:37.1618090Z * [new branch] gh/jbschlosser/219/base -> origin/gh/jbschlosser/219/base 2025-01-24T02:40:37.1620090Z * [new branch] gh/jbschlosser/219/head -> origin/gh/jbschlosser/219/head 2025-01-24T02:40:37.1627310Z * [new branch] gh/jbschlosser/219/orig -> origin/gh/jbschlosser/219/orig 2025-01-24T02:40:37.1634560Z * [new branch] gh/jbschlosser/220/base -> origin/gh/jbschlosser/220/base 2025-01-24T02:40:37.1641210Z * [new branch] gh/jbschlosser/220/head -> origin/gh/jbschlosser/220/head 2025-01-24T02:40:37.1648530Z * [new branch] gh/jbschlosser/220/orig -> origin/gh/jbschlosser/220/orig 2025-01-24T02:40:37.1652360Z * [new branch] gh/jbschlosser/221/base -> origin/gh/jbschlosser/221/base 2025-01-24T02:40:37.1659130Z * [new branch] gh/jbschlosser/221/head -> origin/gh/jbschlosser/221/head 2025-01-24T02:40:37.1667830Z * [new branch] gh/jbschlosser/221/orig -> origin/gh/jbschlosser/221/orig 2025-01-24T02:40:37.1675100Z * [new branch] gh/jbschlosser/222/base -> origin/gh/jbschlosser/222/base 2025-01-24T02:40:37.1681880Z * [new branch] gh/jbschlosser/222/head -> origin/gh/jbschlosser/222/head 2025-01-24T02:40:37.1686730Z * [new branch] gh/jbschlosser/222/orig -> origin/gh/jbschlosser/222/orig 2025-01-24T02:40:37.1695710Z * [new branch] gh/jbschlosser/223/base -> origin/gh/jbschlosser/223/base 2025-01-24T02:40:37.1699630Z * [new branch] gh/jbschlosser/223/head -> origin/gh/jbschlosser/223/head 2025-01-24T02:40:37.1707330Z * [new branch] gh/jbschlosser/223/orig -> origin/gh/jbschlosser/223/orig 2025-01-24T02:40:37.1713510Z * [new branch] gh/jbschlosser/224/base -> origin/gh/jbschlosser/224/base 2025-01-24T02:40:37.1721620Z * [new branch] gh/jbschlosser/224/head -> origin/gh/jbschlosser/224/head 2025-01-24T02:40:37.1730050Z * [new branch] gh/jbschlosser/224/orig -> origin/gh/jbschlosser/224/orig 2025-01-24T02:40:37.1737930Z * [new branch] gh/jbschlosser/225/base -> origin/gh/jbschlosser/225/base 2025-01-24T02:40:37.1739680Z * [new branch] gh/jbschlosser/225/head -> origin/gh/jbschlosser/225/head 2025-01-24T02:40:37.1747970Z * [new branch] gh/jbschlosser/225/orig -> origin/gh/jbschlosser/225/orig 2025-01-24T02:40:37.1755600Z * [new branch] gh/jbschlosser/89/base -> origin/gh/jbschlosser/89/base 2025-01-24T02:40:37.1761540Z * [new branch] gh/jbschlosser/89/head -> origin/gh/jbschlosser/89/head 2025-01-24T02:40:37.1770620Z * [new branch] gh/jbschlosser/89/orig -> origin/gh/jbschlosser/89/orig 2025-01-24T02:40:37.1773270Z * [new branch] gh/jcaip/41/base -> origin/gh/jcaip/41/base 2025-01-24T02:40:37.1779680Z * [new branch] gh/jcaip/41/head -> origin/gh/jcaip/41/head 2025-01-24T02:40:37.1785710Z * [new branch] gh/jcaip/41/orig -> origin/gh/jcaip/41/orig 2025-01-24T02:40:37.1789010Z * [new branch] gh/jcaip/70/base -> origin/gh/jcaip/70/base 2025-01-24T02:40:37.1802740Z * [new branch] gh/jcaip/70/head -> origin/gh/jcaip/70/head 2025-01-24T02:40:37.1809750Z * [new branch] gh/jcaip/70/orig -> origin/gh/jcaip/70/orig 2025-01-24T02:40:37.1812960Z * [new branch] gh/jerryzh168/855/base -> origin/gh/jerryzh168/855/base 2025-01-24T02:40:37.1820180Z * [new branch] gh/jerryzh168/855/head -> origin/gh/jerryzh168/855/head 2025-01-24T02:40:37.1828680Z * [new branch] gh/jerryzh168/855/orig -> origin/gh/jerryzh168/855/orig 2025-01-24T02:40:37.1835950Z * [new branch] gh/jerryzh168/859/base -> origin/gh/jerryzh168/859/base 2025-01-24T02:40:37.1842570Z * [new branch] gh/jerryzh168/859/head -> origin/gh/jerryzh168/859/head 2025-01-24T02:40:37.1851030Z * [new branch] gh/jerryzh168/859/orig -> origin/gh/jerryzh168/859/orig 2025-01-24T02:40:37.1853340Z * [new branch] gh/jerryzh168/860/base -> origin/gh/jerryzh168/860/base 2025-01-24T02:40:37.1860320Z * [new branch] gh/jerryzh168/860/head -> origin/gh/jerryzh168/860/head 2025-01-24T02:40:37.1868810Z * [new branch] gh/jerryzh168/860/orig -> origin/gh/jerryzh168/860/orig 2025-01-24T02:40:37.1875160Z * [new branch] gh/jgong5/23/base -> origin/gh/jgong5/23/base 2025-01-24T02:40:37.1883040Z * [new branch] gh/jgong5/23/head -> origin/gh/jgong5/23/head 2025-01-24T02:40:37.1890820Z * [new branch] gh/jiayisunx/12/base -> origin/gh/jiayisunx/12/base 2025-01-24T02:40:37.1892750Z * [new branch] gh/jiayisunx/12/head -> origin/gh/jiayisunx/12/head 2025-01-24T02:40:37.1899970Z * [new branch] gh/jiayisunx/12/orig -> origin/gh/jiayisunx/12/orig 2025-01-24T02:40:37.1908250Z * [new branch] gh/jiayisunx/23/base -> origin/gh/jiayisunx/23/base 2025-01-24T02:40:37.1915200Z * [new branch] gh/jiayisunx/23/head -> origin/gh/jiayisunx/23/head 2025-01-24T02:40:37.1922270Z * [new branch] gh/jiayisunx/23/orig -> origin/gh/jiayisunx/23/orig 2025-01-24T02:40:37.1930570Z * [new branch] gh/jiayisunx/34/base -> origin/gh/jiayisunx/34/base 2025-01-24T02:40:37.1938270Z * [new branch] gh/jiayisunx/34/head -> origin/gh/jiayisunx/34/head 2025-01-24T02:40:37.1940150Z * [new branch] gh/jiayisunx/34/orig -> origin/gh/jiayisunx/34/orig 2025-01-24T02:40:37.1947530Z * [new branch] gh/jiayisunx/37/base -> origin/gh/jiayisunx/37/base 2025-01-24T02:40:37.1955480Z * [new branch] gh/jiayisunx/37/head -> origin/gh/jiayisunx/37/head 2025-01-24T02:40:37.1962300Z * [new branch] gh/jiayisunx/37/orig -> origin/gh/jiayisunx/37/orig 2025-01-24T02:40:37.1970640Z * [new branch] gh/jiayisunx/38/base -> origin/gh/jiayisunx/38/base 2025-01-24T02:40:37.1973370Z * [new branch] gh/jiayisunx/38/head -> origin/gh/jiayisunx/38/head 2025-01-24T02:40:37.1981010Z * [new branch] gh/jiayisunx/38/orig -> origin/gh/jiayisunx/38/orig 2025-01-24T02:40:37.1986070Z * [new branch] gh/jiayisunx/39/base -> origin/gh/jiayisunx/39/base 2025-01-24T02:40:37.1989230Z * [new branch] gh/jiayisunx/39/head -> origin/gh/jiayisunx/39/head 2025-01-24T02:40:37.2003390Z * [new branch] gh/jiayisunx/39/orig -> origin/gh/jiayisunx/39/orig 2025-01-24T02:40:37.2011660Z * [new branch] gh/jiayisunx/40/base -> origin/gh/jiayisunx/40/base 2025-01-24T02:40:37.2013240Z * [new branch] gh/jiayisunx/40/head -> origin/gh/jiayisunx/40/head 2025-01-24T02:40:37.2020760Z * [new branch] gh/jiayisunx/40/orig -> origin/gh/jiayisunx/40/orig 2025-01-24T02:40:37.2028000Z * [new branch] gh/jiayisunx/50/base -> origin/gh/jiayisunx/50/base 2025-01-24T02:40:37.2034920Z * [new branch] gh/jiayisunx/50/head -> origin/gh/jiayisunx/50/head 2025-01-24T02:40:37.2042590Z * [new branch] gh/jiayisunx/50/orig -> origin/gh/jiayisunx/50/orig 2025-01-24T02:40:37.2045090Z * [new branch] gh/jiayisunx/51/base -> origin/gh/jiayisunx/51/base 2025-01-24T02:40:37.2052810Z * [new branch] gh/jiayisunx/51/head -> origin/gh/jiayisunx/51/head 2025-01-24T02:40:37.2061640Z * [new branch] gh/jiayisunx/51/orig -> origin/gh/jiayisunx/51/orig 2025-01-24T02:40:37.2068230Z * [new branch] gh/jiayisunx/52/base -> origin/gh/jiayisunx/52/base 2025-01-24T02:40:37.2074870Z * [new branch] gh/jiayisunx/52/head -> origin/gh/jiayisunx/52/head 2025-01-24T02:40:37.2082540Z * [new branch] gh/jiayisunx/52/orig -> origin/gh/jiayisunx/52/orig 2025-01-24T02:40:37.2090160Z * [new branch] gh/jiayisunx/53/base -> origin/gh/jiayisunx/53/base 2025-01-24T02:40:37.2093230Z * [new branch] gh/jiayisunx/53/head -> origin/gh/jiayisunx/53/head 2025-01-24T02:40:37.2099540Z * [new branch] gh/jiayisunx/53/orig -> origin/gh/jiayisunx/53/orig 2025-01-24T02:40:37.2108500Z * [new branch] gh/jiayisunx/54/base -> origin/gh/jiayisunx/54/base 2025-01-24T02:40:37.2115350Z * [new branch] gh/jiayisunx/54/head -> origin/gh/jiayisunx/54/head 2025-01-24T02:40:37.2122380Z * [new branch] gh/jiayisunx/54/orig -> origin/gh/jiayisunx/54/orig 2025-01-24T02:40:37.2130740Z * [new branch] gh/jjwu@meta.com/1/base -> origin/gh/jjwu@meta.com/1/base 2025-01-24T02:40:37.2138210Z * [new branch] gh/jjwu@meta.com/1/head -> origin/gh/jjwu@meta.com/1/head 2025-01-24T02:40:37.2141260Z * [new branch] gh/jon-chuang/1/base -> origin/gh/jon-chuang/1/base 2025-01-24T02:40:37.2147780Z * [new branch] gh/jon-chuang/1/head -> origin/gh/jon-chuang/1/head 2025-01-24T02:40:37.2154960Z * [new branch] gh/jon-chuang/12/base -> origin/gh/jon-chuang/12/base 2025-01-24T02:40:37.2161920Z * [new branch] gh/jon-chuang/13/base -> origin/gh/jon-chuang/13/base 2025-01-24T02:40:37.2169880Z * [new branch] gh/jon-chuang/14/base -> origin/gh/jon-chuang/14/base 2025-01-24T02:40:37.2173000Z * [new branch] gh/jon-chuang/16/base -> origin/gh/jon-chuang/16/base 2025-01-24T02:40:37.2180070Z * [new branch] gh/jon-chuang/16/head -> origin/gh/jon-chuang/16/head 2025-01-24T02:40:37.2187250Z * [new branch] gh/jon-chuang/16/orig -> origin/gh/jon-chuang/16/orig 2025-01-24T02:40:37.2189710Z * [new branch] gh/jon-chuang/19/base -> origin/gh/jon-chuang/19/base 2025-01-24T02:40:37.2202790Z * [new branch] gh/jon-chuang/19/head -> origin/gh/jon-chuang/19/head 2025-01-24T02:40:37.2205760Z * [new branch] gh/jon-chuang/19/orig -> origin/gh/jon-chuang/19/orig 2025-01-24T02:40:37.2213490Z * [new branch] gh/jon-chuang/2/base -> origin/gh/jon-chuang/2/base 2025-01-24T02:40:37.2221350Z * [new branch] gh/jon-chuang/2/head -> origin/gh/jon-chuang/2/head 2025-01-24T02:40:37.2228910Z * [new branch] gh/jon-chuang/3/base -> origin/gh/jon-chuang/3/base 2025-01-24T02:40:37.2236060Z * [new branch] gh/jon-chuang/3/head -> origin/gh/jon-chuang/3/head 2025-01-24T02:40:37.2243840Z * [new branch] gh/jon-chuang/4/base -> origin/gh/jon-chuang/4/base 2025-01-24T02:40:37.2246090Z * [new branch] gh/jon-chuang/4/head -> origin/gh/jon-chuang/4/head 2025-01-24T02:40:37.2252780Z * [new branch] gh/jon-chuang/5/base -> origin/gh/jon-chuang/5/base 2025-01-24T02:40:37.2261270Z * [new branch] gh/jon-chuang/5/head -> origin/gh/jon-chuang/5/head 2025-01-24T02:40:37.2268620Z * [new branch] gh/jon-chuang/6/base -> origin/gh/jon-chuang/6/base 2025-01-24T02:40:37.2275490Z * [new branch] gh/jon-chuang/6/head -> origin/gh/jon-chuang/6/head 2025-01-24T02:40:37.2287610Z * [new branch] gh/jon-chuang/7/base -> origin/gh/jon-chuang/7/base 2025-01-24T02:40:37.2291830Z * [new branch] gh/jon-chuang/7/head -> origin/gh/jon-chuang/7/head 2025-01-24T02:40:37.2294220Z * [new branch] gh/jon-chuang/8/base -> origin/gh/jon-chuang/8/base 2025-01-24T02:40:37.2301510Z * [new branch] gh/jon-chuang/8/head -> origin/gh/jon-chuang/8/head 2025-01-24T02:40:37.2309390Z * [new branch] gh/justinchuby/101/base -> origin/gh/justinchuby/101/base 2025-01-24T02:40:37.2315590Z * [new branch] gh/justinchuby/101/head -> origin/gh/justinchuby/101/head 2025-01-24T02:40:37.2322980Z * [new branch] gh/justinchuby/101/orig -> origin/gh/justinchuby/101/orig 2025-01-24T02:40:37.2326710Z * [new branch] gh/kadeng/1/base -> origin/gh/kadeng/1/base 2025-01-24T02:40:37.2332840Z * [new branch] gh/kadeng/1/head -> origin/gh/kadeng/1/head 2025-01-24T02:40:37.2340260Z * [new branch] gh/kadeng/1/orig -> origin/gh/kadeng/1/orig 2025-01-24T02:40:37.2348690Z * [new branch] gh/kadeng/12/base -> origin/gh/kadeng/12/base 2025-01-24T02:40:37.2355700Z * [new branch] gh/kadeng/12/head -> origin/gh/kadeng/12/head 2025-01-24T02:40:37.2363350Z * [new branch] gh/kadeng/13/base -> origin/gh/kadeng/13/base 2025-01-24T02:40:37.2365070Z * [new branch] gh/kadeng/13/head -> origin/gh/kadeng/13/head 2025-01-24T02:40:37.2371820Z * [new branch] gh/kadeng/14/base -> origin/gh/kadeng/14/base 2025-01-24T02:40:37.2376580Z * [new branch] gh/kadeng/14/head -> origin/gh/kadeng/14/head 2025-01-24T02:40:37.2384610Z * [new branch] gh/kadeng/16/base -> origin/gh/kadeng/16/base 2025-01-24T02:40:37.2389080Z * [new branch] gh/kadeng/16/head -> origin/gh/kadeng/16/head 2025-01-24T02:40:37.2397190Z * [new branch] gh/kadeng/6/base -> origin/gh/kadeng/6/base 2025-01-24T02:40:37.2403570Z * [new branch] gh/kadeng/6/head -> origin/gh/kadeng/6/head 2025-01-24T02:40:37.2411590Z * [new branch] gh/kadeng/7/base -> origin/gh/kadeng/7/base 2025-01-24T02:40:37.2418830Z * [new branch] gh/kadeng/9/base -> origin/gh/kadeng/9/base 2025-01-24T02:40:37.2426440Z * [new branch] gh/kadeng/9/head -> origin/gh/kadeng/9/head 2025-01-24T02:40:37.2429840Z * [new branch] gh/kimishpatel/186/base -> origin/gh/kimishpatel/186/base 2025-01-24T02:40:37.2435870Z * [new branch] gh/kimishpatel/186/head -> origin/gh/kimishpatel/186/head 2025-01-24T02:40:37.2444530Z * [new branch] gh/kimishpatel/186/orig -> origin/gh/kimishpatel/186/orig 2025-01-24T02:40:37.2452420Z * [new branch] gh/kurtamohler/30/base -> origin/gh/kurtamohler/30/base 2025-01-24T02:40:37.2458800Z * [new branch] gh/kurtamohler/30/head -> origin/gh/kurtamohler/30/head 2025-01-24T02:40:37.2466420Z * [new branch] gh/kurtamohler/30/orig -> origin/gh/kurtamohler/30/orig 2025-01-24T02:40:37.2469530Z * [new branch] gh/kwen2501/1/base -> origin/gh/kwen2501/1/base 2025-01-24T02:40:37.2476020Z * [new branch] gh/kwen2501/1/head -> origin/gh/kwen2501/1/head 2025-01-24T02:40:37.2490370Z * [new branch] gh/kwen2501/108/base -> origin/gh/kwen2501/108/base 2025-01-24T02:40:37.2492840Z * [new branch] gh/kwen2501/108/head -> origin/gh/kwen2501/108/head 2025-01-24T02:40:37.2499570Z * [new branch] gh/kwen2501/108/orig -> origin/gh/kwen2501/108/orig 2025-01-24T02:40:37.2507840Z * [new branch] gh/kwen2501/109/base -> origin/gh/kwen2501/109/base 2025-01-24T02:40:37.2515530Z * [new branch] gh/kwen2501/109/head -> origin/gh/kwen2501/109/head 2025-01-24T02:40:37.2523030Z * [new branch] gh/kwen2501/109/orig -> origin/gh/kwen2501/109/orig 2025-01-24T02:40:37.2530910Z * [new branch] gh/kwen2501/118/base -> origin/gh/kwen2501/118/base 2025-01-24T02:40:37.2538020Z * [new branch] gh/kwen2501/118/head -> origin/gh/kwen2501/118/head 2025-01-24T02:40:37.2544000Z * [new branch] gh/kwen2501/118/orig -> origin/gh/kwen2501/118/orig 2025-01-24T02:40:37.2552110Z * [new branch] gh/kwen2501/15/base -> origin/gh/kwen2501/15/base 2025-01-24T02:40:37.2560100Z * [new branch] gh/kwen2501/15/head -> origin/gh/kwen2501/15/head 2025-01-24T02:40:37.2562620Z * [new branch] gh/kwen2501/65/base -> origin/gh/kwen2501/65/base 2025-01-24T02:40:37.2570050Z * [new branch] gh/kwen2501/65/head -> origin/gh/kwen2501/65/head 2025-01-24T02:40:37.2577410Z * [new branch] gh/kwen2501/65/orig -> origin/gh/kwen2501/65/orig 2025-01-24T02:40:37.2579760Z * [new branch] gh/kwen2501/66/base -> origin/gh/kwen2501/66/base 2025-01-24T02:40:37.2586390Z * [new branch] gh/kwen2501/66/head -> origin/gh/kwen2501/66/head 2025-01-24T02:40:37.2594430Z * [new branch] gh/kwen2501/66/orig -> origin/gh/kwen2501/66/orig 2025-01-24T02:40:37.2601760Z * [new branch] gh/kwen2501/79/base -> origin/gh/kwen2501/79/base 2025-01-24T02:40:37.2607910Z * [new branch] gh/kwen2501/79/head -> origin/gh/kwen2501/79/head 2025-01-24T02:40:37.2617090Z * [new branch] gh/kwen2501/79/orig -> origin/gh/kwen2501/79/orig 2025-01-24T02:40:37.2624840Z * [new branch] gh/kwen2501/87/base -> origin/gh/kwen2501/87/base 2025-01-24T02:40:37.2626830Z * [new branch] gh/kwen2501/87/head -> origin/gh/kwen2501/87/head 2025-01-24T02:40:37.2634800Z * [new branch] gh/kwen2501/87/orig -> origin/gh/kwen2501/87/orig 2025-01-24T02:40:37.2642070Z * [new branch] gh/kwen2501/97/base -> origin/gh/kwen2501/97/base 2025-01-24T02:40:37.2648330Z * [new branch] gh/kwen2501/97/head -> origin/gh/kwen2501/97/head 2025-01-24T02:40:37.2657380Z * [new branch] gh/kwen2501/97/orig -> origin/gh/kwen2501/97/orig 2025-01-24T02:40:37.2665700Z * [new branch] gh/laithsakka/102/base -> origin/gh/laithsakka/102/base 2025-01-24T02:40:37.2673870Z * [new branch] gh/laithsakka/102/head -> origin/gh/laithsakka/102/head 2025-01-24T02:40:37.2682010Z * [new branch] gh/laithsakka/102/orig -> origin/gh/laithsakka/102/orig 2025-01-24T02:40:37.2684340Z * [new branch] gh/laithsakka/103/base -> origin/gh/laithsakka/103/base 2025-01-24T02:40:37.2690940Z * [new branch] gh/laithsakka/103/head -> origin/gh/laithsakka/103/head 2025-01-24T02:40:37.2697820Z * [new branch] gh/laithsakka/103/orig -> origin/gh/laithsakka/103/orig 2025-01-24T02:40:37.2705170Z * [new branch] gh/laithsakka/105/base -> origin/gh/laithsakka/105/base 2025-01-24T02:40:37.2713170Z * [new branch] gh/laithsakka/105/head -> origin/gh/laithsakka/105/head 2025-01-24T02:40:37.2717090Z * [new branch] gh/laithsakka/105/orig -> origin/gh/laithsakka/105/orig 2025-01-24T02:40:37.2726450Z * [new branch] gh/laithsakka/106/base -> origin/gh/laithsakka/106/base 2025-01-24T02:40:37.2735400Z * [new branch] gh/laithsakka/106/head -> origin/gh/laithsakka/106/head 2025-01-24T02:40:37.2740390Z * [new branch] gh/laithsakka/106/orig -> origin/gh/laithsakka/106/orig 2025-01-24T02:40:37.2748110Z * [new branch] gh/laithsakka/28/base -> origin/gh/laithsakka/28/base 2025-01-24T02:40:37.2752770Z * [new branch] gh/laithsakka/29/base -> origin/gh/laithsakka/29/base 2025-01-24T02:40:37.2761180Z * [new branch] gh/laithsakka/30/base -> origin/gh/laithsakka/30/base 2025-01-24T02:40:37.2766260Z * [new branch] gh/laithsakka/30/head -> origin/gh/laithsakka/30/head 2025-01-24T02:40:37.2774700Z * [new branch] gh/laithsakka/31/base -> origin/gh/laithsakka/31/base 2025-01-24T02:40:37.2779420Z * [new branch] gh/laithsakka/31/head -> origin/gh/laithsakka/31/head 2025-01-24T02:40:37.2788220Z * [new branch] gh/laithsakka/32/base -> origin/gh/laithsakka/32/base 2025-01-24T02:40:37.2792630Z * [new branch] gh/laithsakka/32/head -> origin/gh/laithsakka/32/head 2025-01-24T02:40:37.2799930Z * [new branch] gh/laithsakka/74/base -> origin/gh/laithsakka/74/base 2025-01-24T02:40:37.2805890Z * [new branch] gh/laithsakka/74/head -> origin/gh/laithsakka/74/head 2025-01-24T02:40:37.2814440Z * [new branch] gh/laithsakka/74/orig -> origin/gh/laithsakka/74/orig 2025-01-24T02:40:37.2822510Z * [new branch] gh/larryliu0820/44/base -> origin/gh/larryliu0820/44/base 2025-01-24T02:40:37.2828810Z * [new branch] gh/larryliu0820/44/head -> origin/gh/larryliu0820/44/head 2025-01-24T02:40:37.2836560Z * [new branch] gh/larryliu0820/44/orig -> origin/gh/larryliu0820/44/orig 2025-01-24T02:40:37.2844960Z * [new branch] gh/larryliu0820/45/base -> origin/gh/larryliu0820/45/base 2025-01-24T02:40:37.2846840Z * [new branch] gh/larryliu0820/45/head -> origin/gh/larryliu0820/45/head 2025-01-24T02:40:37.2854070Z * [new branch] gh/larryliu0820/45/orig -> origin/gh/larryliu0820/45/orig 2025-01-24T02:40:37.2862310Z * [new branch] gh/larryliu0820/46/base -> origin/gh/larryliu0820/46/base 2025-01-24T02:40:37.2870200Z * [new branch] gh/larryliu0820/46/head -> origin/gh/larryliu0820/46/head 2025-01-24T02:40:37.2878250Z * [new branch] gh/larryliu0820/46/orig -> origin/gh/larryliu0820/46/orig 2025-01-24T02:40:37.2881550Z * [new branch] gh/leslie-fang-intel/154/base -> origin/gh/leslie-fang-intel/154/base 2025-01-24T02:40:37.2887910Z * [new branch] gh/leslie-fang-intel/154/head -> origin/gh/leslie-fang-intel/154/head 2025-01-24T02:40:37.2896090Z * [new branch] gh/leslie-fang-intel/154/orig -> origin/gh/leslie-fang-intel/154/orig 2025-01-24T02:40:37.2902770Z * [new branch] gh/leslie-fang-intel/161/base -> origin/gh/leslie-fang-intel/161/base 2025-01-24T02:40:37.2910830Z * [new branch] gh/leslie-fang-intel/161/head -> origin/gh/leslie-fang-intel/161/head 2025-01-24T02:40:37.2917710Z * [new branch] gh/leslie-fang-intel/161/orig -> origin/gh/leslie-fang-intel/161/orig 2025-01-24T02:40:37.2923070Z * [new branch] gh/leslie-fang-intel/162/base -> origin/gh/leslie-fang-intel/162/base 2025-01-24T02:40:37.2931570Z * [new branch] gh/leslie-fang-intel/162/head -> origin/gh/leslie-fang-intel/162/head 2025-01-24T02:40:37.2939650Z * [new branch] gh/leslie-fang-intel/162/orig -> origin/gh/leslie-fang-intel/162/orig 2025-01-24T02:40:37.2947400Z * [new branch] gh/leslie-fang-intel/169/base -> origin/gh/leslie-fang-intel/169/base 2025-01-24T02:40:37.2949640Z * [new branch] gh/leslie-fang-intel/169/head -> origin/gh/leslie-fang-intel/169/head 2025-01-24T02:40:37.2955820Z * [new branch] gh/leslie-fang-intel/169/orig -> origin/gh/leslie-fang-intel/169/orig 2025-01-24T02:40:37.2962800Z * [new branch] gh/leslie-fang-intel/171/base -> origin/gh/leslie-fang-intel/171/base 2025-01-24T02:40:37.2967650Z * [new branch] gh/leslie-fang-intel/171/head -> origin/gh/leslie-fang-intel/171/head 2025-01-24T02:40:37.2975130Z * [new branch] gh/leslie-fang-intel/171/orig -> origin/gh/leslie-fang-intel/171/orig 2025-01-24T02:40:37.2980880Z * [new branch] gh/leslie-fang-intel/172/base -> origin/gh/leslie-fang-intel/172/base 2025-01-24T02:40:37.2988370Z * [new branch] gh/leslie-fang-intel/172/head -> origin/gh/leslie-fang-intel/172/head 2025-01-24T02:40:37.2993280Z * [new branch] gh/leslie-fang-intel/172/orig -> origin/gh/leslie-fang-intel/172/orig 2025-01-24T02:40:37.3002610Z * [new branch] gh/leslie-fang-intel/173/base -> origin/gh/leslie-fang-intel/173/base 2025-01-24T02:40:37.3011410Z * [new branch] gh/leslie-fang-intel/173/head -> origin/gh/leslie-fang-intel/173/head 2025-01-24T02:40:37.3020240Z * [new branch] gh/leslie-fang-intel/173/orig -> origin/gh/leslie-fang-intel/173/orig 2025-01-24T02:40:37.3028130Z * [new branch] gh/leslie-fang-intel/174/base -> origin/gh/leslie-fang-intel/174/base 2025-01-24T02:40:37.3035790Z * [new branch] gh/leslie-fang-intel/174/head -> origin/gh/leslie-fang-intel/174/head 2025-01-24T02:40:37.3043440Z * [new branch] gh/leslie-fang-intel/174/orig -> origin/gh/leslie-fang-intel/174/orig 2025-01-24T02:40:37.3045920Z * [new branch] gh/leslie-fang-intel/175/base -> origin/gh/leslie-fang-intel/175/base 2025-01-24T02:40:37.3060240Z * [new branch] gh/leslie-fang-intel/175/head -> origin/gh/leslie-fang-intel/175/head 2025-01-24T02:40:37.3068240Z * [new branch] gh/leslie-fang-intel/175/orig -> origin/gh/leslie-fang-intel/175/orig 2025-01-24T02:40:37.3070520Z * [new branch] gh/leslie-fang-intel/176/base -> origin/gh/leslie-fang-intel/176/base 2025-01-24T02:40:37.3077450Z * [new branch] gh/leslie-fang-intel/176/head -> origin/gh/leslie-fang-intel/176/head 2025-01-24T02:40:37.3085340Z * [new branch] gh/leslie-fang-intel/176/orig -> origin/gh/leslie-fang-intel/176/orig 2025-01-24T02:40:37.3091520Z * [new branch] gh/leslie-fang-intel/177/base -> origin/gh/leslie-fang-intel/177/base 2025-01-24T02:40:37.3099620Z * [new branch] gh/leslie-fang-intel/177/head -> origin/gh/leslie-fang-intel/177/head 2025-01-24T02:40:37.3107150Z * [new branch] gh/leslie-fang-intel/177/orig -> origin/gh/leslie-fang-intel/177/orig 2025-01-24T02:40:37.3109590Z * [new branch] gh/leslie-fang-intel/178/base -> origin/gh/leslie-fang-intel/178/base 2025-01-24T02:40:37.3116420Z * [new branch] gh/leslie-fang-intel/178/head -> origin/gh/leslie-fang-intel/178/head 2025-01-24T02:40:37.3124270Z * [new branch] gh/leslie-fang-intel/178/orig -> origin/gh/leslie-fang-intel/178/orig 2025-01-24T02:40:37.3132230Z * [new branch] gh/lw/2/base -> origin/gh/lw/2/base 2025-01-24T02:40:37.3137800Z * [new branch] gh/lw/2/head -> origin/gh/lw/2/head 2025-01-24T02:40:37.3144700Z * [new branch] gh/lw/2/orig -> origin/gh/lw/2/orig 2025-01-24T02:40:37.3152200Z * [new branch] gh/lw/3/base -> origin/gh/lw/3/base 2025-01-24T02:40:37.3156610Z * [new branch] gh/lw/3/head -> origin/gh/lw/3/head 2025-01-24T02:40:37.3162710Z * [new branch] gh/lw/3/orig -> origin/gh/lw/3/orig 2025-01-24T02:40:37.3169990Z * [new branch] gh/lw/4/base -> origin/gh/lw/4/base 2025-01-24T02:40:37.3178050Z * [new branch] gh/lw/4/head -> origin/gh/lw/4/head 2025-01-24T02:40:37.3184740Z * [new branch] gh/lw/4/orig -> origin/gh/lw/4/orig 2025-01-24T02:40:37.3191570Z * [new branch] gh/lw/5/base -> origin/gh/lw/5/base 2025-01-24T02:40:37.3198870Z * [new branch] gh/lw/5/head -> origin/gh/lw/5/head 2025-01-24T02:40:37.3205990Z * [new branch] gh/lw/5/orig -> origin/gh/lw/5/orig 2025-01-24T02:40:37.3209170Z * [new branch] gh/malfet/100/base -> origin/gh/malfet/100/base 2025-01-24T02:40:37.3216610Z * [new branch] gh/malfet/100/head -> origin/gh/malfet/100/head 2025-01-24T02:40:37.3225540Z * [new branch] gh/malfet/100/orig -> origin/gh/malfet/100/orig 2025-01-24T02:40:37.3232680Z * [new branch] gh/malfet/101/base -> origin/gh/malfet/101/base 2025-01-24T02:40:37.3239950Z * [new branch] gh/malfet/101/head -> origin/gh/malfet/101/head 2025-01-24T02:40:37.3247450Z * [new branch] gh/malfet/101/orig -> origin/gh/malfet/101/orig 2025-01-24T02:40:37.3249980Z * [new branch] gh/malfet/102/base -> origin/gh/malfet/102/base 2025-01-24T02:40:37.3256650Z * [new branch] gh/malfet/102/head -> origin/gh/malfet/102/head 2025-01-24T02:40:37.3264600Z * [new branch] gh/malfet/102/orig -> origin/gh/malfet/102/orig 2025-01-24T02:40:37.3272840Z * [new branch] gh/malfet/103/base -> origin/gh/malfet/103/base 2025-01-24T02:40:37.3279290Z * [new branch] gh/malfet/103/head -> origin/gh/malfet/103/head 2025-01-24T02:40:37.3287460Z * [new branch] gh/malfet/103/orig -> origin/gh/malfet/103/orig 2025-01-24T02:40:37.3289990Z * [new branch] gh/malfet/104/base -> origin/gh/malfet/104/base 2025-01-24T02:40:37.3296680Z * [new branch] gh/malfet/104/head -> origin/gh/malfet/104/head 2025-01-24T02:40:37.3305030Z * [new branch] gh/malfet/104/orig -> origin/gh/malfet/104/orig 2025-01-24T02:40:37.3312570Z * [new branch] gh/malfet/105/base -> origin/gh/malfet/105/base 2025-01-24T02:40:37.3319400Z * [new branch] gh/malfet/105/head -> origin/gh/malfet/105/head 2025-01-24T02:40:37.3327540Z * [new branch] gh/malfet/105/orig -> origin/gh/malfet/105/orig 2025-01-24T02:40:37.3329920Z * [new branch] gh/malfet/106/base -> origin/gh/malfet/106/base 2025-01-24T02:40:37.3336740Z * [new branch] gh/malfet/106/head -> origin/gh/malfet/106/head 2025-01-24T02:40:37.3346480Z * [new branch] gh/malfet/106/orig -> origin/gh/malfet/106/orig 2025-01-24T02:40:37.3354660Z * [new branch] gh/malfet/107/base -> origin/gh/malfet/107/base 2025-01-24T02:40:37.3362600Z * [new branch] gh/malfet/107/head -> origin/gh/malfet/107/head 2025-01-24T02:40:37.3370020Z * [new branch] gh/malfet/107/orig -> origin/gh/malfet/107/orig 2025-01-24T02:40:37.3378020Z * [new branch] gh/malfet/108/base -> origin/gh/malfet/108/base 2025-01-24T02:40:37.3385360Z * [new branch] gh/malfet/108/head -> origin/gh/malfet/108/head 2025-01-24T02:40:37.3392100Z * [new branch] gh/malfet/108/orig -> origin/gh/malfet/108/orig 2025-01-24T02:40:37.3400010Z * [new branch] gh/malfet/109/base -> origin/gh/malfet/109/base 2025-01-24T02:40:37.3407650Z * [new branch] gh/malfet/109/head -> origin/gh/malfet/109/head 2025-01-24T02:40:37.3409620Z * [new branch] gh/malfet/109/orig -> origin/gh/malfet/109/orig 2025-01-24T02:40:37.3416490Z * [new branch] gh/malfet/110/base -> origin/gh/malfet/110/base 2025-01-24T02:40:37.3424620Z * [new branch] gh/malfet/110/head -> origin/gh/malfet/110/head 2025-01-24T02:40:37.3432450Z * [new branch] gh/malfet/110/orig -> origin/gh/malfet/110/orig 2025-01-24T02:40:37.3439640Z * [new branch] gh/malfet/111/base -> origin/gh/malfet/111/base 2025-01-24T02:40:37.3447960Z * [new branch] gh/malfet/111/head -> origin/gh/malfet/111/head 2025-01-24T02:40:37.3449810Z * [new branch] gh/malfet/111/orig -> origin/gh/malfet/111/orig 2025-01-24T02:40:37.3456410Z * [new branch] gh/malfet/112/base -> origin/gh/malfet/112/base 2025-01-24T02:40:37.3465080Z * [new branch] gh/malfet/112/head -> origin/gh/malfet/112/head 2025-01-24T02:40:37.3472290Z * [new branch] gh/malfet/112/orig -> origin/gh/malfet/112/orig 2025-01-24T02:40:37.3479850Z * [new branch] gh/malfet/113/base -> origin/gh/malfet/113/base 2025-01-24T02:40:37.3487890Z * [new branch] gh/malfet/113/head -> origin/gh/malfet/113/head 2025-01-24T02:40:37.3489810Z * [new branch] gh/malfet/113/orig -> origin/gh/malfet/113/orig 2025-01-24T02:40:37.3496990Z * [new branch] gh/malfet/114/base -> origin/gh/malfet/114/base 2025-01-24T02:40:37.3505970Z * [new branch] gh/malfet/114/head -> origin/gh/malfet/114/head 2025-01-24T02:40:37.3513320Z * [new branch] gh/malfet/114/orig -> origin/gh/malfet/114/orig 2025-01-24T02:40:37.3521150Z * [new branch] gh/malfet/115/base -> origin/gh/malfet/115/base 2025-01-24T02:40:37.3528070Z * [new branch] gh/malfet/115/head -> origin/gh/malfet/115/head 2025-01-24T02:40:37.3535110Z * [new branch] gh/malfet/115/orig -> origin/gh/malfet/115/orig 2025-01-24T02:40:37.3542850Z * [new branch] gh/malfet/116/base -> origin/gh/malfet/116/base 2025-01-24T02:40:37.3551620Z * [new branch] gh/malfet/116/head -> origin/gh/malfet/116/head 2025-01-24T02:40:37.3553110Z * [new branch] gh/malfet/116/orig -> origin/gh/malfet/116/orig 2025-01-24T02:40:37.3560570Z * [new branch] gh/malfet/117/base -> origin/gh/malfet/117/base 2025-01-24T02:40:37.3568700Z * [new branch] gh/malfet/117/head -> origin/gh/malfet/117/head 2025-01-24T02:40:37.3574200Z * [new branch] gh/malfet/117/orig -> origin/gh/malfet/117/orig 2025-01-24T02:40:37.3582240Z * [new branch] gh/malfet/118/base -> origin/gh/malfet/118/base 2025-01-24T02:40:37.3590180Z * [new branch] gh/malfet/118/head -> origin/gh/malfet/118/head 2025-01-24T02:40:37.3592630Z * [new branch] gh/malfet/118/orig -> origin/gh/malfet/118/orig 2025-01-24T02:40:37.3599690Z * [new branch] gh/malfet/119/base -> origin/gh/malfet/119/base 2025-01-24T02:40:37.3607880Z * [new branch] gh/malfet/119/head -> origin/gh/malfet/119/head 2025-01-24T02:40:37.3615660Z * [new branch] gh/malfet/119/orig -> origin/gh/malfet/119/orig 2025-01-24T02:40:37.3623140Z * [new branch] gh/malfet/120/base -> origin/gh/malfet/120/base 2025-01-24T02:40:37.3632160Z * [new branch] gh/malfet/120/head -> origin/gh/malfet/120/head 2025-01-24T02:40:37.3634150Z * [new branch] gh/malfet/120/orig -> origin/gh/malfet/120/orig 2025-01-24T02:40:37.3641800Z * [new branch] gh/malfet/121/base -> origin/gh/malfet/121/base 2025-01-24T02:40:37.3649290Z * [new branch] gh/malfet/121/head -> origin/gh/malfet/121/head 2025-01-24T02:40:37.3655620Z * [new branch] gh/malfet/121/orig -> origin/gh/malfet/121/orig 2025-01-24T02:40:37.3663730Z * [new branch] gh/malfet/122/base -> origin/gh/malfet/122/base 2025-01-24T02:40:37.3665760Z * [new branch] gh/malfet/122/head -> origin/gh/malfet/122/head 2025-01-24T02:40:37.3673580Z * [new branch] gh/malfet/122/orig -> origin/gh/malfet/122/orig 2025-01-24T02:40:37.3680380Z * [new branch] gh/malfet/123/base -> origin/gh/malfet/123/base 2025-01-24T02:40:37.3688200Z * [new branch] gh/malfet/123/head -> origin/gh/malfet/123/head 2025-01-24T02:40:37.3696050Z * [new branch] gh/malfet/123/orig -> origin/gh/malfet/123/orig 2025-01-24T02:40:37.3703870Z * [new branch] gh/malfet/124/base -> origin/gh/malfet/124/base 2025-01-24T02:40:37.3705760Z * [new branch] gh/malfet/124/head -> origin/gh/malfet/124/head 2025-01-24T02:40:37.3713210Z * [new branch] gh/malfet/124/orig -> origin/gh/malfet/124/orig 2025-01-24T02:40:37.3721010Z * [new branch] gh/malfet/125/base -> origin/gh/malfet/125/base 2025-01-24T02:40:37.3727980Z * [new branch] gh/malfet/125/head -> origin/gh/malfet/125/head 2025-01-24T02:40:37.3735020Z * [new branch] gh/malfet/125/orig -> origin/gh/malfet/125/orig 2025-01-24T02:40:37.3737190Z * [new branch] gh/malfet/126/base -> origin/gh/malfet/126/base 2025-01-24T02:40:37.3744300Z * [new branch] gh/malfet/126/head -> origin/gh/malfet/126/head 2025-01-24T02:40:37.3749990Z * [new branch] gh/malfet/126/orig -> origin/gh/malfet/126/orig 2025-01-24T02:40:37.3752400Z * [new branch] gh/malfet/127/base -> origin/gh/malfet/127/base 2025-01-24T02:40:37.3759480Z * [new branch] gh/malfet/127/head -> origin/gh/malfet/127/head 2025-01-24T02:40:37.3768130Z * [new branch] gh/malfet/127/orig -> origin/gh/malfet/127/orig 2025-01-24T02:40:37.3776530Z * [new branch] gh/malfet/128/base -> origin/gh/malfet/128/base 2025-01-24T02:40:37.3783380Z * [new branch] gh/malfet/128/head -> origin/gh/malfet/128/head 2025-01-24T02:40:37.3791470Z * [new branch] gh/malfet/128/orig -> origin/gh/malfet/128/orig 2025-01-24T02:40:37.3793870Z * [new branch] gh/malfet/129/base -> origin/gh/malfet/129/base 2025-01-24T02:40:37.3800840Z * [new branch] gh/malfet/129/head -> origin/gh/malfet/129/head 2025-01-24T02:40:37.3809230Z * [new branch] gh/malfet/129/orig -> origin/gh/malfet/129/orig 2025-01-24T02:40:37.3816370Z * [new branch] gh/malfet/130/base -> origin/gh/malfet/130/base 2025-01-24T02:40:37.3824730Z * [new branch] gh/malfet/130/head -> origin/gh/malfet/130/head 2025-01-24T02:40:37.3832230Z * [new branch] gh/malfet/130/orig -> origin/gh/malfet/130/orig 2025-01-24T02:40:37.3839710Z * [new branch] gh/malfet/131/base -> origin/gh/malfet/131/base 2025-01-24T02:40:37.3847320Z * [new branch] gh/malfet/131/head -> origin/gh/malfet/131/head 2025-01-24T02:40:37.3849260Z * [new branch] gh/malfet/131/orig -> origin/gh/malfet/131/orig 2025-01-24T02:40:37.3856600Z * [new branch] gh/malfet/132/base -> origin/gh/malfet/132/base 2025-01-24T02:40:37.3865010Z * [new branch] gh/malfet/132/head -> origin/gh/malfet/132/head 2025-01-24T02:40:37.3872040Z * [new branch] gh/malfet/132/orig -> origin/gh/malfet/132/orig 2025-01-24T02:40:37.3879020Z * [new branch] gh/malfet/133/base -> origin/gh/malfet/133/base 2025-01-24T02:40:37.3886800Z * [new branch] gh/malfet/133/head -> origin/gh/malfet/133/head 2025-01-24T02:40:37.3889350Z * [new branch] gh/malfet/133/orig -> origin/gh/malfet/133/orig 2025-01-24T02:40:37.3896110Z * [new branch] gh/malfet/134/base -> origin/gh/malfet/134/base 2025-01-24T02:40:37.3904140Z * [new branch] gh/malfet/134/head -> origin/gh/malfet/134/head 2025-01-24T02:40:37.3912830Z * [new branch] gh/malfet/134/orig -> origin/gh/malfet/134/orig 2025-01-24T02:40:37.3919640Z * [new branch] gh/malfet/135/base -> origin/gh/malfet/135/base 2025-01-24T02:40:37.3927580Z * [new branch] gh/malfet/135/head -> origin/gh/malfet/135/head 2025-01-24T02:40:37.3934650Z * [new branch] gh/malfet/135/orig -> origin/gh/malfet/135/orig 2025-01-24T02:40:37.3942700Z * [new branch] gh/malfet/136/base -> origin/gh/malfet/136/base 2025-01-24T02:40:37.3950420Z * [new branch] gh/malfet/136/head -> origin/gh/malfet/136/head 2025-01-24T02:40:37.3958480Z * [new branch] gh/malfet/136/orig -> origin/gh/malfet/136/orig 2025-01-24T02:40:37.3960990Z * [new branch] gh/malfet/137/base -> origin/gh/malfet/137/base 2025-01-24T02:40:37.3968220Z * [new branch] gh/malfet/137/head -> origin/gh/malfet/137/head 2025-01-24T02:40:37.3975490Z * [new branch] gh/malfet/137/orig -> origin/gh/malfet/137/orig 2025-01-24T02:40:37.3982620Z * [new branch] gh/malfet/138/base -> origin/gh/malfet/138/base 2025-01-24T02:40:37.3990160Z * [new branch] gh/malfet/138/head -> origin/gh/malfet/138/head 2025-01-24T02:40:37.3998080Z * [new branch] gh/malfet/138/orig -> origin/gh/malfet/138/orig 2025-01-24T02:40:37.4000520Z * [new branch] gh/malfet/139/base -> origin/gh/malfet/139/base 2025-01-24T02:40:37.4007860Z * [new branch] gh/malfet/139/head -> origin/gh/malfet/139/head 2025-01-24T02:40:37.4015070Z * [new branch] gh/malfet/139/orig -> origin/gh/malfet/139/orig 2025-01-24T02:40:37.4022550Z * [new branch] gh/malfet/14/base -> origin/gh/malfet/14/base 2025-01-24T02:40:37.4025780Z * [new branch] gh/malfet/140/base -> origin/gh/malfet/140/base 2025-01-24T02:40:37.4033750Z * [new branch] gh/malfet/140/head -> origin/gh/malfet/140/head 2025-01-24T02:40:37.4041620Z * [new branch] gh/malfet/140/orig -> origin/gh/malfet/140/orig 2025-01-24T02:40:37.4047870Z * [new branch] gh/malfet/141/base -> origin/gh/malfet/141/base 2025-01-24T02:40:37.4056010Z * [new branch] gh/malfet/141/head -> origin/gh/malfet/141/head 2025-01-24T02:40:37.4064100Z * [new branch] gh/malfet/141/orig -> origin/gh/malfet/141/orig 2025-01-24T02:40:37.4066340Z * [new branch] gh/malfet/142/base -> origin/gh/malfet/142/base 2025-01-24T02:40:37.4073580Z * [new branch] gh/malfet/142/head -> origin/gh/malfet/142/head 2025-01-24T02:40:37.4081030Z * [new branch] gh/malfet/142/orig -> origin/gh/malfet/142/orig 2025-01-24T02:40:37.4089300Z * [new branch] gh/malfet/143/base -> origin/gh/malfet/143/base 2025-01-24T02:40:37.4097420Z * [new branch] gh/malfet/143/head -> origin/gh/malfet/143/head 2025-01-24T02:40:37.4104590Z * [new branch] gh/malfet/143/orig -> origin/gh/malfet/143/orig 2025-01-24T02:40:37.4107040Z * [new branch] gh/malfet/144/base -> origin/gh/malfet/144/base 2025-01-24T02:40:37.4114510Z * [new branch] gh/malfet/144/head -> origin/gh/malfet/144/head 2025-01-24T02:40:37.4121670Z * [new branch] gh/malfet/144/orig -> origin/gh/malfet/144/orig 2025-01-24T02:40:37.4129760Z * [new branch] gh/malfet/145/base -> origin/gh/malfet/145/base 2025-01-24T02:40:37.4131910Z * [new branch] gh/malfet/145/head -> origin/gh/malfet/145/head 2025-01-24T02:40:37.4136760Z * [new branch] gh/malfet/145/orig -> origin/gh/malfet/145/orig 2025-01-24T02:40:37.4139460Z * [new branch] gh/malfet/146/base -> origin/gh/malfet/146/base 2025-01-24T02:40:37.4145760Z * [new branch] gh/malfet/146/head -> origin/gh/malfet/146/head 2025-01-24T02:40:37.4154610Z * [new branch] gh/malfet/146/orig -> origin/gh/malfet/146/orig 2025-01-24T02:40:37.4161360Z * [new branch] gh/malfet/31/base -> origin/gh/malfet/31/base 2025-01-24T02:40:37.4169080Z * [new branch] gh/malfet/31/head -> origin/gh/malfet/31/head 2025-01-24T02:40:37.4177140Z * [new branch] gh/malfet/31/orig -> origin/gh/malfet/31/orig 2025-01-24T02:40:37.4184690Z * [new branch] gh/malfet/37/base -> origin/gh/malfet/37/base 2025-01-24T02:40:37.4186670Z * [new branch] gh/malfet/37/head -> origin/gh/malfet/37/head 2025-01-24T02:40:37.4194300Z * [new branch] gh/malfet/37/orig -> origin/gh/malfet/37/orig 2025-01-24T02:40:37.4201400Z * [new branch] gh/malfet/64/base -> origin/gh/malfet/64/base 2025-01-24T02:40:37.4209900Z * [new branch] gh/malfet/64/head -> origin/gh/malfet/64/head 2025-01-24T02:40:37.4217820Z * [new branch] gh/malfet/88/base -> origin/gh/malfet/88/base 2025-01-24T02:40:37.4224710Z * [new branch] gh/malfet/88/head -> origin/gh/malfet/88/head 2025-01-24T02:40:37.4232420Z * [new branch] gh/malfet/88/orig -> origin/gh/malfet/88/orig 2025-01-24T02:40:37.4240790Z * [new branch] gh/malfet/89/base -> origin/gh/malfet/89/base 2025-01-24T02:40:37.4248470Z * [new branch] gh/malfet/89/head -> origin/gh/malfet/89/head 2025-01-24T02:40:37.4250420Z * [new branch] gh/malfet/89/orig -> origin/gh/malfet/89/orig 2025-01-24T02:40:37.4257870Z * [new branch] gh/malfet/90/base -> origin/gh/malfet/90/base 2025-01-24T02:40:37.4264730Z * [new branch] gh/malfet/90/head -> origin/gh/malfet/90/head 2025-01-24T02:40:37.4272200Z * [new branch] gh/malfet/90/orig -> origin/gh/malfet/90/orig 2025-01-24T02:40:37.4279890Z * [new branch] gh/malfet/91/base -> origin/gh/malfet/91/base 2025-01-24T02:40:37.4288390Z * [new branch] gh/malfet/91/head -> origin/gh/malfet/91/head 2025-01-24T02:40:37.4290040Z * [new branch] gh/malfet/91/orig -> origin/gh/malfet/91/orig 2025-01-24T02:40:37.4297050Z * [new branch] gh/malfet/92/base -> origin/gh/malfet/92/base 2025-01-24T02:40:37.4304720Z * [new branch] gh/malfet/92/head -> origin/gh/malfet/92/head 2025-01-24T02:40:37.4313870Z * [new branch] gh/malfet/92/orig -> origin/gh/malfet/92/orig 2025-01-24T02:40:37.4321480Z * [new branch] gh/malfet/93/base -> origin/gh/malfet/93/base 2025-01-24T02:40:37.4328000Z * [new branch] gh/malfet/93/head -> origin/gh/malfet/93/head 2025-01-24T02:40:37.4335400Z * [new branch] gh/malfet/93/orig -> origin/gh/malfet/93/orig 2025-01-24T02:40:37.4342870Z * [new branch] gh/malfet/94/base -> origin/gh/malfet/94/base 2025-01-24T02:40:37.4346000Z * [new branch] gh/malfet/94/head -> origin/gh/malfet/94/head 2025-01-24T02:40:37.4352720Z * [new branch] gh/malfet/94/orig -> origin/gh/malfet/94/orig 2025-01-24T02:40:37.4361890Z * [new branch] gh/malfet/95/base -> origin/gh/malfet/95/base 2025-01-24T02:40:37.4368850Z * [new branch] gh/malfet/95/head -> origin/gh/malfet/95/head 2025-01-24T02:40:37.4375810Z * [new branch] gh/malfet/95/orig -> origin/gh/malfet/95/orig 2025-01-24T02:40:37.4383760Z * [new branch] gh/malfet/96/base -> origin/gh/malfet/96/base 2025-01-24T02:40:37.4386560Z * [new branch] gh/malfet/96/head -> origin/gh/malfet/96/head 2025-01-24T02:40:37.4393280Z * [new branch] gh/malfet/96/orig -> origin/gh/malfet/96/orig 2025-01-24T02:40:37.4400960Z * [new branch] gh/malfet/97/base -> origin/gh/malfet/97/base 2025-01-24T02:40:37.4408170Z * [new branch] gh/malfet/97/head -> origin/gh/malfet/97/head 2025-01-24T02:40:37.4414820Z * [new branch] gh/malfet/97/orig -> origin/gh/malfet/97/orig 2025-01-24T02:40:37.4422850Z * [new branch] gh/malfet/98/base -> origin/gh/malfet/98/base 2025-01-24T02:40:37.4431140Z * [new branch] gh/malfet/98/head -> origin/gh/malfet/98/head 2025-01-24T02:40:37.4433070Z * [new branch] gh/malfet/98/orig -> origin/gh/malfet/98/orig 2025-01-24T02:40:37.4440570Z * [new branch] gh/malfet/99/base -> origin/gh/malfet/99/base 2025-01-24T02:40:37.4448730Z * [new branch] gh/malfet/99/head -> origin/gh/malfet/99/head 2025-01-24T02:40:37.4455740Z * [new branch] gh/malfet/99/orig -> origin/gh/malfet/99/orig 2025-01-24T02:40:37.4463000Z * [new branch] gh/markkm/1/base -> origin/gh/markkm/1/base 2025-01-24T02:40:37.4470620Z * [new branch] gh/masnesral/140/base -> origin/gh/masnesral/140/base 2025-01-24T02:40:37.4473030Z * [new branch] gh/masnesral/140/head -> origin/gh/masnesral/140/head 2025-01-24T02:40:37.4479650Z * [new branch] gh/masnesral/140/orig -> origin/gh/masnesral/140/orig 2025-01-24T02:40:37.4487920Z * [new branch] gh/masnesral/149/base -> origin/gh/masnesral/149/base 2025-01-24T02:40:37.4495090Z * [new branch] gh/masnesral/149/head -> origin/gh/masnesral/149/head 2025-01-24T02:40:37.4501800Z * [new branch] gh/masnesral/149/orig -> origin/gh/masnesral/149/orig 2025-01-24T02:40:37.4509020Z * [new branch] gh/masnesral/150/base -> origin/gh/masnesral/150/base 2025-01-24T02:40:37.4512300Z * [new branch] gh/masnesral/150/head -> origin/gh/masnesral/150/head 2025-01-24T02:40:37.4519280Z * [new branch] gh/masnesral/150/orig -> origin/gh/masnesral/150/orig 2025-01-24T02:40:37.4523560Z * [new branch] gh/masnesral/155/base -> origin/gh/masnesral/155/base 2025-01-24T02:40:37.4529860Z * [new branch] gh/masnesral/155/head -> origin/gh/masnesral/155/head 2025-01-24T02:40:37.4532310Z * [new branch] gh/masnesral/155/orig -> origin/gh/masnesral/155/orig 2025-01-24T02:40:37.4539430Z * [new branch] gh/masnesral/157/base -> origin/gh/masnesral/157/base 2025-01-24T02:40:37.4547570Z * [new branch] gh/masnesral/157/head -> origin/gh/masnesral/157/head 2025-01-24T02:40:37.4555520Z * [new branch] gh/masnesral/157/orig -> origin/gh/masnesral/157/orig 2025-01-24T02:40:37.4562100Z * [new branch] gh/masnesral/158/base -> origin/gh/masnesral/158/base 2025-01-24T02:40:37.4569200Z * [new branch] gh/masnesral/158/head -> origin/gh/masnesral/158/head 2025-01-24T02:40:37.4572170Z * [new branch] gh/masnesral/158/orig -> origin/gh/masnesral/158/orig 2025-01-24T02:40:37.4586800Z * [new branch] gh/masnesral/159/base -> origin/gh/masnesral/159/base 2025-01-24T02:40:37.4594870Z * [new branch] gh/masnesral/159/head -> origin/gh/masnesral/159/head 2025-01-24T02:40:37.4596530Z * [new branch] gh/masnesral/159/orig -> origin/gh/masnesral/159/orig 2025-01-24T02:40:37.4604680Z * [new branch] gh/masnesral/160/base -> origin/gh/masnesral/160/base 2025-01-24T02:40:37.4611670Z * [new branch] gh/masnesral/160/head -> origin/gh/masnesral/160/head 2025-01-24T02:40:37.4618210Z * [new branch] gh/masnesral/160/orig -> origin/gh/masnesral/160/orig 2025-01-24T02:40:37.4625570Z * [new branch] gh/masnesral/161/base -> origin/gh/masnesral/161/base 2025-01-24T02:40:37.4629340Z * [new branch] gh/masnesral/161/head -> origin/gh/masnesral/161/head 2025-01-24T02:40:37.4636620Z * [new branch] gh/masnesral/161/orig -> origin/gh/masnesral/161/orig 2025-01-24T02:40:37.4644230Z * [new branch] gh/masnesral/162/base -> origin/gh/masnesral/162/base 2025-01-24T02:40:37.4652190Z * [new branch] gh/masnesral/162/head -> origin/gh/masnesral/162/head 2025-01-24T02:40:37.4658790Z * [new branch] gh/masnesral/162/orig -> origin/gh/masnesral/162/orig 2025-01-24T02:40:37.4666180Z * [new branch] gh/masnesral/163/base -> origin/gh/masnesral/163/base 2025-01-24T02:40:37.4669300Z * [new branch] gh/masnesral/163/head -> origin/gh/masnesral/163/head 2025-01-24T02:40:37.4675720Z * [new branch] gh/masnesral/163/orig -> origin/gh/masnesral/163/orig 2025-01-24T02:40:37.4684450Z * [new branch] gh/masnesral/164/base -> origin/gh/masnesral/164/base 2025-01-24T02:40:37.4691320Z * [new branch] gh/masnesral/164/head -> origin/gh/masnesral/164/head 2025-01-24T02:40:37.4698210Z * [new branch] gh/masnesral/164/orig -> origin/gh/masnesral/164/orig 2025-01-24T02:40:37.4705470Z * [new branch] gh/masnesral/165/base -> origin/gh/masnesral/165/base 2025-01-24T02:40:37.4715400Z * [new branch] gh/masnesral/165/head -> origin/gh/masnesral/165/head 2025-01-24T02:40:37.4723040Z * [new branch] gh/masnesral/165/orig -> origin/gh/masnesral/165/orig 2025-01-24T02:40:37.4731000Z * [new branch] gh/masnesral/166/base -> origin/gh/masnesral/166/base 2025-01-24T02:40:37.4733470Z * [new branch] gh/masnesral/166/head -> origin/gh/masnesral/166/head 2025-01-24T02:40:37.4740300Z * [new branch] gh/masnesral/166/orig -> origin/gh/masnesral/166/orig 2025-01-24T02:40:37.4748990Z * [new branch] gh/masnesral/167/base -> origin/gh/masnesral/167/base 2025-01-24T02:40:37.4756470Z * [new branch] gh/masnesral/167/head -> origin/gh/masnesral/167/head 2025-01-24T02:40:37.4765060Z * [new branch] gh/masnesral/167/orig -> origin/gh/masnesral/167/orig 2025-01-24T02:40:37.4767390Z * [new branch] gh/masnesral/168/base -> origin/gh/masnesral/168/base 2025-01-24T02:40:37.4773740Z * [new branch] gh/masnesral/168/head -> origin/gh/masnesral/168/head 2025-01-24T02:40:37.4781310Z * [new branch] gh/masnesral/168/orig -> origin/gh/masnesral/168/orig 2025-01-24T02:40:37.4788410Z * [new branch] gh/masnesral/169/base -> origin/gh/masnesral/169/base 2025-01-24T02:40:37.4796660Z * [new branch] gh/masnesral/169/head -> origin/gh/masnesral/169/head 2025-01-24T02:40:37.4804830Z * [new branch] gh/masnesral/169/orig -> origin/gh/masnesral/169/orig 2025-01-24T02:40:37.4807440Z * [new branch] gh/masnesral/170/base -> origin/gh/masnesral/170/base 2025-01-24T02:40:37.4814150Z * [new branch] gh/masnesral/170/head -> origin/gh/masnesral/170/head 2025-01-24T02:40:37.4821390Z * [new branch] gh/masnesral/170/orig -> origin/gh/masnesral/170/orig 2025-01-24T02:40:37.4827660Z * [new branch] gh/masnesral/171/base -> origin/gh/masnesral/171/base 2025-01-24T02:40:37.4835520Z * [new branch] gh/masnesral/171/head -> origin/gh/masnesral/171/head 2025-01-24T02:40:37.4843480Z * [new branch] gh/masnesral/171/orig -> origin/gh/masnesral/171/orig 2025-01-24T02:40:37.4846050Z * [new branch] gh/masnesral/34/base -> origin/gh/masnesral/34/base 2025-01-24T02:40:37.4852460Z * [new branch] gh/masnesral/4/base -> origin/gh/masnesral/4/base 2025-01-24T02:40:37.4861230Z * [new branch] gh/masnesral/4/orig -> origin/gh/masnesral/4/orig 2025-01-24T02:40:37.4868000Z * [new branch] gh/mcr229/3/base -> origin/gh/mcr229/3/base 2025-01-24T02:40:37.4875160Z * [new branch] gh/mcr229/3/head -> origin/gh/mcr229/3/head 2025-01-24T02:40:37.4883640Z * [new branch] gh/mcr229/3/orig -> origin/gh/mcr229/3/orig 2025-01-24T02:40:37.4891170Z * [new branch] gh/mhorowitz/0/base -> origin/gh/mhorowitz/0/base 2025-01-24T02:40:37.4893040Z * [new branch] gh/mhorowitz/0/head -> origin/gh/mhorowitz/0/head 2025-01-24T02:40:37.4900880Z * [new branch] gh/mhorowitz/1/base -> origin/gh/mhorowitz/1/base 2025-01-24T02:40:37.4908210Z * [new branch] gh/mhorowitz/1/head -> origin/gh/mhorowitz/1/head 2025-01-24T02:40:37.4914790Z * [new branch] gh/mhorowitz/10/base -> origin/gh/mhorowitz/10/base 2025-01-24T02:40:37.4922530Z * [new branch] gh/mhorowitz/10/head -> origin/gh/mhorowitz/10/head 2025-01-24T02:40:37.4924290Z * [new branch] gh/mhorowitz/10/orig -> origin/gh/mhorowitz/10/orig 2025-01-24T02:40:37.4931410Z * [new branch] gh/mhorowitz/11/base -> origin/gh/mhorowitz/11/base 2025-01-24T02:40:37.4938180Z * [new branch] gh/mhorowitz/11/head -> origin/gh/mhorowitz/11/head 2025-01-24T02:40:37.4946050Z * [new branch] gh/mhorowitz/11/orig -> origin/gh/mhorowitz/11/orig 2025-01-24T02:40:37.4953360Z * [new branch] gh/mhorowitz/2/base -> origin/gh/mhorowitz/2/base 2025-01-24T02:40:37.4955740Z * [new branch] gh/mhorowitz/2/head -> origin/gh/mhorowitz/2/head 2025-01-24T02:40:37.4962670Z * [new branch] gh/mhorowitz/3/base -> origin/gh/mhorowitz/3/base 2025-01-24T02:40:37.4971070Z * [new branch] gh/mhorowitz/3/head -> origin/gh/mhorowitz/3/head 2025-01-24T02:40:37.4978830Z * [new branch] gh/mhorowitz/4/base -> origin/gh/mhorowitz/4/base 2025-01-24T02:40:37.4985510Z * [new branch] gh/mhorowitz/4/head -> origin/gh/mhorowitz/4/head 2025-01-24T02:40:37.4993760Z * [new branch] gh/mhorowitz/5/base -> origin/gh/mhorowitz/5/base 2025-01-24T02:40:37.4995530Z * [new branch] gh/mhorowitz/5/head -> origin/gh/mhorowitz/5/head 2025-01-24T02:40:37.5003270Z * [new branch] gh/mhorowitz/6/base -> origin/gh/mhorowitz/6/base 2025-01-24T02:40:37.5012150Z * [new branch] gh/mhorowitz/6/head -> origin/gh/mhorowitz/6/head 2025-01-24T02:40:37.5019110Z * [new branch] gh/mhorowitz/7/base -> origin/gh/mhorowitz/7/base 2025-01-24T02:40:37.5026210Z * [new branch] gh/mhorowitz/7/head -> origin/gh/mhorowitz/7/head 2025-01-24T02:40:37.5034570Z * [new branch] gh/mhorowitz/7/orig -> origin/gh/mhorowitz/7/orig 2025-01-24T02:40:37.5036990Z * [new branch] gh/mhorowitz/8/base -> origin/gh/mhorowitz/8/base 2025-01-24T02:40:37.5043260Z * [new branch] gh/mhorowitz/8/head -> origin/gh/mhorowitz/8/head 2025-01-24T02:40:37.5051270Z * [new branch] gh/mhorowitz/8/orig -> origin/gh/mhorowitz/8/orig 2025-01-24T02:40:37.5059900Z * [new branch] gh/mhorowitz/9/base -> origin/gh/mhorowitz/9/base 2025-01-24T02:40:37.5068080Z * [new branch] gh/mhorowitz/9/head -> origin/gh/mhorowitz/9/head 2025-01-24T02:40:37.5075910Z * [new branch] gh/mhorowitz/9/orig -> origin/gh/mhorowitz/9/orig 2025-01-24T02:40:37.5083330Z * [new branch] gh/mikaylagawarecki/234/base -> origin/gh/mikaylagawarecki/234/base 2025-01-24T02:40:37.5090990Z * [new branch] gh/mikaylagawarecki/234/head -> origin/gh/mikaylagawarecki/234/head 2025-01-24T02:40:37.5094120Z * [new branch] gh/mikaylagawarecki/235/base -> origin/gh/mikaylagawarecki/235/base 2025-01-24T02:40:37.5100910Z * [new branch] gh/mikaylagawarecki/235/head -> origin/gh/mikaylagawarecki/235/head 2025-01-24T02:40:37.5108270Z * [new branch] gh/mikaylagawarecki/236/base -> origin/gh/mikaylagawarecki/236/base 2025-01-24T02:40:37.5110140Z * [new branch] gh/mikaylagawarecki/236/head -> origin/gh/mikaylagawarecki/236/head 2025-01-24T02:40:37.5117000Z * [new branch] gh/mikaylagawarecki/237/base -> origin/gh/mikaylagawarecki/237/base 2025-01-24T02:40:37.5124430Z * [new branch] gh/mikaylagawarecki/237/head -> origin/gh/mikaylagawarecki/237/head 2025-01-24T02:40:37.5132300Z * [new branch] gh/mikaylagawarecki/238/base -> origin/gh/mikaylagawarecki/238/base 2025-01-24T02:40:37.5140240Z * [new branch] gh/mikaylagawarecki/238/head -> origin/gh/mikaylagawarecki/238/head 2025-01-24T02:40:37.5142720Z * [new branch] gh/mikaylagawarecki/274/base -> origin/gh/mikaylagawarecki/274/base 2025-01-24T02:40:37.5149800Z * [new branch] gh/mikaylagawarecki/274/head -> origin/gh/mikaylagawarecki/274/head 2025-01-24T02:40:37.5157150Z * [new branch] gh/mikaylagawarecki/274/orig -> origin/gh/mikaylagawarecki/274/orig 2025-01-24T02:40:37.5165060Z * [new branch] gh/mikaylagawarecki/276/base -> origin/gh/mikaylagawarecki/276/base 2025-01-24T02:40:37.5171670Z * [new branch] gh/mikaylagawarecki/276/head -> origin/gh/mikaylagawarecki/276/head 2025-01-24T02:40:37.5179750Z * [new branch] gh/mikaylagawarecki/276/orig -> origin/gh/mikaylagawarecki/276/orig 2025-01-24T02:40:37.5182440Z * [new branch] gh/mikaylagawarecki/277/base -> origin/gh/mikaylagawarecki/277/base 2025-01-24T02:40:37.5190050Z * [new branch] gh/mikaylagawarecki/277/head -> origin/gh/mikaylagawarecki/277/head 2025-01-24T02:40:37.5198610Z * [new branch] gh/mikaylagawarecki/277/orig -> origin/gh/mikaylagawarecki/277/orig 2025-01-24T02:40:37.5205220Z * [new branch] gh/mikaylagawarecki/281/base -> origin/gh/mikaylagawarecki/281/base 2025-01-24T02:40:37.5212310Z * [new branch] gh/mikaylagawarecki/281/head -> origin/gh/mikaylagawarecki/281/head 2025-01-24T02:40:37.5220240Z * [new branch] gh/mikaylagawarecki/281/orig -> origin/gh/mikaylagawarecki/281/orig 2025-01-24T02:40:37.5228390Z * [new branch] gh/mikaylagawarecki/299/base -> origin/gh/mikaylagawarecki/299/base 2025-01-24T02:40:37.5235950Z * [new branch] gh/mikaylagawarecki/299/head -> origin/gh/mikaylagawarecki/299/head 2025-01-24T02:40:37.5243980Z * [new branch] gh/mikaylagawarecki/299/orig -> origin/gh/mikaylagawarecki/299/orig 2025-01-24T02:40:37.5246480Z * [new branch] gh/mikaylagawarecki/301/base -> origin/gh/mikaylagawarecki/301/base 2025-01-24T02:40:37.5253070Z * [new branch] gh/mikaylagawarecki/301/head -> origin/gh/mikaylagawarecki/301/head 2025-01-24T02:40:37.5262000Z * [new branch] gh/mikaylagawarecki/301/orig -> origin/gh/mikaylagawarecki/301/orig 2025-01-24T02:40:37.5268710Z * [new branch] gh/mikaylagawarecki/302/base -> origin/gh/mikaylagawarecki/302/base 2025-01-24T02:40:37.5275620Z * [new branch] gh/mikaylagawarecki/302/head -> origin/gh/mikaylagawarecki/302/head 2025-01-24T02:40:37.5284860Z * [new branch] gh/mikaylagawarecki/302/orig -> origin/gh/mikaylagawarecki/302/orig 2025-01-24T02:40:37.5288870Z * [new branch] gh/mikaylagawarecki/303/base -> origin/gh/mikaylagawarecki/303/base 2025-01-24T02:40:37.5295110Z * [new branch] gh/mikaylagawarecki/303/head -> origin/gh/mikaylagawarecki/303/head 2025-01-24T02:40:37.5297140Z * [new branch] gh/mikaylagawarecki/303/orig -> origin/gh/mikaylagawarecki/303/orig 2025-01-24T02:40:37.5303080Z * [new branch] gh/mikaylagawarecki/304/base -> origin/gh/mikaylagawarecki/304/base 2025-01-24T02:40:37.5311000Z * [new branch] gh/mikaylagawarecki/304/head -> origin/gh/mikaylagawarecki/304/head 2025-01-24T02:40:37.5318200Z * [new branch] gh/mikaylagawarecki/304/orig -> origin/gh/mikaylagawarecki/304/orig 2025-01-24T02:40:37.5325920Z * [new branch] gh/mikaylagawarecki/305/base -> origin/gh/mikaylagawarecki/305/base 2025-01-24T02:40:37.5333930Z * [new branch] gh/mikaylagawarecki/305/head -> origin/gh/mikaylagawarecki/305/head 2025-01-24T02:40:37.5335760Z * [new branch] gh/mikaylagawarecki/305/orig -> origin/gh/mikaylagawarecki/305/orig 2025-01-24T02:40:37.5343100Z * [new branch] gh/mikaylagawarecki/306/base -> origin/gh/mikaylagawarecki/306/base 2025-01-24T02:40:37.5350570Z * [new branch] gh/mikaylagawarecki/306/head -> origin/gh/mikaylagawarecki/306/head 2025-01-24T02:40:37.5357490Z * [new branch] gh/mikaylagawarecki/306/orig -> origin/gh/mikaylagawarecki/306/orig 2025-01-24T02:40:37.5364330Z * [new branch] gh/mikaylagawarecki/307/base -> origin/gh/mikaylagawarecki/307/base 2025-01-24T02:40:37.5371700Z * [new branch] gh/mikaylagawarecki/307/head -> origin/gh/mikaylagawarecki/307/head 2025-01-24T02:40:37.5378980Z * [new branch] gh/mikaylagawarecki/307/orig -> origin/gh/mikaylagawarecki/307/orig 2025-01-24T02:40:37.5382260Z * [new branch] gh/mingfeima/125/base -> origin/gh/mingfeima/125/base 2025-01-24T02:40:37.5389680Z * [new branch] gh/mingfeima/125/head -> origin/gh/mingfeima/125/head 2025-01-24T02:40:37.5398390Z * [new branch] gh/mingfeima/125/orig -> origin/gh/mingfeima/125/orig 2025-01-24T02:40:37.5405320Z * [new branch] gh/mingfeima/127/base -> origin/gh/mingfeima/127/base 2025-01-24T02:40:37.5411590Z * [new branch] gh/mingfeima/127/head -> origin/gh/mingfeima/127/head 2025-01-24T02:40:37.5424260Z * [new branch] gh/mingfeima/127/orig -> origin/gh/mingfeima/127/orig 2025-01-24T02:40:37.5424830Z * [new branch] gh/mlazos/1/base -> origin/gh/mlazos/1/base 2025-01-24T02:40:37.5429830Z * [new branch] gh/mlazos/1/head -> origin/gh/mlazos/1/head 2025-01-24T02:40:37.5438490Z * [new branch] gh/mlazos/2/base -> origin/gh/mlazos/2/base 2025-01-24T02:40:37.5445030Z * [new branch] gh/mlazos/2/head -> origin/gh/mlazos/2/head 2025-01-24T02:40:37.5452580Z * [new branch] gh/mlazos/3/base -> origin/gh/mlazos/3/base 2025-01-24T02:40:37.5460340Z * [new branch] gh/mlazos/3/head -> origin/gh/mlazos/3/head 2025-01-24T02:40:37.5461970Z * [new branch] gh/mlazos/3/orig -> origin/gh/mlazos/3/orig 2025-01-24T02:40:37.5469590Z * [new branch] gh/mlazos/4/base -> origin/gh/mlazos/4/base 2025-01-24T02:40:37.5477770Z * [new branch] gh/mlazos/4/head -> origin/gh/mlazos/4/head 2025-01-24T02:40:37.5484360Z * [new branch] gh/mlazos/4/orig -> origin/gh/mlazos/4/orig 2025-01-24T02:40:37.5492480Z * [new branch] gh/mrshenli/382/base -> origin/gh/mrshenli/382/base 2025-01-24T02:40:37.5500300Z * [new branch] gh/mrshenli/382/head -> origin/gh/mrshenli/382/head 2025-01-24T02:40:37.5502450Z * [new branch] gh/mrshenli/382/orig -> origin/gh/mrshenli/382/orig 2025-01-24T02:40:37.5509550Z * [new branch] gh/muchulee8/1/base -> origin/gh/muchulee8/1/base 2025-01-24T02:40:37.5517800Z * [new branch] gh/muchulee8/1/orig -> origin/gh/muchulee8/1/orig 2025-01-24T02:40:37.5525780Z * [new branch] gh/muchulee8/2/base -> origin/gh/muchulee8/2/base 2025-01-24T02:40:37.5532180Z * [new branch] gh/muchulee8/2/orig -> origin/gh/muchulee8/2/orig 2025-01-24T02:40:37.5540360Z * [new branch] gh/muchulee8/36/base -> origin/gh/muchulee8/36/base 2025-01-24T02:40:37.5542690Z * [new branch] gh/muchulee8/36/head -> origin/gh/muchulee8/36/head 2025-01-24T02:40:37.5549970Z * [new branch] gh/muchulee8/36/orig -> origin/gh/muchulee8/36/orig 2025-01-24T02:40:37.5557220Z * [new branch] gh/muchulee8/38/base -> origin/gh/muchulee8/38/base 2025-01-24T02:40:37.5565360Z * [new branch] gh/muchulee8/38/head -> origin/gh/muchulee8/38/head 2025-01-24T02:40:37.5572600Z * [new branch] gh/muchulee8/38/orig -> origin/gh/muchulee8/38/orig 2025-01-24T02:40:37.5580460Z * [new branch] gh/muchulee8/39/base -> origin/gh/muchulee8/39/base 2025-01-24T02:40:37.5582350Z * [new branch] gh/muchulee8/39/head -> origin/gh/muchulee8/39/head 2025-01-24T02:40:37.5589640Z * [new branch] gh/muchulee8/39/orig -> origin/gh/muchulee8/39/orig 2025-01-24T02:40:37.5598160Z * [new branch] gh/muchulee8/40/base -> origin/gh/muchulee8/40/base 2025-01-24T02:40:37.5604790Z * [new branch] gh/muchulee8/40/head -> origin/gh/muchulee8/40/head 2025-01-24T02:40:37.5611320Z * [new branch] gh/muchulee8/40/orig -> origin/gh/muchulee8/40/orig 2025-01-24T02:40:37.5619450Z * [new branch] gh/muchulee8/41/base -> origin/gh/muchulee8/41/base 2025-01-24T02:40:37.5627370Z * [new branch] gh/muchulee8/41/head -> origin/gh/muchulee8/41/head 2025-01-24T02:40:37.5629050Z * [new branch] gh/muchulee8/41/orig -> origin/gh/muchulee8/41/orig 2025-01-24T02:40:37.5636260Z * [new branch] gh/muchulee8/5/base -> origin/gh/muchulee8/5/base 2025-01-24T02:40:37.5644530Z * [new branch] gh/muchulee8/5/orig -> origin/gh/muchulee8/5/orig 2025-01-24T02:40:37.5652670Z * [new branch] gh/mzzchy/2/base -> origin/gh/mzzchy/2/base 2025-01-24T02:40:37.5661130Z * [new branch] gh/mzzchy/2/head -> origin/gh/mzzchy/2/head 2025-01-24T02:40:37.5668090Z * [new branch] gh/mzzchy/2/orig -> origin/gh/mzzchy/2/orig 2025-01-24T02:40:37.5674680Z * [new branch] gh/mzzchy/3/base -> origin/gh/mzzchy/3/base 2025-01-24T02:40:37.5683230Z * [new branch] gh/mzzchy/3/head -> origin/gh/mzzchy/3/head 2025-01-24T02:40:37.5691160Z * [new branch] gh/mzzchy/3/orig -> origin/gh/mzzchy/3/orig 2025-01-24T02:40:37.5693810Z * [new branch] gh/mzzchy/4/base -> origin/gh/mzzchy/4/base 2025-01-24T02:40:37.5700100Z * [new branch] gh/mzzchy/4/head -> origin/gh/mzzchy/4/head 2025-01-24T02:40:37.5707850Z * [new branch] gh/mzzchy/5/base -> origin/gh/mzzchy/5/base 2025-01-24T02:40:37.5715700Z * [new branch] gh/mzzchy/5/head -> origin/gh/mzzchy/5/head 2025-01-24T02:40:37.5723340Z * [new branch] gh/mzzchy/5/orig -> origin/gh/mzzchy/5/orig 2025-01-24T02:40:37.5731230Z * [new branch] gh/nmacchioni/10/base -> origin/gh/nmacchioni/10/base 2025-01-24T02:40:37.5733100Z * [new branch] gh/nmacchioni/10/head -> origin/gh/nmacchioni/10/head 2025-01-24T02:40:37.5741140Z * [new branch] gh/nmacchioni/10/orig -> origin/gh/nmacchioni/10/orig 2025-01-24T02:40:37.5748700Z * [new branch] gh/nmacchioni/12/base -> origin/gh/nmacchioni/12/base 2025-01-24T02:40:37.5755820Z * [new branch] gh/nmacchioni/12/head -> origin/gh/nmacchioni/12/head 2025-01-24T02:40:37.5763790Z * [new branch] gh/nmacchioni/12/orig -> origin/gh/nmacchioni/12/orig 2025-01-24T02:40:37.5766280Z * [new branch] gh/nmacchioni/13/base -> origin/gh/nmacchioni/13/base 2025-01-24T02:40:37.5773500Z * [new branch] gh/nmacchioni/13/head -> origin/gh/nmacchioni/13/head 2025-01-24T02:40:37.5781690Z * [new branch] gh/nmacchioni/13/orig -> origin/gh/nmacchioni/13/orig 2025-01-24T02:40:37.5790570Z * [new branch] gh/nmacchioni/17/base -> origin/gh/nmacchioni/17/base 2025-01-24T02:40:37.5798230Z * [new branch] gh/nmacchioni/17/head -> origin/gh/nmacchioni/17/head 2025-01-24T02:40:37.5805430Z * [new branch] gh/nmacchioni/17/orig -> origin/gh/nmacchioni/17/orig 2025-01-24T02:40:37.5813900Z * [new branch] gh/nmacchioni/18/base -> origin/gh/nmacchioni/18/base 2025-01-24T02:40:37.5821860Z * [new branch] gh/nmacchioni/18/head -> origin/gh/nmacchioni/18/head 2025-01-24T02:40:37.5828010Z * [new branch] gh/nmacchioni/18/orig -> origin/gh/nmacchioni/18/orig 2025-01-24T02:40:37.5835690Z * [new branch] gh/nmacchioni/19/base -> origin/gh/nmacchioni/19/base 2025-01-24T02:40:37.5842910Z * [new branch] gh/nmacchioni/19/head -> origin/gh/nmacchioni/19/head 2025-01-24T02:40:37.5846110Z * [new branch] gh/nmacchioni/19/orig -> origin/gh/nmacchioni/19/orig 2025-01-24T02:40:37.5853330Z * [new branch] gh/nmacchioni/20/base -> origin/gh/nmacchioni/20/base 2025-01-24T02:40:37.5861520Z * [new branch] gh/nmacchioni/20/head -> origin/gh/nmacchioni/20/head 2025-01-24T02:40:37.5868440Z * [new branch] gh/nmacchioni/20/orig -> origin/gh/nmacchioni/20/orig 2025-01-24T02:40:37.5877480Z * [new branch] gh/nmacchioni/21/base -> origin/gh/nmacchioni/21/base 2025-01-24T02:40:37.5883480Z * [new branch] gh/nmacchioni/21/head -> origin/gh/nmacchioni/21/head 2025-01-24T02:40:37.5885390Z * [new branch] gh/nmacchioni/21/orig -> origin/gh/nmacchioni/21/orig 2025-01-24T02:40:37.5893190Z * [new branch] gh/nmacchioni/22/base -> origin/gh/nmacchioni/22/base 2025-01-24T02:40:37.5909570Z * [new branch] gh/nmacchioni/22/head -> origin/gh/nmacchioni/22/head 2025-01-24T02:40:37.5912170Z * [new branch] gh/nmacchioni/23/base -> origin/gh/nmacchioni/23/base 2025-01-24T02:40:37.5918300Z * [new branch] gh/nmacchioni/23/head -> origin/gh/nmacchioni/23/head 2025-01-24T02:40:37.5925410Z * [new branch] gh/nmacchioni/24/base -> origin/gh/nmacchioni/24/base 2025-01-24T02:40:37.5933330Z * [new branch] gh/nmacchioni/24/head -> origin/gh/nmacchioni/24/head 2025-01-24T02:40:37.5936430Z * [new branch] gh/nmacchioni/25/base -> origin/gh/nmacchioni/25/base 2025-01-24T02:40:37.5942570Z * [new branch] gh/nmacchioni/25/head -> origin/gh/nmacchioni/25/head 2025-01-24T02:40:37.5951850Z * [new branch] gh/nmacchioni/26/base -> origin/gh/nmacchioni/26/base 2025-01-24T02:40:37.5959130Z * [new branch] gh/nmacchioni/26/head -> origin/gh/nmacchioni/26/head 2025-01-24T02:40:37.5966760Z * [new branch] gh/nmacchioni/26/orig -> origin/gh/nmacchioni/26/orig 2025-01-24T02:40:37.5975750Z * [new branch] gh/nmacchioni/30/base -> origin/gh/nmacchioni/30/base 2025-01-24T02:40:37.5982760Z * [new branch] gh/nmacchioni/30/head -> origin/gh/nmacchioni/30/head 2025-01-24T02:40:37.5990410Z * [new branch] gh/nmacchioni/30/orig -> origin/gh/nmacchioni/30/orig 2025-01-24T02:40:37.5994850Z * [new branch] gh/nmacchioni/31/base -> origin/gh/nmacchioni/31/base 2025-01-24T02:40:37.5999220Z * [new branch] gh/nmacchioni/31/head -> origin/gh/nmacchioni/31/head 2025-01-24T02:40:37.6008710Z * [new branch] gh/nmacchioni/31/orig -> origin/gh/nmacchioni/31/orig 2025-01-24T02:40:37.6013120Z * [new branch] gh/nmacchioni/32/base -> origin/gh/nmacchioni/32/base 2025-01-24T02:40:37.6021080Z * [new branch] gh/nmacchioni/32/head -> origin/gh/nmacchioni/32/head 2025-01-24T02:40:37.6025460Z * [new branch] gh/nmacchioni/32/orig -> origin/gh/nmacchioni/32/orig 2025-01-24T02:40:37.6033550Z * [new branch] gh/nmacchioni/33/base -> origin/gh/nmacchioni/33/base 2025-01-24T02:40:37.6039250Z * [new branch] gh/nmacchioni/33/head -> origin/gh/nmacchioni/33/head 2025-01-24T02:40:37.6048170Z * [new branch] gh/nmacchioni/33/orig -> origin/gh/nmacchioni/33/orig 2025-01-24T02:40:37.6055610Z * [new branch] gh/nmacchioni/34/base -> origin/gh/nmacchioni/34/base 2025-01-24T02:40:37.6061160Z * [new branch] gh/nmacchioni/34/orig -> origin/gh/nmacchioni/34/orig 2025-01-24T02:40:37.6069540Z * [new branch] gh/nmacchioni/35/base -> origin/gh/nmacchioni/35/base 2025-01-24T02:40:37.6072920Z * [new branch] gh/nmacchioni/35/head -> origin/gh/nmacchioni/35/head 2025-01-24T02:40:37.6086190Z * [new branch] gh/nmacchioni/35/orig -> origin/gh/nmacchioni/35/orig 2025-01-24T02:40:37.6088740Z * [new branch] gh/nmacchioni/36/base -> origin/gh/nmacchioni/36/base 2025-01-24T02:40:37.6095810Z * [new branch] gh/nmacchioni/36/head -> origin/gh/nmacchioni/36/head 2025-01-24T02:40:37.6105600Z * [new branch] gh/nmacchioni/36/orig -> origin/gh/nmacchioni/36/orig 2025-01-24T02:40:37.6112050Z * [new branch] gh/nmacchioni/37/base -> origin/gh/nmacchioni/37/base 2025-01-24T02:40:37.6119520Z * [new branch] gh/nmacchioni/37/head -> origin/gh/nmacchioni/37/head 2025-01-24T02:40:37.6123250Z * [new branch] gh/nmacchioni/37/orig -> origin/gh/nmacchioni/37/orig 2025-01-24T02:40:37.6129130Z * [new branch] gh/nmacchioni/38/base -> origin/gh/nmacchioni/38/base 2025-01-24T02:40:37.6142910Z * [new branch] gh/nmacchioni/38/orig -> origin/gh/nmacchioni/38/orig 2025-01-24T02:40:37.6146060Z * [new branch] gh/nmacchioni/6/base -> origin/gh/nmacchioni/6/base 2025-01-24T02:40:37.6152770Z * [new branch] gh/nmacchioni/6/head -> origin/gh/nmacchioni/6/head 2025-01-24T02:40:37.6160970Z * [new branch] gh/nmacchioni/6/orig -> origin/gh/nmacchioni/6/orig 2025-01-24T02:40:37.6169090Z * [new branch] gh/nmacchioni/8/base -> origin/gh/nmacchioni/8/base 2025-01-24T02:40:37.6175470Z * [new branch] gh/nmacchioni/8/head -> origin/gh/nmacchioni/8/head 2025-01-24T02:40:37.6183430Z * [new branch] gh/nmacchioni/8/orig -> origin/gh/nmacchioni/8/orig 2025-01-24T02:40:37.6186590Z * [new branch] gh/nmacchioni/9/base -> origin/gh/nmacchioni/9/base 2025-01-24T02:40:37.6192600Z * [new branch] gh/nmacchioni/9/head -> origin/gh/nmacchioni/9/head 2025-01-24T02:40:37.6202220Z * [new branch] gh/nmacchioni/9/orig -> origin/gh/nmacchioni/9/orig 2025-01-24T02:40:37.6209200Z * [new branch] gh/oulgen/144/base -> origin/gh/oulgen/144/base 2025-01-24T02:40:37.6215850Z * [new branch] gh/oulgen/144/head -> origin/gh/oulgen/144/head 2025-01-24T02:40:37.6223130Z * [new branch] gh/oulgen/144/orig -> origin/gh/oulgen/144/orig 2025-01-24T02:40:37.6225940Z * [new branch] gh/oulgen/146/base -> origin/gh/oulgen/146/base 2025-01-24T02:40:37.6233120Z * [new branch] gh/oulgen/146/head -> origin/gh/oulgen/146/head 2025-01-24T02:40:37.6241540Z * [new branch] gh/oulgen/146/orig -> origin/gh/oulgen/146/orig 2025-01-24T02:40:37.6248430Z * [new branch] gh/oulgen/2/base -> origin/gh/oulgen/2/base 2025-01-24T02:40:37.6255430Z * [new branch] gh/oulgen/2/head -> origin/gh/oulgen/2/head 2025-01-24T02:40:37.6261160Z * [new branch] gh/oulgen/2/orig -> origin/gh/oulgen/2/orig 2025-01-24T02:40:37.6265740Z * [new branch] gh/oulgen/21/base -> origin/gh/oulgen/21/base 2025-01-24T02:40:37.6271280Z * [new branch] gh/oulgen/21/head -> origin/gh/oulgen/21/head 2025-01-24T02:40:37.6279410Z * [new branch] gh/oulgen/21/orig -> origin/gh/oulgen/21/orig 2025-01-24T02:40:37.6286670Z * [new branch] gh/pearu/108/base -> origin/gh/pearu/108/base 2025-01-24T02:40:37.6288850Z * [new branch] gh/pearu/108/head -> origin/gh/pearu/108/head 2025-01-24T02:40:37.6296200Z * [new branch] gh/pearu/108/orig -> origin/gh/pearu/108/orig 2025-01-24T02:40:37.6304100Z * [new branch] gh/pearu/56/base -> origin/gh/pearu/56/base 2025-01-24T02:40:37.6311420Z * [new branch] gh/pearu/56/head -> origin/gh/pearu/56/head 2025-01-24T02:40:37.6319810Z * [new branch] gh/pearu/56/orig -> origin/gh/pearu/56/orig 2025-01-24T02:40:37.6327740Z * [new branch] gh/pearu/97/base -> origin/gh/pearu/97/base 2025-01-24T02:40:37.6336010Z * [new branch] gh/pearu/97/head -> origin/gh/pearu/97/head 2025-01-24T02:40:37.6337840Z * [new branch] gh/pearu/97/orig -> origin/gh/pearu/97/orig 2025-01-24T02:40:37.6345250Z * [new branch] gh/peterbell10/603/base -> origin/gh/peterbell10/603/base 2025-01-24T02:40:37.6351680Z * [new branch] gh/peterbell10/603/head -> origin/gh/peterbell10/603/head 2025-01-24T02:40:37.6360110Z * [new branch] gh/peterbell10/603/orig -> origin/gh/peterbell10/603/orig 2025-01-24T02:40:37.6362730Z * [new branch] gh/peterbell10/635/base -> origin/gh/peterbell10/635/base 2025-01-24T02:40:37.6369900Z * [new branch] gh/peterbell10/635/head -> origin/gh/peterbell10/635/head 2025-01-24T02:40:37.6377750Z * [new branch] gh/peterbell10/635/orig -> origin/gh/peterbell10/635/orig 2025-01-24T02:40:37.6384080Z * [new branch] gh/peterbell10/636/base -> origin/gh/peterbell10/636/base 2025-01-24T02:40:37.6391820Z * [new branch] gh/peterbell10/636/head -> origin/gh/peterbell10/636/head 2025-01-24T02:40:37.6400370Z * [new branch] gh/peterbell10/636/orig -> origin/gh/peterbell10/636/orig 2025-01-24T02:40:37.6407870Z * [new branch] gh/qqaatw/26/base -> origin/gh/qqaatw/26/base 2025-01-24T02:40:37.6409760Z * [new branch] gh/qqaatw/26/head -> origin/gh/qqaatw/26/head 2025-01-24T02:40:37.6417620Z * [new branch] gh/qqaatw/26/orig -> origin/gh/qqaatw/26/orig 2025-01-24T02:40:37.6424220Z * [new branch] gh/raymo/add-envvars-bool-check -> origin/gh/raymo/add-envvars-bool-check 2025-01-24T02:40:37.6431860Z * [new branch] gh/rec/112/base -> origin/gh/rec/112/base 2025-01-24T02:40:37.6439270Z * [new branch] gh/rec/112/head -> origin/gh/rec/112/head 2025-01-24T02:40:37.6448150Z * [new branch] gh/rec/112/orig -> origin/gh/rec/112/orig 2025-01-24T02:40:37.6450590Z * [new branch] gh/rec/115/base -> origin/gh/rec/115/base 2025-01-24T02:40:37.6457340Z * [new branch] gh/rec/115/head -> origin/gh/rec/115/head 2025-01-24T02:40:37.6464560Z * [new branch] gh/rec/115/orig -> origin/gh/rec/115/orig 2025-01-24T02:40:37.6471080Z * [new branch] gh/rec/116/base -> origin/gh/rec/116/base 2025-01-24T02:40:37.6474760Z * [new branch] gh/rec/116/head -> origin/gh/rec/116/head 2025-01-24T02:40:37.6487660Z * [new branch] gh/rec/116/orig -> origin/gh/rec/116/orig 2025-01-24T02:40:37.6495810Z * [new branch] gh/rec/117/base -> origin/gh/rec/117/base 2025-01-24T02:40:37.6500520Z * [new branch] gh/rec/117/head -> origin/gh/rec/117/head 2025-01-24T02:40:37.6507980Z * [new branch] gh/rec/117/orig -> origin/gh/rec/117/orig 2025-01-24T02:40:37.6513580Z * [new branch] gh/rec/118/base -> origin/gh/rec/118/base 2025-01-24T02:40:37.6522370Z * [new branch] gh/rec/118/head -> origin/gh/rec/118/head 2025-01-24T02:40:37.6531480Z * [new branch] gh/rec/118/orig -> origin/gh/rec/118/orig 2025-01-24T02:40:37.6539030Z * [new branch] gh/rec/119/base -> origin/gh/rec/119/base 2025-01-24T02:40:37.6544480Z * [new branch] gh/rec/119/head -> origin/gh/rec/119/head 2025-01-24T02:40:37.6551890Z * [new branch] gh/rec/119/orig -> origin/gh/rec/119/orig 2025-01-24T02:40:37.6560300Z * [new branch] gh/rec/120/base -> origin/gh/rec/120/base 2025-01-24T02:40:37.6566090Z * [new branch] gh/rec/120/head -> origin/gh/rec/120/head 2025-01-24T02:40:37.6574660Z * [new branch] gh/rec/120/orig -> origin/gh/rec/120/orig 2025-01-24T02:40:37.6582760Z * [new branch] gh/rec/121/base -> origin/gh/rec/121/base 2025-01-24T02:40:37.6591940Z * [new branch] gh/rec/121/head -> origin/gh/rec/121/head 2025-01-24T02:40:37.6595120Z * [new branch] gh/rec/121/orig -> origin/gh/rec/121/orig 2025-01-24T02:40:37.6603280Z * [new branch] gh/rec/122/base -> origin/gh/rec/122/base 2025-01-24T02:40:37.6618280Z * [new branch] gh/rec/122/head -> origin/gh/rec/122/head 2025-01-24T02:40:37.6625900Z * [new branch] gh/rec/122/orig -> origin/gh/rec/122/orig 2025-01-24T02:40:37.6633690Z * [new branch] gh/rec/123/base -> origin/gh/rec/123/base 2025-01-24T02:40:37.6636060Z * [new branch] gh/rec/123/head -> origin/gh/rec/123/head 2025-01-24T02:40:37.6649060Z * [new branch] gh/rec/123/orig -> origin/gh/rec/123/orig 2025-01-24T02:40:37.6656990Z * [new branch] gh/rec/124/base -> origin/gh/rec/124/base 2025-01-24T02:40:37.6658810Z * [new branch] gh/rec/124/head -> origin/gh/rec/124/head 2025-01-24T02:40:37.6666180Z * [new branch] gh/rec/124/orig -> origin/gh/rec/124/orig 2025-01-24T02:40:37.6673780Z * [new branch] gh/rec/27/base -> origin/gh/rec/27/base 2025-01-24T02:40:37.6681660Z * [new branch] gh/rec/27/head -> origin/gh/rec/27/head 2025-01-24T02:40:37.6688810Z * [new branch] gh/rec/27/orig -> origin/gh/rec/27/orig 2025-01-24T02:40:37.6696710Z * [new branch] gh/rec/56/base -> origin/gh/rec/56/base 2025-01-24T02:40:37.6699010Z * [new branch] gh/rec/56/head -> origin/gh/rec/56/head 2025-01-24T02:40:37.6706210Z * [new branch] gh/rec/56/orig -> origin/gh/rec/56/orig 2025-01-24T02:40:37.6714450Z * [new branch] gh/rohan-varma/720/base -> origin/gh/rohan-varma/720/base 2025-01-24T02:40:37.6721440Z * [new branch] gh/rohan-varma/720/head -> origin/gh/rohan-varma/720/head 2025-01-24T02:40:37.6728120Z * [new branch] gh/rohan-varma/720/orig -> origin/gh/rohan-varma/720/orig 2025-01-24T02:40:37.6735330Z * [new branch] gh/rohan-varma/721/base -> origin/gh/rohan-varma/721/base 2025-01-24T02:40:37.6743030Z * [new branch] gh/rohan-varma/721/head -> origin/gh/rohan-varma/721/head 2025-01-24T02:40:37.6747010Z * [new branch] gh/rohan-varma/721/orig -> origin/gh/rohan-varma/721/orig 2025-01-24T02:40:37.6753010Z * [new branch] gh/rohan-varma/722/base -> origin/gh/rohan-varma/722/base 2025-01-24T02:40:37.6761940Z * [new branch] gh/rohan-varma/722/head -> origin/gh/rohan-varma/722/head 2025-01-24T02:40:37.6765270Z * [new branch] gh/rohan-varma/722/orig -> origin/gh/rohan-varma/722/orig 2025-01-24T02:40:37.6772370Z * [new branch] gh/rohan-varma/742/base -> origin/gh/rohan-varma/742/base 2025-01-24T02:40:37.6780250Z * [new branch] gh/rohan-varma/742/head -> origin/gh/rohan-varma/742/head 2025-01-24T02:40:37.6788670Z * [new branch] gh/rohan-varma/742/orig -> origin/gh/rohan-varma/742/orig 2025-01-24T02:40:37.6795360Z * [new branch] gh/sanrise/4/base -> origin/gh/sanrise/4/base 2025-01-24T02:40:37.6802990Z * [new branch] gh/sanrise/4/head -> origin/gh/sanrise/4/head 2025-01-24T02:40:37.6810560Z * [new branch] gh/sanrise/4/orig -> origin/gh/sanrise/4/orig 2025-01-24T02:40:37.6813630Z * [new branch] gh/seemethere/7/base -> origin/gh/seemethere/7/base 2025-01-24T02:40:37.6819480Z * [new branch] gh/seemethere/7/head -> origin/gh/seemethere/7/head 2025-01-24T02:40:37.6828280Z * [new branch] gh/seemethere/7/orig -> origin/gh/seemethere/7/orig 2025-01-24T02:40:37.6835480Z * [new branch] gh/shunting314/145/base -> origin/gh/shunting314/145/base 2025-01-24T02:40:37.6842480Z * [new branch] gh/shunting314/145/head -> origin/gh/shunting314/145/head 2025-01-24T02:40:37.6845780Z * [new branch] gh/shunting314/145/orig -> origin/gh/shunting314/145/orig 2025-01-24T02:40:37.6856460Z * [new branch] gh/shunting314/151/base -> origin/gh/shunting314/151/base 2025-01-24T02:40:37.6861390Z * [new branch] gh/shunting314/151/head -> origin/gh/shunting314/151/head 2025-01-24T02:40:37.6869940Z * [new branch] gh/shunting314/151/orig -> origin/gh/shunting314/151/orig 2025-01-24T02:40:37.6878160Z * [new branch] gh/shunting314/176/base -> origin/gh/shunting314/176/base 2025-01-24T02:40:37.6886210Z * [new branch] gh/shunting314/176/head -> origin/gh/shunting314/176/head 2025-01-24T02:40:37.6891060Z * [new branch] gh/shunting314/176/orig -> origin/gh/shunting314/176/orig 2025-01-24T02:40:37.6898550Z * [new branch] gh/shunting314/186/base -> origin/gh/shunting314/186/base 2025-01-24T02:40:37.6904340Z * [new branch] gh/shunting314/186/head -> origin/gh/shunting314/186/head 2025-01-24T02:40:37.6912380Z * [new branch] gh/shunting314/186/orig -> origin/gh/shunting314/186/orig 2025-01-24T02:40:37.6915480Z * [new branch] gh/shunting314/187/base -> origin/gh/shunting314/187/base 2025-01-24T02:40:37.6923940Z * [new branch] gh/shunting314/187/head -> origin/gh/shunting314/187/head 2025-01-24T02:40:37.6930350Z * [new branch] gh/shunting314/187/orig -> origin/gh/shunting314/187/orig 2025-01-24T02:40:37.6938570Z * [new branch] gh/shunting314/190/base -> origin/gh/shunting314/190/base 2025-01-24T02:40:37.6955170Z * [new branch] gh/shunting314/190/head -> origin/gh/shunting314/190/head 2025-01-24T02:40:37.6961960Z * [new branch] gh/shunting314/190/orig -> origin/gh/shunting314/190/orig 2025-01-24T02:40:37.6969730Z * [new branch] gh/shunting314/191/base -> origin/gh/shunting314/191/base 2025-01-24T02:40:37.6972630Z * [new branch] gh/shunting314/191/head -> origin/gh/shunting314/191/head 2025-01-24T02:40:37.6979870Z * [new branch] gh/shunting314/191/orig -> origin/gh/shunting314/191/orig 2025-01-24T02:40:37.6995260Z * [new branch] gh/shunting314/192/base -> origin/gh/shunting314/192/base 2025-01-24T02:40:37.6997320Z * [new branch] gh/shunting314/192/head -> origin/gh/shunting314/192/head 2025-01-24T02:40:37.7005370Z * [new branch] gh/shunting314/192/orig -> origin/gh/shunting314/192/orig 2025-01-24T02:40:37.7012120Z * [new branch] gh/shunting314/193/base -> origin/gh/shunting314/193/base 2025-01-24T02:40:37.7019090Z * [new branch] gh/shunting314/193/head -> origin/gh/shunting314/193/head 2025-01-24T02:40:37.7023200Z * [new branch] gh/shunting314/193/orig -> origin/gh/shunting314/193/orig 2025-01-24T02:40:37.7031460Z * [new branch] gh/shunting314/194/base -> origin/gh/shunting314/194/base 2025-01-24T02:40:37.7036890Z * [new branch] gh/shunting314/194/head -> origin/gh/shunting314/194/head 2025-01-24T02:40:37.7045080Z * [new branch] gh/shunting314/194/orig -> origin/gh/shunting314/194/orig 2025-01-24T02:40:37.7049130Z * [new branch] gh/shunting314/195/base -> origin/gh/shunting314/195/base 2025-01-24T02:40:37.7056900Z * [new branch] gh/shunting314/195/head -> origin/gh/shunting314/195/head 2025-01-24T02:40:37.7063200Z * [new branch] gh/shunting314/195/orig -> origin/gh/shunting314/195/orig 2025-01-24T02:40:37.7071830Z * [new branch] gh/shuqiangzhang/46/base -> origin/gh/shuqiangzhang/46/base 2025-01-24T02:40:37.7079100Z * [new branch] gh/shuqiangzhang/46/head -> origin/gh/shuqiangzhang/46/head 2025-01-24T02:40:37.7082180Z * [new branch] gh/shuqiangzhang/46/orig -> origin/gh/shuqiangzhang/46/orig 2025-01-24T02:40:37.7090690Z * [new branch] gh/shuqiangzhang/53/base -> origin/gh/shuqiangzhang/53/base 2025-01-24T02:40:37.7096850Z * [new branch] gh/shuqiangzhang/53/head -> origin/gh/shuqiangzhang/53/head 2025-01-24T02:40:37.7105020Z * [new branch] gh/shuqiangzhang/53/orig -> origin/gh/shuqiangzhang/53/orig 2025-01-24T02:40:37.7112940Z * [new branch] gh/shuqiangzhang/56/base -> origin/gh/shuqiangzhang/56/base 2025-01-24T02:40:37.7121230Z * [new branch] gh/shuqiangzhang/56/head -> origin/gh/shuqiangzhang/56/head 2025-01-24T02:40:37.7122840Z * [new branch] gh/shuqiangzhang/56/orig -> origin/gh/shuqiangzhang/56/orig 2025-01-24T02:40:37.7130240Z * [new branch] gh/shuqiangzhang/62/base -> origin/gh/shuqiangzhang/62/base 2025-01-24T02:40:37.7138250Z * [new branch] gh/shuqiangzhang/62/head -> origin/gh/shuqiangzhang/62/head 2025-01-24T02:40:37.7145520Z * [new branch] gh/shuqiangzhang/62/orig -> origin/gh/shuqiangzhang/62/orig 2025-01-24T02:40:37.7153460Z * [new branch] gh/shuqiangzhang/63/base -> origin/gh/shuqiangzhang/63/base 2025-01-24T02:40:37.7161140Z * [new branch] gh/shuqiangzhang/63/head -> origin/gh/shuqiangzhang/63/head 2025-01-24T02:40:37.7162710Z * [new branch] gh/shuqiangzhang/63/orig -> origin/gh/shuqiangzhang/63/orig 2025-01-24T02:40:37.7170590Z * [new branch] gh/sijiac/1/base -> origin/gh/sijiac/1/base 2025-01-24T02:40:37.7178540Z * [new branch] gh/sijiac/1/head -> origin/gh/sijiac/1/head 2025-01-24T02:40:37.7185970Z * [new branch] gh/sijiac/2/base -> origin/gh/sijiac/2/base 2025-01-24T02:40:37.7192090Z * [new branch] gh/sijiac/2/head -> origin/gh/sijiac/2/head 2025-01-24T02:40:37.7200150Z * [new branch] gh/sijiac/3/base -> origin/gh/sijiac/3/base 2025-01-24T02:40:37.7202450Z * [new branch] gh/sijiac/3/head -> origin/gh/sijiac/3/head 2025-01-24T02:40:37.7209290Z * [new branch] gh/silverguo/1/base -> origin/gh/silverguo/1/base 2025-01-24T02:40:37.7217010Z * [new branch] gh/silverguo/1/head -> origin/gh/silverguo/1/head 2025-01-24T02:40:37.7223900Z * [new branch] gh/silverguo/2/base -> origin/gh/silverguo/2/base 2025-01-24T02:40:37.7226200Z * [new branch] gh/silverguo/2/head -> origin/gh/silverguo/2/head 2025-01-24T02:40:37.7239880Z * [new branch] gh/silverguo/3/base -> origin/gh/silverguo/3/base 2025-01-24T02:40:37.7245050Z * [new branch] gh/silverguo/3/head -> origin/gh/silverguo/3/head 2025-01-24T02:40:37.7248740Z * [new branch] gh/silverguo/4/base -> origin/gh/silverguo/4/base 2025-01-24T02:40:37.7262290Z * [new branch] gh/silverguo/4/head -> origin/gh/silverguo/4/head 2025-01-24T02:40:37.7265740Z * [new branch] gh/sinhaanhsul/1/base -> origin/gh/sinhaanhsul/1/base 2025-01-24T02:40:37.7274450Z * [new branch] gh/sinhaanhsul/1/head -> origin/gh/sinhaanhsul/1/head 2025-01-24T02:40:37.7279870Z * [new branch] gh/soulitzer/269/base -> origin/gh/soulitzer/269/base 2025-01-24T02:40:37.7287530Z * [new branch] gh/soulitzer/269/head -> origin/gh/soulitzer/269/head 2025-01-24T02:40:37.7295020Z * [new branch] gh/soulitzer/269/orig -> origin/gh/soulitzer/269/orig 2025-01-24T02:40:37.7312900Z * [new branch] gh/soulitzer/276/base -> origin/gh/soulitzer/276/base 2025-01-24T02:40:37.7324620Z * [new branch] gh/soulitzer/276/head -> origin/gh/soulitzer/276/head 2025-01-24T02:40:37.7330850Z * [new branch] gh/soulitzer/276/orig -> origin/gh/soulitzer/276/orig 2025-01-24T02:40:37.7338280Z * [new branch] gh/soulitzer/287/base -> origin/gh/soulitzer/287/base 2025-01-24T02:40:37.7342730Z * [new branch] gh/soulitzer/287/head -> origin/gh/soulitzer/287/head 2025-01-24T02:40:37.7351690Z * [new branch] gh/soulitzer/287/orig -> origin/gh/soulitzer/287/orig 2025-01-24T02:40:37.7356950Z * [new branch] gh/soulitzer/296/base -> origin/gh/soulitzer/296/base 2025-01-24T02:40:37.7365100Z * [new branch] gh/soulitzer/296/head -> origin/gh/soulitzer/296/head 2025-01-24T02:40:37.7369340Z * [new branch] gh/soulitzer/296/orig -> origin/gh/soulitzer/296/orig 2025-01-24T02:40:37.7376910Z * [new branch] gh/soulitzer/299/base -> origin/gh/soulitzer/299/base 2025-01-24T02:40:37.7383150Z * [new branch] gh/soulitzer/299/head -> origin/gh/soulitzer/299/head 2025-01-24T02:40:37.7391260Z * [new branch] gh/soulitzer/299/orig -> origin/gh/soulitzer/299/orig 2025-01-24T02:40:37.7398720Z * [new branch] gh/soulitzer/300/base -> origin/gh/soulitzer/300/base 2025-01-24T02:40:37.7402450Z * [new branch] gh/soulitzer/300/head -> origin/gh/soulitzer/300/head 2025-01-24T02:40:37.7410810Z * [new branch] gh/soulitzer/300/orig -> origin/gh/soulitzer/300/orig 2025-01-24T02:40:37.7416880Z * [new branch] gh/soulitzer/301/base -> origin/gh/soulitzer/301/base 2025-01-24T02:40:37.7425380Z * [new branch] gh/soulitzer/301/head -> origin/gh/soulitzer/301/head 2025-01-24T02:40:37.7432710Z * [new branch] gh/soulitzer/301/orig -> origin/gh/soulitzer/301/orig 2025-01-24T02:40:37.7435760Z * [new branch] gh/soulitzer/313/base -> origin/gh/soulitzer/313/base 2025-01-24T02:40:37.7442570Z * [new branch] gh/soulitzer/313/head -> origin/gh/soulitzer/313/head 2025-01-24T02:40:37.7451940Z * [new branch] gh/soulitzer/313/orig -> origin/gh/soulitzer/313/orig 2025-01-24T02:40:37.7459510Z * [new branch] gh/soulitzer/319/base -> origin/gh/soulitzer/319/base 2025-01-24T02:40:37.7462670Z * [new branch] gh/soulitzer/319/head -> origin/gh/soulitzer/319/head 2025-01-24T02:40:37.7468910Z * [new branch] gh/soulitzer/319/orig -> origin/gh/soulitzer/319/orig 2025-01-24T02:40:37.7482820Z * [new branch] gh/soulitzer/320/base -> origin/gh/soulitzer/320/base 2025-01-24T02:40:37.7485460Z * [new branch] gh/soulitzer/320/head -> origin/gh/soulitzer/320/head 2025-01-24T02:40:37.7492980Z * [new branch] gh/soulitzer/320/orig -> origin/gh/soulitzer/320/orig 2025-01-24T02:40:37.7501690Z * [new branch] gh/soulitzer/326/base -> origin/gh/soulitzer/326/base 2025-01-24T02:40:37.7509400Z * [new branch] gh/soulitzer/326/head -> origin/gh/soulitzer/326/head 2025-01-24T02:40:37.7517070Z * [new branch] gh/soulitzer/326/orig -> origin/gh/soulitzer/326/orig 2025-01-24T02:40:37.7525000Z * [new branch] gh/soulitzer/328/base -> origin/gh/soulitzer/328/base 2025-01-24T02:40:37.7526860Z * [new branch] gh/soulitzer/328/head -> origin/gh/soulitzer/328/head 2025-01-24T02:40:37.7534840Z * [new branch] gh/soulitzer/328/orig -> origin/gh/soulitzer/328/orig 2025-01-24T02:40:37.7542490Z * [new branch] gh/soulitzer/329/base -> origin/gh/soulitzer/329/base 2025-01-24T02:40:37.7548890Z * [new branch] gh/soulitzer/329/head -> origin/gh/soulitzer/329/head 2025-01-24T02:40:37.7556470Z * [new branch] gh/soulitzer/329/orig -> origin/gh/soulitzer/329/orig 2025-01-24T02:40:37.7559060Z * [new branch] gh/soulitzer/331/base -> origin/gh/soulitzer/331/base 2025-01-24T02:40:37.7566130Z * [new branch] gh/soulitzer/331/head -> origin/gh/soulitzer/331/head 2025-01-24T02:40:37.7574660Z * [new branch] gh/soulitzer/331/orig -> origin/gh/soulitzer/331/orig 2025-01-24T02:40:37.7581700Z * [new branch] gh/soulitzer/332/base -> origin/gh/soulitzer/332/base 2025-01-24T02:40:37.7588630Z * [new branch] gh/soulitzer/332/head -> origin/gh/soulitzer/332/head 2025-01-24T02:40:37.7597170Z * [new branch] gh/soulitzer/332/orig -> origin/gh/soulitzer/332/orig 2025-01-24T02:40:37.7599620Z * [new branch] gh/soulitzer/335/base -> origin/gh/soulitzer/335/base 2025-01-24T02:40:37.7606550Z * [new branch] gh/soulitzer/335/head -> origin/gh/soulitzer/335/head 2025-01-24T02:40:37.7611040Z * [new branch] gh/soulitzer/335/orig -> origin/gh/soulitzer/335/orig 2025-01-24T02:40:37.7616090Z * [new branch] gh/soulitzer/336/base -> origin/gh/soulitzer/336/base 2025-01-24T02:40:37.7625240Z * [new branch] gh/soulitzer/336/head -> origin/gh/soulitzer/336/head 2025-01-24T02:40:37.7632370Z * [new branch] gh/soulitzer/336/orig -> origin/gh/soulitzer/336/orig 2025-01-24T02:40:37.7639110Z * [new branch] gh/soulitzer/340/base -> origin/gh/soulitzer/340/base 2025-01-24T02:40:37.7647940Z * [new branch] gh/soulitzer/340/head -> origin/gh/soulitzer/340/head 2025-01-24T02:40:37.7650150Z * [new branch] gh/soulitzer/340/orig -> origin/gh/soulitzer/340/orig 2025-01-24T02:40:37.7656520Z * [new branch] gh/soulitzer/341/base -> origin/gh/soulitzer/341/base 2025-01-24T02:40:37.7664710Z * [new branch] gh/soulitzer/341/head -> origin/gh/soulitzer/341/head 2025-01-24T02:40:37.7671860Z * [new branch] gh/soulitzer/341/orig -> origin/gh/soulitzer/341/orig 2025-01-24T02:40:37.7679400Z * [new branch] gh/soulitzer/342/base -> origin/gh/soulitzer/342/base 2025-01-24T02:40:37.7687670Z * [new branch] gh/soulitzer/342/head -> origin/gh/soulitzer/342/head 2025-01-24T02:40:37.7689610Z * [new branch] gh/soulitzer/342/orig -> origin/gh/soulitzer/342/orig 2025-01-24T02:40:37.7696600Z * [new branch] gh/soulitzer/343/base -> origin/gh/soulitzer/343/base 2025-01-24T02:40:37.7705210Z * [new branch] gh/soulitzer/343/head -> origin/gh/soulitzer/343/head 2025-01-24T02:40:37.7712380Z * [new branch] gh/soulitzer/343/orig -> origin/gh/soulitzer/343/orig 2025-01-24T02:40:37.7719150Z * [new branch] gh/soulitzer/344/base -> origin/gh/soulitzer/344/base 2025-01-24T02:40:37.7727210Z * [new branch] gh/soulitzer/344/head -> origin/gh/soulitzer/344/head 2025-01-24T02:40:37.7729050Z * [new branch] gh/soulitzer/344/orig -> origin/gh/soulitzer/344/orig 2025-01-24T02:40:37.7736600Z * [new branch] gh/soulitzer/345/base -> origin/gh/soulitzer/345/base 2025-01-24T02:40:37.7744200Z * [new branch] gh/soulitzer/345/head -> origin/gh/soulitzer/345/head 2025-01-24T02:40:37.7751730Z * [new branch] gh/soulitzer/345/orig -> origin/gh/soulitzer/345/orig 2025-01-24T02:40:37.7760530Z * [new branch] gh/soulitzer/346/base -> origin/gh/soulitzer/346/base 2025-01-24T02:40:37.7768550Z * [new branch] gh/soulitzer/346/head -> origin/gh/soulitzer/346/head 2025-01-24T02:40:37.7770360Z * [new branch] gh/soulitzer/346/orig -> origin/gh/soulitzer/346/orig 2025-01-24T02:40:37.7777960Z * [new branch] gh/suo/619/base -> origin/gh/suo/619/base 2025-01-24T02:40:37.7785850Z * [new branch] gh/swolchok/685/base -> origin/gh/swolchok/685/base 2025-01-24T02:40:37.7793110Z * [new branch] gh/swolchok/685/head -> origin/gh/swolchok/685/head 2025-01-24T02:40:37.7801370Z * [new branch] gh/swolchok/685/orig -> origin/gh/swolchok/685/orig 2025-01-24T02:40:37.7803690Z * [new branch] gh/swolchok/695/base -> origin/gh/swolchok/695/base 2025-01-24T02:40:37.7818580Z * [new branch] gh/swolchok/695/head -> origin/gh/swolchok/695/head 2025-01-24T02:40:37.7820530Z * [new branch] gh/swolchok/695/orig -> origin/gh/swolchok/695/orig 2025-01-24T02:40:37.7826560Z * [new branch] gh/swolchok/697/base -> origin/gh/swolchok/697/base 2025-01-24T02:40:37.7831580Z * [new branch] gh/swolchok/697/head -> origin/gh/swolchok/697/head 2025-01-24T02:40:37.7835170Z * [new branch] gh/swolchok/697/orig -> origin/gh/swolchok/697/orig 2025-01-24T02:40:37.7843300Z * [new branch] gh/swolchok/704/base -> origin/gh/swolchok/704/base 2025-01-24T02:40:37.7850770Z * [new branch] gh/swolchok/704/head -> origin/gh/swolchok/704/head 2025-01-24T02:40:37.7857540Z * [new branch] gh/swolchok/704/orig -> origin/gh/swolchok/704/orig 2025-01-24T02:40:37.7870130Z * [new branch] gh/swolchok/710/base -> origin/gh/swolchok/710/base 2025-01-24T02:40:37.7873510Z * [new branch] gh/swolchok/710/head -> origin/gh/swolchok/710/head 2025-01-24T02:40:37.7875890Z * [new branch] gh/swolchok/710/orig -> origin/gh/swolchok/710/orig 2025-01-24T02:40:37.7882780Z * [new branch] gh/swolchok/711/base -> origin/gh/swolchok/711/base 2025-01-24T02:40:37.7891320Z * [new branch] gh/swolchok/711/head -> origin/gh/swolchok/711/head 2025-01-24T02:40:37.7898430Z * [new branch] gh/swolchok/711/orig -> origin/gh/swolchok/711/orig 2025-01-24T02:40:37.7905810Z * [new branch] gh/swolchok/714/base -> origin/gh/swolchok/714/base 2025-01-24T02:40:37.7912960Z * [new branch] gh/swolchok/714/head -> origin/gh/swolchok/714/head 2025-01-24T02:40:37.7915510Z * [new branch] gh/swolchok/714/orig -> origin/gh/swolchok/714/orig 2025-01-24T02:40:37.7924010Z * [new branch] gh/swolchok/715/base -> origin/gh/swolchok/715/base 2025-01-24T02:40:37.7931950Z * [new branch] gh/swolchok/715/head -> origin/gh/swolchok/715/head 2025-01-24T02:40:37.7939720Z * [new branch] gh/swolchok/715/orig -> origin/gh/swolchok/715/orig 2025-01-24T02:40:37.7947240Z * [new branch] gh/swolchok/716/base -> origin/gh/swolchok/716/base 2025-01-24T02:40:37.7955050Z * [new branch] gh/swolchok/716/head -> origin/gh/swolchok/716/head 2025-01-24T02:40:37.7956940Z * [new branch] gh/swolchok/716/orig -> origin/gh/swolchok/716/orig 2025-01-24T02:40:37.7965090Z * [new branch] gh/swolchok/717/base -> origin/gh/swolchok/717/base 2025-01-24T02:40:37.7972270Z * [new branch] gh/swolchok/717/head -> origin/gh/swolchok/717/head 2025-01-24T02:40:37.7979600Z * [new branch] gh/swolchok/717/orig -> origin/gh/swolchok/717/orig 2025-01-24T02:40:37.7987380Z * [new branch] gh/swolchok/718/base -> origin/gh/swolchok/718/base 2025-01-24T02:40:37.7989260Z * [new branch] gh/swolchok/718/head -> origin/gh/swolchok/718/head 2025-01-24T02:40:37.7996430Z * [new branch] gh/swolchok/718/orig -> origin/gh/swolchok/718/orig 2025-01-24T02:40:37.8004410Z * [new branch] gh/swolchok/719/base -> origin/gh/swolchok/719/base 2025-01-24T02:40:37.8011580Z * [new branch] gh/swolchok/719/orig -> origin/gh/swolchok/719/orig 2025-01-24T02:40:37.8018190Z * [new branch] gh/swolchok/720/base -> origin/gh/swolchok/720/base 2025-01-24T02:40:37.8026440Z * [new branch] gh/swolchok/720/head -> origin/gh/swolchok/720/head 2025-01-24T02:40:37.8028870Z * [new branch] gh/swolchok/720/orig -> origin/gh/swolchok/720/orig 2025-01-24T02:40:37.8036580Z * [new branch] gh/swolchok/721/base -> origin/gh/swolchok/721/base 2025-01-24T02:40:37.8044920Z * [new branch] gh/swolchok/721/head -> origin/gh/swolchok/721/head 2025-01-24T02:40:37.8052810Z * [new branch] gh/swolchok/721/orig -> origin/gh/swolchok/721/orig 2025-01-24T02:40:37.8060020Z * [new branch] gh/syed-ahmed/1/base -> origin/gh/syed-ahmed/1/base 2025-01-24T02:40:37.8068390Z * [new branch] gh/syed-ahmed/1/head -> origin/gh/syed-ahmed/1/head 2025-01-24T02:40:37.8070210Z * [new branch] gh/syed-ahmed/1/orig -> origin/gh/syed-ahmed/1/orig 2025-01-24T02:40:37.8078230Z * [new branch] gh/tianyu-l/2/base -> origin/gh/tianyu-l/2/base 2025-01-24T02:40:37.8085520Z * [new branch] gh/tianyu-l/2/head -> origin/gh/tianyu-l/2/head 2025-01-24T02:40:37.8091550Z * [new branch] gh/tianyu-l/2/orig -> origin/gh/tianyu-l/2/orig 2025-01-24T02:40:37.8098700Z * [new branch] gh/tianyu-l/5/base -> origin/gh/tianyu-l/5/base 2025-01-24T02:40:37.8106620Z * [new branch] gh/tianyu-l/5/head -> origin/gh/tianyu-l/5/head 2025-01-24T02:40:37.8109960Z * [new branch] gh/tianyu-l/5/orig -> origin/gh/tianyu-l/5/orig 2025-01-24T02:40:37.8115540Z * [new branch] gh/tianyu-l/6/base -> origin/gh/tianyu-l/6/base 2025-01-24T02:40:37.8125310Z * [new branch] gh/tianyu-l/6/head -> origin/gh/tianyu-l/6/head 2025-01-24T02:40:37.8131830Z * [new branch] gh/tianyu-l/6/orig -> origin/gh/tianyu-l/6/orig 2025-01-24T02:40:37.8138000Z * [new branch] gh/titaiwangms/35/base -> origin/gh/titaiwangms/35/base 2025-01-24T02:40:37.8143360Z * [new branch] gh/titaiwangms/35/head -> origin/gh/titaiwangms/35/head 2025-01-24T02:40:37.8151580Z * [new branch] gh/titaiwangms/35/orig -> origin/gh/titaiwangms/35/orig 2025-01-24T02:40:37.8157650Z * [new branch] gh/tugsbayasgalan/142/base -> origin/gh/tugsbayasgalan/142/base 2025-01-24T02:40:37.8165250Z * [new branch] gh/tugsbayasgalan/142/head -> origin/gh/tugsbayasgalan/142/head 2025-01-24T02:40:37.8169530Z * [new branch] gh/tugsbayasgalan/142/orig -> origin/gh/tugsbayasgalan/142/orig 2025-01-24T02:40:37.8178350Z * [new branch] gh/tugsbayasgalan/155/base -> origin/gh/tugsbayasgalan/155/base 2025-01-24T02:40:37.8182140Z * [new branch] gh/tugsbayasgalan/155/head -> origin/gh/tugsbayasgalan/155/head 2025-01-24T02:40:37.8189870Z * [new branch] gh/tugsbayasgalan/155/orig -> origin/gh/tugsbayasgalan/155/orig 2025-01-24T02:40:37.8196310Z * [new branch] gh/tugsbayasgalan/162/base -> origin/gh/tugsbayasgalan/162/base 2025-01-24T02:40:37.8204570Z * [new branch] gh/tugsbayasgalan/162/head -> origin/gh/tugsbayasgalan/162/head 2025-01-24T02:40:37.8210720Z * [new branch] gh/tugsbayasgalan/162/orig -> origin/gh/tugsbayasgalan/162/orig 2025-01-24T02:40:37.8217370Z * [new branch] gh/tugsbayasgalan/244/base -> origin/gh/tugsbayasgalan/244/base 2025-01-24T02:40:37.8225910Z * [new branch] gh/tugsbayasgalan/244/head -> origin/gh/tugsbayasgalan/244/head 2025-01-24T02:40:37.8233590Z * [new branch] gh/tugsbayasgalan/244/orig -> origin/gh/tugsbayasgalan/244/orig 2025-01-24T02:40:37.8236060Z * [new branch] gh/tugsbayasgalan/246/base -> origin/gh/tugsbayasgalan/246/base 2025-01-24T02:40:37.8243950Z * [new branch] gh/tugsbayasgalan/246/head -> origin/gh/tugsbayasgalan/246/head 2025-01-24T02:40:37.8251300Z * [new branch] gh/tugsbayasgalan/246/orig -> origin/gh/tugsbayasgalan/246/orig 2025-01-24T02:40:37.8258810Z * [new branch] gh/tugsbayasgalan/247/base -> origin/gh/tugsbayasgalan/247/base 2025-01-24T02:40:37.8266380Z * [new branch] gh/tugsbayasgalan/247/head -> origin/gh/tugsbayasgalan/247/head 2025-01-24T02:40:37.8274370Z * [new branch] gh/tugsbayasgalan/247/orig -> origin/gh/tugsbayasgalan/247/orig 2025-01-24T02:40:37.8276910Z * [new branch] gh/tugsbayasgalan/250/base -> origin/gh/tugsbayasgalan/250/base 2025-01-24T02:40:37.8284000Z * [new branch] gh/tugsbayasgalan/250/head -> origin/gh/tugsbayasgalan/250/head 2025-01-24T02:40:37.8291610Z * [new branch] gh/tugsbayasgalan/250/orig -> origin/gh/tugsbayasgalan/250/orig 2025-01-24T02:40:37.8298340Z * [new branch] gh/tugsbayasgalan/257/base -> origin/gh/tugsbayasgalan/257/base 2025-01-24T02:40:37.8306820Z * [new branch] gh/tugsbayasgalan/257/head -> origin/gh/tugsbayasgalan/257/head 2025-01-24T02:40:37.8315100Z * [new branch] gh/tugsbayasgalan/257/orig -> origin/gh/tugsbayasgalan/257/orig 2025-01-24T02:40:37.8323300Z * [new branch] gh/tugsbayasgalan/259/base -> origin/gh/tugsbayasgalan/259/base 2025-01-24T02:40:37.8330890Z * [new branch] gh/tugsbayasgalan/259/head -> origin/gh/tugsbayasgalan/259/head 2025-01-24T02:40:37.8337260Z * [new branch] gh/tugsbayasgalan/259/orig -> origin/gh/tugsbayasgalan/259/orig 2025-01-24T02:40:37.8343850Z * [new branch] gh/tugsbayasgalan/268/base -> origin/gh/tugsbayasgalan/268/base 2025-01-24T02:40:37.8347520Z * [new branch] gh/tugsbayasgalan/268/head -> origin/gh/tugsbayasgalan/268/head 2025-01-24T02:40:37.8353590Z * [new branch] gh/tugsbayasgalan/268/orig -> origin/gh/tugsbayasgalan/268/orig 2025-01-24T02:40:37.8360750Z * [new branch] gh/tugsbayasgalan/269/base -> origin/gh/tugsbayasgalan/269/base 2025-01-24T02:40:37.8367970Z * [new branch] gh/tugsbayasgalan/269/head -> origin/gh/tugsbayasgalan/269/head 2025-01-24T02:40:37.8375210Z * [new branch] gh/tugsbayasgalan/269/orig -> origin/gh/tugsbayasgalan/269/orig 2025-01-24T02:40:37.8382540Z * [new branch] gh/tugsbayasgalan/277/base -> origin/gh/tugsbayasgalan/277/base 2025-01-24T02:40:37.8385010Z * [new branch] gh/tugsbayasgalan/277/head -> origin/gh/tugsbayasgalan/277/head 2025-01-24T02:40:37.8391750Z * [new branch] gh/tugsbayasgalan/277/orig -> origin/gh/tugsbayasgalan/277/orig 2025-01-24T02:40:37.8400340Z * [new branch] gh/tugsbayasgalan/281/base -> origin/gh/tugsbayasgalan/281/base 2025-01-24T02:40:37.8407890Z * [new branch] gh/tugsbayasgalan/281/head -> origin/gh/tugsbayasgalan/281/head 2025-01-24T02:40:37.8415480Z * [new branch] gh/tugsbayasgalan/281/orig -> origin/gh/tugsbayasgalan/281/orig 2025-01-24T02:40:37.8422940Z * [new branch] gh/tugsbayasgalan/282/base -> origin/gh/tugsbayasgalan/282/base 2025-01-24T02:40:37.8430180Z * [new branch] gh/tugsbayasgalan/282/head -> origin/gh/tugsbayasgalan/282/head 2025-01-24T02:40:37.8432130Z * [new branch] gh/tugsbayasgalan/282/orig -> origin/gh/tugsbayasgalan/282/orig 2025-01-24T02:40:37.8439300Z * [new branch] gh/tugsbayasgalan/283/base -> origin/gh/tugsbayasgalan/283/base 2025-01-24T02:40:37.8446660Z * [new branch] gh/tugsbayasgalan/283/head -> origin/gh/tugsbayasgalan/283/head 2025-01-24T02:40:37.8454630Z * [new branch] gh/tugsbayasgalan/283/orig -> origin/gh/tugsbayasgalan/283/orig 2025-01-24T02:40:37.8461300Z * [new branch] gh/tugsbayasgalan/284/base -> origin/gh/tugsbayasgalan/284/base 2025-01-24T02:40:37.8469050Z * [new branch] gh/tugsbayasgalan/284/head -> origin/gh/tugsbayasgalan/284/head 2025-01-24T02:40:37.8476140Z * [new branch] gh/tugsbayasgalan/284/orig -> origin/gh/tugsbayasgalan/284/orig 2025-01-24T02:40:37.8485110Z * [new branch] gh/tugsbayasgalan/285/base -> origin/gh/tugsbayasgalan/285/base 2025-01-24T02:40:37.8492590Z * [new branch] gh/tugsbayasgalan/285/head -> origin/gh/tugsbayasgalan/285/head 2025-01-24T02:40:37.8500520Z * [new branch] gh/tugsbayasgalan/285/orig -> origin/gh/tugsbayasgalan/285/orig 2025-01-24T02:40:37.8502990Z * [new branch] gh/tugsbayasgalan/286/base -> origin/gh/tugsbayasgalan/286/base 2025-01-24T02:40:37.8509290Z * [new branch] gh/tugsbayasgalan/286/head -> origin/gh/tugsbayasgalan/286/head 2025-01-24T02:40:37.8518400Z * [new branch] gh/tugsbayasgalan/286/orig -> origin/gh/tugsbayasgalan/286/orig 2025-01-24T02:40:37.8525520Z * [new branch] gh/vfdev-5/13/base -> origin/gh/vfdev-5/13/base 2025-01-24T02:40:37.8532220Z * [new branch] gh/vfdev-5/13/orig -> origin/gh/vfdev-5/13/orig 2025-01-24T02:40:37.8540040Z * [new branch] gh/vfdev-5/14/base -> origin/gh/vfdev-5/14/base 2025-01-24T02:40:37.8543130Z * [new branch] gh/vfdev-5/14/orig -> origin/gh/vfdev-5/14/orig 2025-01-24T02:40:37.8548830Z * [new branch] gh/vmoens/10/base -> origin/gh/vmoens/10/base 2025-01-24T02:40:37.8556790Z * [new branch] gh/vmoens/10/head -> origin/gh/vmoens/10/head 2025-01-24T02:40:37.8564760Z * [new branch] gh/vmoens/10/orig -> origin/gh/vmoens/10/orig 2025-01-24T02:40:37.8572490Z * [new branch] gh/vmoens/11/base -> origin/gh/vmoens/11/base 2025-01-24T02:40:37.8580230Z * [new branch] gh/vmoens/11/head -> origin/gh/vmoens/11/head 2025-01-24T02:40:37.8587470Z * [new branch] gh/vmoens/11/orig -> origin/gh/vmoens/11/orig 2025-01-24T02:40:37.8590090Z * [new branch] gh/vmoens/12/base -> origin/gh/vmoens/12/base 2025-01-24T02:40:37.8598220Z * [new branch] gh/vmoens/12/head -> origin/gh/vmoens/12/head 2025-01-24T02:40:37.8603550Z * [new branch] gh/vmoens/12/orig -> origin/gh/vmoens/12/orig 2025-01-24T02:40:37.8609940Z * [new branch] gh/vmoens/14/base -> origin/gh/vmoens/14/base 2025-01-24T02:40:37.8613870Z * [new branch] gh/vmoens/14/head -> origin/gh/vmoens/14/head 2025-01-24T02:40:37.8619290Z * [new branch] gh/vmoens/14/orig -> origin/gh/vmoens/14/orig 2025-01-24T02:40:37.8626980Z * [new branch] gh/vmoens/2/base -> origin/gh/vmoens/2/base 2025-01-24T02:40:37.8631290Z * [new branch] gh/vmoens/2/head -> origin/gh/vmoens/2/head 2025-01-24T02:40:37.8640090Z * [new branch] gh/vmoens/2/orig -> origin/gh/vmoens/2/orig 2025-01-24T02:40:37.8646400Z * [new branch] gh/voznesenskym/187/base -> origin/gh/voznesenskym/187/base 2025-01-24T02:40:37.8653650Z * [new branch] gh/voznesenskym/187/head -> origin/gh/voznesenskym/187/head 2025-01-24T02:40:37.8661140Z * [new branch] gh/voznesenskym/187/orig -> origin/gh/voznesenskym/187/orig 2025-01-24T02:40:37.8667730Z * [new branch] gh/voznesenskym/193/base -> origin/gh/voznesenskym/193/base 2025-01-24T02:40:37.8675460Z * [new branch] gh/voznesenskym/193/head -> origin/gh/voznesenskym/193/head 2025-01-24T02:40:37.8682910Z * [new branch] gh/voznesenskym/198/base -> origin/gh/voznesenskym/198/base 2025-01-24T02:40:37.8684880Z * [new branch] gh/voznesenskym/198/head -> origin/gh/voznesenskym/198/head 2025-01-24T02:40:37.8692800Z * [new branch] gh/voznesenskym/198/orig -> origin/gh/voznesenskym/198/orig 2025-01-24T02:40:37.8701400Z * [new branch] gh/voznesenskym/211/base -> origin/gh/voznesenskym/211/base 2025-01-24T02:40:37.8708720Z * [new branch] gh/voznesenskym/211/head -> origin/gh/voznesenskym/211/head 2025-01-24T02:40:37.8716020Z * [new branch] gh/voznesenskym/211/orig -> origin/gh/voznesenskym/211/orig 2025-01-24T02:40:37.8724800Z * [new branch] gh/voznesenskym/231/base -> origin/gh/voznesenskym/231/base 2025-01-24T02:40:37.8726870Z * [new branch] gh/voznesenskym/231/head -> origin/gh/voznesenskym/231/head 2025-01-24T02:40:37.8734390Z * [new branch] gh/voznesenskym/231/orig -> origin/gh/voznesenskym/231/orig 2025-01-24T02:40:37.8741070Z * [new branch] gh/voznesenskym/254/base -> origin/gh/voznesenskym/254/base 2025-01-24T02:40:37.8748970Z * [new branch] gh/voznesenskym/254/head -> origin/gh/voznesenskym/254/head 2025-01-24T02:40:37.8757100Z * [new branch] gh/voznesenskym/254/orig -> origin/gh/voznesenskym/254/orig 2025-01-24T02:40:37.8764640Z * [new branch] gh/wanchaol/344/base -> origin/gh/wanchaol/344/base 2025-01-24T02:40:37.8772780Z * [new branch] gh/wanchaol/344/head -> origin/gh/wanchaol/344/head 2025-01-24T02:40:37.8781090Z * [new branch] gh/wanchaol/344/orig -> origin/gh/wanchaol/344/orig 2025-01-24T02:40:37.8783640Z * [new branch] gh/wanchaol/360/base -> origin/gh/wanchaol/360/base 2025-01-24T02:40:37.8790790Z * [new branch] gh/wanchaol/360/head -> origin/gh/wanchaol/360/head 2025-01-24T02:40:37.8799180Z * [new branch] gh/wanchaol/360/orig -> origin/gh/wanchaol/360/orig 2025-01-24T02:40:37.8803660Z * [new branch] gh/wanchaol/361/base -> origin/gh/wanchaol/361/base 2025-01-24T02:40:37.8808530Z * [new branch] gh/wanchaol/361/head -> origin/gh/wanchaol/361/head 2025-01-24T02:40:37.8812470Z * [new branch] gh/wanchaol/361/orig -> origin/gh/wanchaol/361/orig 2025-01-24T02:40:37.8821170Z * [new branch] gh/wanchaol/362/base -> origin/gh/wanchaol/362/base 2025-01-24T02:40:37.8825280Z * [new branch] gh/wanchaol/362/head -> origin/gh/wanchaol/362/head 2025-01-24T02:40:37.8833460Z * [new branch] gh/wanchaol/362/orig -> origin/gh/wanchaol/362/orig 2025-01-24T02:40:37.8840060Z * [new branch] gh/wanchaol/363/base -> origin/gh/wanchaol/363/base 2025-01-24T02:40:37.8847710Z * [new branch] gh/wanchaol/363/head -> origin/gh/wanchaol/363/head 2025-01-24T02:40:37.8854960Z * [new branch] gh/wanchaol/363/orig -> origin/gh/wanchaol/363/orig 2025-01-24T02:40:37.8862460Z * [new branch] gh/wanchaol/364/base -> origin/gh/wanchaol/364/base 2025-01-24T02:40:37.8866120Z * [new branch] gh/wanchaol/364/orig -> origin/gh/wanchaol/364/orig 2025-01-24T02:40:37.8872310Z * [new branch] gh/wanchaol/365/base -> origin/gh/wanchaol/365/base 2025-01-24T02:40:37.8880100Z * [new branch] gh/wanchaol/365/head -> origin/gh/wanchaol/365/head 2025-01-24T02:40:37.8887710Z * [new branch] gh/wanchaol/365/orig -> origin/gh/wanchaol/365/orig 2025-01-24T02:40:37.8895690Z * [new branch] gh/wanchaol/366/base -> origin/gh/wanchaol/366/base 2025-01-24T02:40:37.8903380Z * [new branch] gh/wanchaol/366/head -> origin/gh/wanchaol/366/head 2025-01-24T02:40:37.8911020Z * [new branch] gh/wanchaol/366/orig -> origin/gh/wanchaol/366/orig 2025-01-24T02:40:37.8913690Z * [new branch] gh/wanchaol/367/base -> origin/gh/wanchaol/367/base 2025-01-24T02:40:37.8920740Z * [new branch] gh/wanchaol/367/head -> origin/gh/wanchaol/367/head 2025-01-24T02:40:37.8928250Z * [new branch] gh/wanchaol/367/orig -> origin/gh/wanchaol/367/orig 2025-01-24T02:40:37.8943400Z * [new branch] gh/wanchaol/368/base -> origin/gh/wanchaol/368/base 2025-01-24T02:40:37.8945620Z * [new branch] gh/wanchaol/368/head -> origin/gh/wanchaol/368/head 2025-01-24T02:40:37.8952240Z * [new branch] gh/wanchaol/368/orig -> origin/gh/wanchaol/368/orig 2025-01-24T02:40:37.8960290Z * [new branch] gh/wconstab/204/base -> origin/gh/wconstab/204/base 2025-01-24T02:40:37.8967520Z * [new branch] gh/wconstab/204/orig -> origin/gh/wconstab/204/orig 2025-01-24T02:40:37.8975190Z * [new branch] gh/wconstab/371/base -> origin/gh/wconstab/371/base 2025-01-24T02:40:37.8984420Z * [new branch] gh/wconstab/371/head -> origin/gh/wconstab/371/head 2025-01-24T02:40:37.8992930Z * [new branch] gh/wconstab/371/orig -> origin/gh/wconstab/371/orig 2025-01-24T02:40:37.8995460Z * [new branch] gh/wconstab/372/base -> origin/gh/wconstab/372/base 2025-01-24T02:40:37.9001270Z * [new branch] gh/wconstab/372/head -> origin/gh/wconstab/372/head 2025-01-24T02:40:37.9003140Z * [new branch] gh/wconstab/372/orig -> origin/gh/wconstab/372/orig 2025-01-24T02:40:37.9011600Z * [new branch] gh/wconstab/373/base -> origin/gh/wconstab/373/base 2025-01-24T02:40:37.9019170Z * [new branch] gh/wconstab/373/head -> origin/gh/wconstab/373/head 2025-01-24T02:40:37.9025620Z * [new branch] gh/wconstab/373/orig -> origin/gh/wconstab/373/orig 2025-01-24T02:40:37.9033640Z * [new branch] gh/wconstab/374/base -> origin/gh/wconstab/374/base 2025-01-24T02:40:37.9035580Z * [new branch] gh/wconstab/374/head -> origin/gh/wconstab/374/head 2025-01-24T02:40:37.9042890Z * [new branch] gh/wconstab/374/orig -> origin/gh/wconstab/374/orig 2025-01-24T02:40:37.9051700Z * [new branch] gh/wconstab/375/base -> origin/gh/wconstab/375/base 2025-01-24T02:40:37.9059290Z * [new branch] gh/wconstab/375/head -> origin/gh/wconstab/375/head 2025-01-24T02:40:37.9066350Z * [new branch] gh/wconstab/375/orig -> origin/gh/wconstab/375/orig 2025-01-24T02:40:37.9075070Z * [new branch] gh/wconstab/376/base -> origin/gh/wconstab/376/base 2025-01-24T02:40:37.9077300Z * [new branch] gh/wconstab/376/head -> origin/gh/wconstab/376/head 2025-01-24T02:40:37.9084430Z * [new branch] gh/wconstab/376/orig -> origin/gh/wconstab/376/orig 2025-01-24T02:40:37.9096690Z * [new branch] gh/wconstab/377/base -> origin/gh/wconstab/377/base 2025-01-24T02:40:37.9099870Z * [new branch] gh/wconstab/377/head -> origin/gh/wconstab/377/head 2025-01-24T02:40:37.9107300Z * [new branch] gh/wconstab/377/orig -> origin/gh/wconstab/377/orig 2025-01-24T02:40:37.9109800Z * [new branch] gh/wconstab/378/base -> origin/gh/wconstab/378/base 2025-01-24T02:40:37.9116210Z * [new branch] gh/wconstab/378/head -> origin/gh/wconstab/378/head 2025-01-24T02:40:37.9124120Z * [new branch] gh/wconstab/378/orig -> origin/gh/wconstab/378/orig 2025-01-24T02:40:37.9132490Z * [new branch] gh/wconstab/379/base -> origin/gh/wconstab/379/base 2025-01-24T02:40:37.9139590Z * [new branch] gh/wconstab/379/head -> origin/gh/wconstab/379/head 2025-01-24T02:40:37.9148580Z * [new branch] gh/wconstab/379/orig -> origin/gh/wconstab/379/orig 2025-01-24T02:40:37.9155390Z * [new branch] gh/wconstab/380/base -> origin/gh/wconstab/380/base 2025-01-24T02:40:37.9162900Z * [new branch] gh/wconstab/380/head -> origin/gh/wconstab/380/head 2025-01-24T02:40:37.9171040Z * [new branch] gh/wconstab/380/orig -> origin/gh/wconstab/380/orig 2025-01-24T02:40:37.9173590Z * [new branch] gh/wconstab/381/base -> origin/gh/wconstab/381/base 2025-01-24T02:40:37.9181350Z * [new branch] gh/wconstab/381/head -> origin/gh/wconstab/381/head 2025-01-24T02:40:37.9187510Z * [new branch] gh/wconstab/381/orig -> origin/gh/wconstab/381/orig 2025-01-24T02:40:37.9190010Z * [new branch] gh/wconstab/382/base -> origin/gh/wconstab/382/base 2025-01-24T02:40:37.9196730Z * [new branch] gh/wconstab/382/head -> origin/gh/wconstab/382/head 2025-01-24T02:40:37.9204560Z * [new branch] gh/wconstab/383/base -> origin/gh/wconstab/383/base 2025-01-24T02:40:37.9211610Z * [new branch] gh/wconstab/383/head -> origin/gh/wconstab/383/head 2025-01-24T02:40:37.9219960Z * [new branch] gh/wconstab/384/base -> origin/gh/wconstab/384/base 2025-01-24T02:40:37.9222790Z * [new branch] gh/wconstab/384/head -> origin/gh/wconstab/384/head 2025-01-24T02:40:37.9229800Z * [new branch] gh/wconstab/385/base -> origin/gh/wconstab/385/base 2025-01-24T02:40:37.9238530Z * [new branch] gh/wconstab/385/head -> origin/gh/wconstab/385/head 2025-01-24T02:40:37.9246210Z * [new branch] gh/wconstab/386/base -> origin/gh/wconstab/386/base 2025-01-24T02:40:37.9253070Z * [new branch] gh/wconstab/386/head -> origin/gh/wconstab/386/head 2025-01-24T02:40:37.9255720Z * [new branch] gh/wconstab/387/base -> origin/gh/wconstab/387/base 2025-01-24T02:40:37.9262370Z * [new branch] gh/wconstab/387/head -> origin/gh/wconstab/387/head 2025-01-24T02:40:37.9271150Z * [new branch] gh/wconstab/387/orig -> origin/gh/wconstab/387/orig 2025-01-24T02:40:37.9278050Z * [new branch] gh/wconstab/388/base -> origin/gh/wconstab/388/base 2025-01-24T02:40:37.9285730Z * [new branch] gh/wconstab/388/head -> origin/gh/wconstab/388/head 2025-01-24T02:40:37.9293920Z * [new branch] gh/wconstab/388/orig -> origin/gh/wconstab/388/orig 2025-01-24T02:40:37.9301560Z * [new branch] gh/wconstab/389/base -> origin/gh/wconstab/389/base 2025-01-24T02:40:37.9304100Z * [new branch] gh/wconstab/389/head -> origin/gh/wconstab/389/head 2025-01-24T02:40:37.9316520Z * [new branch] gh/wconstab/389/orig -> origin/gh/wconstab/389/orig 2025-01-24T02:40:37.9319150Z * [new branch] gh/wconstab/390/base -> origin/gh/wconstab/390/base 2025-01-24T02:40:37.9326500Z * [new branch] gh/wconstab/390/head -> origin/gh/wconstab/390/head 2025-01-24T02:40:37.9335010Z * [new branch] gh/wconstab/390/orig -> origin/gh/wconstab/390/orig 2025-01-24T02:40:37.9343590Z * [new branch] gh/wconstab/391/base -> origin/gh/wconstab/391/base 2025-01-24T02:40:37.9350360Z * [new branch] gh/wconstab/391/head -> origin/gh/wconstab/391/head 2025-01-24T02:40:37.9358380Z * [new branch] gh/wconstab/391/orig -> origin/gh/wconstab/391/orig 2025-01-24T02:40:37.9361620Z * [new branch] gh/weifengpy/20/base -> origin/gh/weifengpy/20/base 2025-01-24T02:40:37.9368450Z * [new branch] gh/weifengpy/20/head -> origin/gh/weifengpy/20/head 2025-01-24T02:40:37.9375610Z * [new branch] gh/weifengpy/20/orig -> origin/gh/weifengpy/20/orig 2025-01-24T02:40:37.9379740Z * [new branch] gh/williamwen42/167/base -> origin/gh/williamwen42/167/base 2025-01-24T02:40:37.9391580Z * [new branch] gh/williamwen42/167/head -> origin/gh/williamwen42/167/head 2025-01-24T02:40:37.9398090Z * [new branch] gh/williamwen42/167/orig -> origin/gh/williamwen42/167/orig 2025-01-24T02:40:37.9405100Z * [new branch] gh/williamwen42/195/base -> origin/gh/williamwen42/195/base 2025-01-24T02:40:37.9412860Z * [new branch] gh/williamwen42/195/head -> origin/gh/williamwen42/195/head 2025-01-24T02:40:37.9415050Z * [new branch] gh/williamwen42/195/orig -> origin/gh/williamwen42/195/orig 2025-01-24T02:40:37.9424090Z * [new branch] gh/williamwen42/196/base -> origin/gh/williamwen42/196/base 2025-01-24T02:40:37.9432400Z * [new branch] gh/williamwen42/196/head -> origin/gh/williamwen42/196/head 2025-01-24T02:40:37.9438790Z * [new branch] gh/williamwen42/196/orig -> origin/gh/williamwen42/196/orig 2025-01-24T02:40:37.9446840Z * [new branch] gh/williamwen42/197/base -> origin/gh/williamwen42/197/base 2025-01-24T02:40:37.9454870Z * [new branch] gh/williamwen42/197/head -> origin/gh/williamwen42/197/head 2025-01-24T02:40:37.9456560Z * [new branch] gh/williamwen42/197/orig -> origin/gh/williamwen42/197/orig 2025-01-24T02:40:37.9463820Z * [new branch] gh/williamwen42/198/base -> origin/gh/williamwen42/198/base 2025-01-24T02:40:37.9472240Z * [new branch] gh/williamwen42/198/head -> origin/gh/williamwen42/198/head 2025-01-24T02:40:37.9487790Z * [new branch] gh/williamwen42/198/orig -> origin/gh/williamwen42/198/orig 2025-01-24T02:40:37.9495160Z * [new branch] gh/williamwen42/199/base -> origin/gh/williamwen42/199/base 2025-01-24T02:40:37.9503110Z * [new branch] gh/williamwen42/199/head -> origin/gh/williamwen42/199/head 2025-01-24T02:40:37.9510970Z * [new branch] gh/williamwen42/199/orig -> origin/gh/williamwen42/199/orig 2025-01-24T02:40:37.9514080Z * [new branch] gh/wz337/2/base -> origin/gh/wz337/2/base 2025-01-24T02:40:37.9519890Z * [new branch] gh/wz337/2/head -> origin/gh/wz337/2/head 2025-01-24T02:40:37.9527130Z * [new branch] gh/wz337/3/base -> origin/gh/wz337/3/base 2025-01-24T02:40:37.9534840Z * [new branch] gh/wz337/3/head -> origin/gh/wz337/3/head 2025-01-24T02:40:37.9544050Z * [new branch] gh/xmfan/106/base -> origin/gh/xmfan/106/base 2025-01-24T02:40:37.9551800Z * [new branch] gh/xmfan/106/head -> origin/gh/xmfan/106/head 2025-01-24T02:40:37.9553750Z * [new branch] gh/xmfan/106/orig -> origin/gh/xmfan/106/orig 2025-01-24T02:40:37.9561210Z * [new branch] gh/xmfan/108/base -> origin/gh/xmfan/108/base 2025-01-24T02:40:37.9568250Z * [new branch] gh/xmfan/108/head -> origin/gh/xmfan/108/head 2025-01-24T02:40:37.9577680Z * [new branch] gh/xmfan/108/orig -> origin/gh/xmfan/108/orig 2025-01-24T02:40:37.9580120Z * [new branch] gh/xmfan/138/base -> origin/gh/xmfan/138/base 2025-01-24T02:40:37.9584840Z * [new branch] gh/xmfan/138/head -> origin/gh/xmfan/138/head 2025-01-24T02:40:37.9591990Z * [new branch] gh/xmfan/138/orig -> origin/gh/xmfan/138/orig 2025-01-24T02:40:37.9597850Z * [new branch] gh/xmfan/140/base -> origin/gh/xmfan/140/base 2025-01-24T02:40:37.9604310Z * [new branch] gh/xmfan/140/head -> origin/gh/xmfan/140/head 2025-01-24T02:40:37.9610740Z * [new branch] gh/xmfan/140/orig -> origin/gh/xmfan/140/orig 2025-01-24T02:40:37.9618940Z * [new branch] gh/xmfan/150/base -> origin/gh/xmfan/150/base 2025-01-24T02:40:37.9626600Z * [new branch] gh/xmfan/150/head -> origin/gh/xmfan/150/head 2025-01-24T02:40:37.9634820Z * [new branch] gh/xmfan/150/orig -> origin/gh/xmfan/150/orig 2025-01-24T02:40:37.9637170Z * [new branch] gh/xmfan/151/base -> origin/gh/xmfan/151/base 2025-01-24T02:40:37.9649560Z * [new branch] gh/xmfan/151/head -> origin/gh/xmfan/151/head 2025-01-24T02:40:37.9652630Z * [new branch] gh/xmfan/151/orig -> origin/gh/xmfan/151/orig 2025-01-24T02:40:37.9660020Z * [new branch] gh/xmfan/152/base -> origin/gh/xmfan/152/base 2025-01-24T02:40:37.9667450Z * [new branch] gh/xmfan/152/head -> origin/gh/xmfan/152/head 2025-01-24T02:40:37.9674530Z * [new branch] gh/xmfan/152/orig -> origin/gh/xmfan/152/orig 2025-01-24T02:40:37.9682110Z * [new branch] gh/xmfan/153/base -> origin/gh/xmfan/153/base 2025-01-24T02:40:37.9690080Z * [new branch] gh/xmfan/153/head -> origin/gh/xmfan/153/head 2025-01-24T02:40:37.9691970Z * [new branch] gh/xmfan/153/orig -> origin/gh/xmfan/153/orig 2025-01-24T02:40:37.9700400Z * [new branch] gh/xmfan/154/base -> origin/gh/xmfan/154/base 2025-01-24T02:40:37.9708390Z * [new branch] gh/xmfan/154/head -> origin/gh/xmfan/154/head 2025-01-24T02:40:37.9716090Z * [new branch] gh/xmfan/154/orig -> origin/gh/xmfan/154/orig 2025-01-24T02:40:37.9723190Z * [new branch] gh/xmfan/155/base -> origin/gh/xmfan/155/base 2025-01-24T02:40:37.9730560Z * [new branch] gh/xmfan/155/head -> origin/gh/xmfan/155/head 2025-01-24T02:40:37.9732710Z * [new branch] gh/xmfan/155/orig -> origin/gh/xmfan/155/orig 2025-01-24T02:40:37.9739520Z * [new branch] gh/xmfan/156/base -> origin/gh/xmfan/156/base 2025-01-24T02:40:37.9747780Z * [new branch] gh/xmfan/156/head -> origin/gh/xmfan/156/head 2025-01-24T02:40:37.9755160Z * [new branch] gh/xmfan/156/orig -> origin/gh/xmfan/156/orig 2025-01-24T02:40:37.9762330Z * [new branch] gh/xmfan/157/base -> origin/gh/xmfan/157/base 2025-01-24T02:40:37.9766120Z * [new branch] gh/xmfan/157/head -> origin/gh/xmfan/157/head 2025-01-24T02:40:37.9768030Z * [new branch] gh/xmfan/157/orig -> origin/gh/xmfan/157/orig 2025-01-24T02:40:37.9776190Z * [new branch] gh/xmfan/158/base -> origin/gh/xmfan/158/base 2025-01-24T02:40:37.9785400Z * [new branch] gh/xmfan/158/head -> origin/gh/xmfan/158/head 2025-01-24T02:40:37.9793370Z * [new branch] gh/xmfan/158/orig -> origin/gh/xmfan/158/orig 2025-01-24T02:40:37.9801660Z * [new branch] gh/xmfan/159/base -> origin/gh/xmfan/159/base 2025-01-24T02:40:37.9810100Z * [new branch] gh/xmfan/159/head -> origin/gh/xmfan/159/head 2025-01-24T02:40:37.9819080Z * [new branch] gh/xmfan/159/orig -> origin/gh/xmfan/159/orig 2025-01-24T02:40:37.9826460Z * [new branch] gh/xmfan/160/base -> origin/gh/xmfan/160/base 2025-01-24T02:40:37.9834520Z * [new branch] gh/xmfan/160/head -> origin/gh/xmfan/160/head 2025-01-24T02:40:37.9836490Z * [new branch] gh/xmfan/160/orig -> origin/gh/xmfan/160/orig 2025-01-24T02:40:37.9844180Z * [new branch] gh/xmfan/161/base -> origin/gh/xmfan/161/base 2025-01-24T02:40:37.9851560Z * [new branch] gh/xmfan/161/head -> origin/gh/xmfan/161/head 2025-01-24T02:40:37.9859550Z * [new branch] gh/xmfan/161/orig -> origin/gh/xmfan/161/orig 2025-01-24T02:40:37.9867240Z * [new branch] gh/xmfan/162/base -> origin/gh/xmfan/162/base 2025-01-24T02:40:37.9875790Z * [new branch] gh/xmfan/162/head -> origin/gh/xmfan/162/head 2025-01-24T02:40:37.9877710Z * [new branch] gh/xmfan/162/orig -> origin/gh/xmfan/162/orig 2025-01-24T02:40:37.9884590Z * [new branch] gh/xmfan/163/base -> origin/gh/xmfan/163/base 2025-01-24T02:40:37.9892240Z * [new branch] gh/xmfan/163/head -> origin/gh/xmfan/163/head 2025-01-24T02:40:37.9899350Z * [new branch] gh/xmfan/163/orig -> origin/gh/xmfan/163/orig 2025-01-24T02:40:37.9907390Z * [new branch] gh/xmfan/164/base -> origin/gh/xmfan/164/base 2025-01-24T02:40:37.9910410Z * [new branch] gh/xmfan/164/head -> origin/gh/xmfan/164/head 2025-01-24T02:40:37.9915640Z * [new branch] gh/xmfan/164/orig -> origin/gh/xmfan/164/orig 2025-01-24T02:40:37.9923770Z * [new branch] gh/xmfan/18/base -> origin/gh/xmfan/18/base 2025-01-24T02:40:37.9928740Z * [new branch] gh/xmfan/18/head -> origin/gh/xmfan/18/head 2025-01-24T02:40:37.9937540Z * [new branch] gh/xmfan/97/base -> origin/gh/xmfan/97/base 2025-01-24T02:40:37.9942440Z * [new branch] gh/xmfan/97/head -> origin/gh/xmfan/97/head 2025-01-24T02:40:37.9951000Z * [new branch] gh/xmfan/97/orig -> origin/gh/xmfan/97/orig 2025-01-24T02:40:37.9956340Z * [new branch] gh/xuanzhang816/10/base -> origin/gh/xuanzhang816/10/base 2025-01-24T02:40:37.9963870Z * [new branch] gh/xuanzhang816/10/head -> origin/gh/xuanzhang816/10/head 2025-01-24T02:40:37.9970210Z * [new branch] gh/xuanzhang816/10/orig -> origin/gh/xuanzhang816/10/orig 2025-01-24T02:40:37.9978550Z * [new branch] gh/xuanzhang816/11/base -> origin/gh/xuanzhang816/11/base 2025-01-24T02:40:37.9980530Z * [new branch] gh/xuanzhang816/11/head -> origin/gh/xuanzhang816/11/head 2025-01-24T02:40:37.9987400Z * [new branch] gh/xuanzhang816/11/orig -> origin/gh/xuanzhang816/11/orig 2025-01-24T02:40:37.9994740Z * [new branch] gh/xuanzhang816/12/base -> origin/gh/xuanzhang816/12/base 2025-01-24T02:40:37.9997090Z * [new branch] gh/xuanzhang816/12/head -> origin/gh/xuanzhang816/12/head 2025-01-24T02:40:38.0012720Z * [new branch] gh/xuanzhang816/12/orig -> origin/gh/xuanzhang816/12/orig 2025-01-24T02:40:38.0020600Z * [new branch] gh/xuanzhang816/13/base -> origin/gh/xuanzhang816/13/base 2025-01-24T02:40:38.0022880Z * [new branch] gh/xuanzhang816/13/head -> origin/gh/xuanzhang816/13/head 2025-01-24T02:40:38.0030070Z * [new branch] gh/xuanzhang816/13/orig -> origin/gh/xuanzhang816/13/orig 2025-01-24T02:40:38.0037550Z * [new branch] gh/xuanzhang816/2/base -> origin/gh/xuanzhang816/2/base 2025-01-24T02:40:38.0044780Z * [new branch] gh/xuanzhang816/2/head -> origin/gh/xuanzhang816/2/head 2025-01-24T02:40:38.0053260Z * [new branch] gh/xuanzhang816/2/orig -> origin/gh/xuanzhang816/2/orig 2025-01-24T02:40:38.0061120Z * [new branch] gh/xuanzhang816/3/base -> origin/gh/xuanzhang816/3/base 2025-01-24T02:40:38.0062830Z * [new branch] gh/xuanzhang816/3/head -> origin/gh/xuanzhang816/3/head 2025-01-24T02:40:38.0070060Z * [new branch] gh/xuanzhang816/3/orig -> origin/gh/xuanzhang816/3/orig 2025-01-24T02:40:38.0078090Z * [new branch] gh/xuanzhang816/4/base -> origin/gh/xuanzhang816/4/base 2025-01-24T02:40:38.0084460Z * [new branch] gh/xuanzhang816/4/head -> origin/gh/xuanzhang816/4/head 2025-01-24T02:40:38.0092410Z * [new branch] gh/xuanzhang816/4/orig -> origin/gh/xuanzhang816/4/orig 2025-01-24T02:40:38.0100080Z * [new branch] gh/xuanzhang816/7/base -> origin/gh/xuanzhang816/7/base 2025-01-24T02:40:38.0101920Z * [new branch] gh/xuanzhang816/7/head -> origin/gh/xuanzhang816/7/head 2025-01-24T02:40:38.0109560Z * [new branch] gh/xuanzhang816/7/orig -> origin/gh/xuanzhang816/7/orig 2025-01-24T02:40:38.0125960Z * [new branch] gh/xuhancn/1/base -> origin/gh/xuhancn/1/base 2025-01-24T02:40:38.0133170Z * [new branch] gh/xuhancn/1/head -> origin/gh/xuhancn/1/head 2025-01-24T02:40:38.0140950Z * [new branch] gh/xuhancn/2/base -> origin/gh/xuhancn/2/base 2025-01-24T02:40:38.0149080Z * [new branch] gh/xuhancn/2/head -> origin/gh/xuhancn/2/head 2025-01-24T02:40:38.0158240Z * [new branch] gh/xuhancn/3/base -> origin/gh/xuhancn/3/base 2025-01-24T02:40:38.0164890Z * [new branch] gh/xuhancn/3/head -> origin/gh/xuhancn/3/head 2025-01-24T02:40:38.0167880Z * [new branch] gh/xuhancn/4/base -> origin/gh/xuhancn/4/base 2025-01-24T02:40:38.0177320Z * [new branch] gh/xuhancn/4/head -> origin/gh/xuhancn/4/head 2025-01-24T02:40:38.0181600Z * [new branch] gh/xuhancn/5/base -> origin/gh/xuhancn/5/base 2025-01-24T02:40:38.0186590Z * [new branch] gh/xuhancn/5/head -> origin/gh/xuhancn/5/head 2025-01-24T02:40:38.0194690Z * [new branch] gh/xuhancn/6/base -> origin/gh/xuhancn/6/base 2025-01-24T02:40:38.0200610Z * [new branch] gh/xuhancn/6/head -> origin/gh/xuhancn/6/head 2025-01-24T02:40:38.0206670Z * [new branch] gh/xuhancn/7/base -> origin/gh/xuhancn/7/base 2025-01-24T02:40:38.0215830Z * [new branch] gh/xuhancn/7/head -> origin/gh/xuhancn/7/head 2025-01-24T02:40:38.0224670Z * [new branch] gh/yanbing-j/1/base -> origin/gh/yanbing-j/1/base 2025-01-24T02:40:38.0228930Z * [new branch] gh/yanbing-j/1/orig -> origin/gh/yanbing-j/1/orig 2025-01-24T02:40:38.0237080Z * [new branch] gh/yanbing-j/11/base -> origin/gh/yanbing-j/11/base 2025-01-24T02:40:38.0242500Z * [new branch] gh/yanbing-j/11/head -> origin/gh/yanbing-j/11/head 2025-01-24T02:40:38.0251260Z * [new branch] gh/yanbing-j/11/orig -> origin/gh/yanbing-j/11/orig 2025-01-24T02:40:38.0258720Z * [new branch] gh/yanbing-j/12/base -> origin/gh/yanbing-j/12/base 2025-01-24T02:40:38.0263260Z * [new branch] gh/yanbing-j/12/head -> origin/gh/yanbing-j/12/head 2025-01-24T02:40:38.0270810Z * [new branch] gh/yanbing-j/12/orig -> origin/gh/yanbing-j/12/orig 2025-01-24T02:40:38.0277030Z * [new branch] gh/yanbing-j/13/base -> origin/gh/yanbing-j/13/base 2025-01-24T02:40:38.0284360Z * [new branch] gh/yanbing-j/13/head -> origin/gh/yanbing-j/13/head 2025-01-24T02:40:38.0292630Z * [new branch] gh/yanbing-j/13/orig -> origin/gh/yanbing-j/13/orig 2025-01-24T02:40:38.0301870Z * [new branch] gh/yanbing-j/14/base -> origin/gh/yanbing-j/14/base 2025-01-24T02:40:38.0307860Z * [new branch] gh/yanbing-j/14/head -> origin/gh/yanbing-j/14/head 2025-01-24T02:40:38.0315210Z * [new branch] gh/yanbing-j/14/orig -> origin/gh/yanbing-j/14/orig 2025-01-24T02:40:38.0323180Z * [new branch] gh/yanbing-j/15/base -> origin/gh/yanbing-j/15/base 2025-01-24T02:40:38.0325800Z * [new branch] gh/yanbing-j/15/head -> origin/gh/yanbing-j/15/head 2025-01-24T02:40:38.0332410Z * [new branch] gh/yanbing-j/15/orig -> origin/gh/yanbing-j/15/orig 2025-01-24T02:40:38.0340620Z * [new branch] gh/yanbing-j/18/base -> origin/gh/yanbing-j/18/base 2025-01-24T02:40:38.0347870Z * [new branch] gh/yanbing-j/18/head -> origin/gh/yanbing-j/18/head 2025-01-24T02:40:38.0354700Z * [new branch] gh/yanbing-j/18/orig -> origin/gh/yanbing-j/18/orig 2025-01-24T02:40:38.0360010Z * [new branch] gh/yanbing-j/19/base -> origin/gh/yanbing-j/19/base 2025-01-24T02:40:38.0371490Z * [new branch] gh/yanbing-j/19/head -> origin/gh/yanbing-j/19/head 2025-01-24T02:40:38.0374730Z * [new branch] gh/yanbing-j/19/orig -> origin/gh/yanbing-j/19/orig 2025-01-24T02:40:38.0382060Z * [new branch] gh/yanbing-j/2/base -> origin/gh/yanbing-j/2/base 2025-01-24T02:40:38.0385780Z * [new branch] gh/yanbing-j/2/orig -> origin/gh/yanbing-j/2/orig 2025-01-24T02:40:38.0392430Z * [new branch] gh/yanbing-j/20/base -> origin/gh/yanbing-j/20/base 2025-01-24T02:40:38.0400730Z * [new branch] gh/yanbing-j/20/head -> origin/gh/yanbing-j/20/head 2025-01-24T02:40:38.0408030Z * [new branch] gh/yanbing-j/20/orig -> origin/gh/yanbing-j/20/orig 2025-01-24T02:40:38.0414960Z * [new branch] gh/yanbing-j/21/base -> origin/gh/yanbing-j/21/base 2025-01-24T02:40:38.0417870Z * [new branch] gh/yanbing-j/21/head -> origin/gh/yanbing-j/21/head 2025-01-24T02:40:38.0432530Z * [new branch] gh/yanbing-j/22/base -> origin/gh/yanbing-j/22/base 2025-01-24T02:40:38.0439700Z * [new branch] gh/yanbing-j/22/head -> origin/gh/yanbing-j/22/head 2025-01-24T02:40:38.0442330Z * [new branch] gh/yanbing-j/22/orig -> origin/gh/yanbing-j/22/orig 2025-01-24T02:40:38.0457020Z * [new branch] gh/yanbing-j/23/base -> origin/gh/yanbing-j/23/base 2025-01-24T02:40:38.0464880Z * [new branch] gh/yanbing-j/23/head -> origin/gh/yanbing-j/23/head 2025-01-24T02:40:38.0466860Z * [new branch] gh/yanbing-j/23/orig -> origin/gh/yanbing-j/23/orig 2025-01-24T02:40:38.0474430Z * [new branch] gh/yanbing-j/24/base -> origin/gh/yanbing-j/24/base 2025-01-24T02:40:38.0481240Z * [new branch] gh/yanbing-j/24/head -> origin/gh/yanbing-j/24/head 2025-01-24T02:40:38.0487760Z * [new branch] gh/yanbing-j/24/orig -> origin/gh/yanbing-j/24/orig 2025-01-24T02:40:38.0495220Z * [new branch] gh/yanbing-j/25/base -> origin/gh/yanbing-j/25/base 2025-01-24T02:40:38.0503470Z * [new branch] gh/yanbing-j/25/head -> origin/gh/yanbing-j/25/head 2025-01-24T02:40:38.0505370Z * [new branch] gh/yanbing-j/25/orig -> origin/gh/yanbing-j/25/orig 2025-01-24T02:40:38.0513220Z * [new branch] gh/yanbing-j/26/base -> origin/gh/yanbing-j/26/base 2025-01-24T02:40:38.0521610Z * [new branch] gh/yanbing-j/26/head -> origin/gh/yanbing-j/26/head 2025-01-24T02:40:38.0529250Z * [new branch] gh/yanbing-j/26/orig -> origin/gh/yanbing-j/26/orig 2025-01-24T02:40:38.0536950Z * [new branch] gh/yanbing-j/27/base -> origin/gh/yanbing-j/27/base 2025-01-24T02:40:38.0544530Z * [new branch] gh/yanbing-j/27/head -> origin/gh/yanbing-j/27/head 2025-01-24T02:40:38.0546360Z * [new branch] gh/yanbing-j/27/orig -> origin/gh/yanbing-j/27/orig 2025-01-24T02:40:38.0554280Z * [new branch] gh/yanbing-j/28/base -> origin/gh/yanbing-j/28/base 2025-01-24T02:40:38.0562680Z * [new branch] gh/yanbing-j/28/head -> origin/gh/yanbing-j/28/head 2025-01-24T02:40:38.0567050Z * [new branch] gh/yanbing-j/28/orig -> origin/gh/yanbing-j/28/orig 2025-01-24T02:40:38.0571730Z * [new branch] gh/yanbing-j/32/base -> origin/gh/yanbing-j/32/base 2025-01-24T02:40:38.0577280Z * [new branch] gh/yanbing-j/32/head -> origin/gh/yanbing-j/32/head 2025-01-24T02:40:38.0585410Z * [new branch] gh/yanbing-j/32/orig -> origin/gh/yanbing-j/32/orig 2025-01-24T02:40:38.0590310Z * [new branch] gh/yanbing-j/34/base -> origin/gh/yanbing-j/34/base 2025-01-24T02:40:38.0598550Z * [new branch] gh/yanbing-j/34/head -> origin/gh/yanbing-j/34/head 2025-01-24T02:40:38.0603810Z * [new branch] gh/yanbing-j/34/orig -> origin/gh/yanbing-j/34/orig 2025-01-24T02:40:38.0610880Z * [new branch] gh/yanbing-j/35/base -> origin/gh/yanbing-j/35/base 2025-01-24T02:40:38.0616790Z * [new branch] gh/yanbing-j/35/head -> origin/gh/yanbing-j/35/head 2025-01-24T02:40:38.0624260Z * [new branch] gh/yanbing-j/35/orig -> origin/gh/yanbing-j/35/orig 2025-01-24T02:40:38.0627240Z * [new branch] gh/yanbing-j/36/base -> origin/gh/yanbing-j/36/base 2025-01-24T02:40:38.0642030Z * [new branch] gh/yanbing-j/36/head -> origin/gh/yanbing-j/36/head 2025-01-24T02:40:38.0643920Z * [new branch] gh/yanbing-j/36/orig -> origin/gh/yanbing-j/36/orig 2025-01-24T02:40:38.0651550Z * [new branch] gh/yanbing-j/37/base -> origin/gh/yanbing-j/37/base 2025-01-24T02:40:38.0658550Z * [new branch] gh/yanbing-j/37/head -> origin/gh/yanbing-j/37/head 2025-01-24T02:40:38.0665310Z * [new branch] gh/yanbing-j/37/orig -> origin/gh/yanbing-j/37/orig 2025-01-24T02:40:38.0672710Z * [new branch] gh/yanboliang/41/base -> origin/gh/yanboliang/41/base 2025-01-24T02:40:38.0675790Z * [new branch] gh/yanboliang/41/head -> origin/gh/yanboliang/41/head 2025-01-24T02:40:38.0682290Z * [new branch] gh/yanboliang/41/orig -> origin/gh/yanboliang/41/orig 2025-01-24T02:40:38.0690760Z * [new branch] gh/yanboliang/46/base -> origin/gh/yanboliang/46/base 2025-01-24T02:40:38.0698140Z * [new branch] gh/yanboliang/46/orig -> origin/gh/yanboliang/46/orig 2025-01-24T02:40:38.0704390Z * [new branch] gh/yanboliang/47/base -> origin/gh/yanboliang/47/base 2025-01-24T02:40:38.0712440Z * [new branch] gh/yanboliang/47/head -> origin/gh/yanboliang/47/head 2025-01-24T02:40:38.0722290Z * [new branch] gh/yanboliang/47/orig -> origin/gh/yanboliang/47/orig 2025-01-24T02:40:38.0730740Z * [new branch] gh/yanboliang/48/base -> origin/gh/yanboliang/48/base 2025-01-24T02:40:38.0737910Z * [new branch] gh/yanboliang/48/head -> origin/gh/yanboliang/48/head 2025-01-24T02:40:38.0745720Z * [new branch] gh/yanboliang/48/orig -> origin/gh/yanboliang/48/orig 2025-01-24T02:40:38.0753580Z * [new branch] gh/yanboliang/49/base -> origin/gh/yanboliang/49/base 2025-01-24T02:40:38.0759620Z * [new branch] gh/yanboliang/49/head -> origin/gh/yanboliang/49/head 2025-01-24T02:40:38.0762410Z * [new branch] gh/yanboliang/49/orig -> origin/gh/yanboliang/49/orig 2025-01-24T02:40:38.0769920Z * [new branch] gh/yanboliang/50/base -> origin/gh/yanboliang/50/base 2025-01-24T02:40:38.0778510Z * [new branch] gh/yanboliang/50/head -> origin/gh/yanboliang/50/head 2025-01-24T02:40:38.0786570Z * [new branch] gh/yanboliang/50/orig -> origin/gh/yanboliang/50/orig 2025-01-24T02:40:38.0789410Z * [new branch] gh/yanboliang/51/base -> origin/gh/yanboliang/51/base 2025-01-24T02:40:38.0795620Z * [new branch] gh/yanboliang/51/orig -> origin/gh/yanboliang/51/orig 2025-01-24T02:40:38.0804490Z * [new branch] gh/yanboliang/52/base -> origin/gh/yanboliang/52/base 2025-01-24T02:40:38.0811170Z * [new branch] gh/yanboliang/52/orig -> origin/gh/yanboliang/52/orig 2025-01-24T02:40:38.0814140Z * [new branch] gh/yanboliang/53/base -> origin/gh/yanboliang/53/base 2025-01-24T02:40:38.0820660Z * [new branch] gh/yanboliang/53/orig -> origin/gh/yanboliang/53/orig 2025-01-24T02:40:38.0828100Z * [new branch] gh/yanboliang/54/base -> origin/gh/yanboliang/54/base 2025-01-24T02:40:38.0835070Z * [new branch] gh/yanboliang/54/orig -> origin/gh/yanboliang/54/orig 2025-01-24T02:40:38.0844730Z * [new branch] gh/yanboliang/55/base -> origin/gh/yanboliang/55/base 2025-01-24T02:40:38.0853120Z * [new branch] gh/yanboliang/55/head -> origin/gh/yanboliang/55/head 2025-01-24T02:40:38.0858980Z * [new branch] gh/yanboliang/55/orig -> origin/gh/yanboliang/55/orig 2025-01-24T02:40:38.0867810Z * [new branch] gh/ydwu4/1/base -> origin/gh/ydwu4/1/base 2025-01-24T02:40:38.0875700Z * [new branch] gh/ydwu4/1/head -> origin/gh/ydwu4/1/head 2025-01-24T02:40:38.0880550Z * [new branch] gh/ydwu4/1/orig -> origin/gh/ydwu4/1/orig 2025-01-24T02:40:38.0888210Z * [new branch] gh/ydwu4/153/base -> origin/gh/ydwu4/153/base 2025-01-24T02:40:38.0893710Z * [new branch] gh/ydwu4/153/head -> origin/gh/ydwu4/153/head 2025-01-24T02:40:38.0901820Z * [new branch] gh/ydwu4/153/orig -> origin/gh/ydwu4/153/orig 2025-01-24T02:40:38.0909810Z * [new branch] gh/ydwu4/157/base -> origin/gh/ydwu4/157/base 2025-01-24T02:40:38.0918220Z * [new branch] gh/ydwu4/157/head -> origin/gh/ydwu4/157/head 2025-01-24T02:40:38.0924660Z * [new branch] gh/ydwu4/157/orig -> origin/gh/ydwu4/157/orig 2025-01-24T02:40:38.0932890Z * [new branch] gh/ydwu4/168/base -> origin/gh/ydwu4/168/base 2025-01-24T02:40:38.0935140Z * [new branch] gh/ydwu4/168/head -> origin/gh/ydwu4/168/head 2025-01-24T02:40:38.0942740Z * [new branch] gh/ydwu4/168/orig -> origin/gh/ydwu4/168/orig 2025-01-24T02:40:38.0958810Z * [new branch] gh/ydwu4/175/base -> origin/gh/ydwu4/175/base 2025-01-24T02:40:38.0968180Z * [new branch] gh/ydwu4/175/head -> origin/gh/ydwu4/175/head 2025-01-24T02:40:38.0975260Z * [new branch] gh/ydwu4/175/orig -> origin/gh/ydwu4/175/orig 2025-01-24T02:40:38.0982300Z * [new branch] gh/ydwu4/179/base -> origin/gh/ydwu4/179/base 2025-01-24T02:40:38.0989790Z * [new branch] gh/ydwu4/179/head -> origin/gh/ydwu4/179/head 2025-01-24T02:40:38.0992220Z * [new branch] gh/ydwu4/179/orig -> origin/gh/ydwu4/179/orig 2025-01-24T02:40:38.0999140Z * [new branch] gh/ydwu4/180/base -> origin/gh/ydwu4/180/base 2025-01-24T02:40:38.1007450Z * [new branch] gh/ydwu4/180/head -> origin/gh/ydwu4/180/head 2025-01-24T02:40:38.1014140Z * [new branch] gh/ydwu4/180/orig -> origin/gh/ydwu4/180/orig 2025-01-24T02:40:38.1022140Z * [new branch] gh/ydwu4/189/base -> origin/gh/ydwu4/189/base 2025-01-24T02:40:38.1025810Z * [new branch] gh/ydwu4/189/head -> origin/gh/ydwu4/189/head 2025-01-24T02:40:38.1034110Z * [new branch] gh/ydwu4/189/orig -> origin/gh/ydwu4/189/orig 2025-01-24T02:40:38.1040120Z * [new branch] gh/ydwu4/190/base -> origin/gh/ydwu4/190/base 2025-01-24T02:40:38.1048000Z * [new branch] gh/ydwu4/190/head -> origin/gh/ydwu4/190/head 2025-01-24T02:40:38.1055750Z * [new branch] gh/ydwu4/190/orig -> origin/gh/ydwu4/190/orig 2025-01-24T02:40:38.1063850Z * [new branch] gh/ydwu4/191/base -> origin/gh/ydwu4/191/base 2025-01-24T02:40:38.1065600Z * [new branch] gh/ydwu4/191/head -> origin/gh/ydwu4/191/head 2025-01-24T02:40:38.1072500Z * [new branch] gh/ydwu4/191/orig -> origin/gh/ydwu4/191/orig 2025-01-24T02:40:38.1081120Z * [new branch] gh/ydwu4/193/base -> origin/gh/ydwu4/193/base 2025-01-24T02:40:38.1089990Z * [new branch] gh/ydwu4/193/head -> origin/gh/ydwu4/193/head 2025-01-24T02:40:38.1101820Z * [new branch] gh/ydwu4/193/orig -> origin/gh/ydwu4/193/orig 2025-01-24T02:40:38.1109620Z * [new branch] gh/ydwu4/194/base -> origin/gh/ydwu4/194/base 2025-01-24T02:40:38.1112810Z * [new branch] gh/ydwu4/194/head -> origin/gh/ydwu4/194/head 2025-01-24T02:40:38.1119160Z * [new branch] gh/ydwu4/194/orig -> origin/gh/ydwu4/194/orig 2025-01-24T02:40:38.1127780Z * [new branch] gh/ydwu4/195/base -> origin/gh/ydwu4/195/base 2025-01-24T02:40:38.1134840Z * [new branch] gh/ydwu4/195/head -> origin/gh/ydwu4/195/head 2025-01-24T02:40:38.1138820Z * [new branch] gh/ydwu4/195/orig -> origin/gh/ydwu4/195/orig 2025-01-24T02:40:38.1146780Z * [new branch] gh/ydwu4/196/base -> origin/gh/ydwu4/196/base 2025-01-24T02:40:38.1149620Z * [new branch] gh/ydwu4/196/head -> origin/gh/ydwu4/196/head 2025-01-24T02:40:38.1156320Z * [new branch] gh/ydwu4/196/orig -> origin/gh/ydwu4/196/orig 2025-01-24T02:40:38.1163980Z * [new branch] gh/ydwu4/197/base -> origin/gh/ydwu4/197/base 2025-01-24T02:40:38.1171470Z * [new branch] gh/ydwu4/197/head -> origin/gh/ydwu4/197/head 2025-01-24T02:40:38.1178770Z * [new branch] gh/ydwu4/197/orig -> origin/gh/ydwu4/197/orig 2025-01-24T02:40:38.1186800Z * [new branch] gh/ydwu4/198/base -> origin/gh/ydwu4/198/base 2025-01-24T02:40:38.1195250Z * [new branch] gh/ydwu4/198/head -> origin/gh/ydwu4/198/head 2025-01-24T02:40:38.1197340Z * [new branch] gh/ydwu4/198/orig -> origin/gh/ydwu4/198/orig 2025-01-24T02:40:38.1204730Z * [new branch] gh/ydwu4/199/base -> origin/gh/ydwu4/199/base 2025-01-24T02:40:38.1211920Z * [new branch] gh/ydwu4/199/head -> origin/gh/ydwu4/199/head 2025-01-24T02:40:38.1219420Z * [new branch] gh/ydwu4/199/orig -> origin/gh/ydwu4/199/orig 2025-01-24T02:40:38.1227940Z * [new branch] gh/ydwu4/200/base -> origin/gh/ydwu4/200/base 2025-01-24T02:40:38.1229890Z * [new branch] gh/ydwu4/200/head -> origin/gh/ydwu4/200/head 2025-01-24T02:40:38.1236410Z * [new branch] gh/ydwu4/200/orig -> origin/gh/ydwu4/200/orig 2025-01-24T02:40:38.1244450Z * [new branch] gh/ydwu4/201/base -> origin/gh/ydwu4/201/base 2025-01-24T02:40:38.1253290Z * [new branch] gh/ydwu4/201/head -> origin/gh/ydwu4/201/head 2025-01-24T02:40:38.1260790Z * [new branch] gh/ydwu4/201/orig -> origin/gh/ydwu4/201/orig 2025-01-24T02:40:38.1268240Z * [new branch] gh/ydwu4/7/base -> origin/gh/ydwu4/7/base 2025-01-24T02:40:38.1276170Z * [new branch] gh/ydwu4/7/head -> origin/gh/ydwu4/7/head 2025-01-24T02:40:38.1284230Z * [new branch] gh/ydwu4/7/orig -> origin/gh/ydwu4/7/orig 2025-01-24T02:40:38.1287370Z * [new branch] gh/yf225/127/base -> origin/gh/yf225/127/base 2025-01-24T02:40:38.1298460Z * [new branch] gh/yf225/127/head -> origin/gh/yf225/127/head 2025-01-24T02:40:38.1306390Z * [new branch] gh/yf225/127/orig -> origin/gh/yf225/127/orig 2025-01-24T02:40:38.1314970Z * [new branch] gh/yf225/132/base -> origin/gh/yf225/132/base 2025-01-24T02:40:38.1316890Z * [new branch] gh/yf225/132/head -> origin/gh/yf225/132/head 2025-01-24T02:40:38.1323810Z * [new branch] gh/yf225/132/orig -> origin/gh/yf225/132/orig 2025-01-24T02:40:38.1331420Z * [new branch] gh/yf225/133/base -> origin/gh/yf225/133/base 2025-01-24T02:40:38.1337180Z * [new branch] gh/yf225/133/head -> origin/gh/yf225/133/head 2025-01-24T02:40:38.1345910Z * [new branch] gh/yf225/139/base -> origin/gh/yf225/139/base 2025-01-24T02:40:38.1347800Z * [new branch] gh/yf225/139/head -> origin/gh/yf225/139/head 2025-01-24T02:40:38.1355640Z * [new branch] gh/yf225/139/orig -> origin/gh/yf225/139/orig 2025-01-24T02:40:38.1362440Z * [new branch] gh/yf225/151/base -> origin/gh/yf225/151/base 2025-01-24T02:40:38.1365820Z * [new branch] gh/yf225/151/head -> origin/gh/yf225/151/head 2025-01-24T02:40:38.1372430Z * [new branch] gh/yf225/151/orig -> origin/gh/yf225/151/orig 2025-01-24T02:40:38.1381120Z * [new branch] gh/yf225/156/base -> origin/gh/yf225/156/base 2025-01-24T02:40:38.1388580Z * [new branch] gh/yf225/156/head -> origin/gh/yf225/156/head 2025-01-24T02:40:38.1395150Z * [new branch] gh/yf225/156/orig -> origin/gh/yf225/156/orig 2025-01-24T02:40:38.1403250Z * [new branch] gh/yf225/157/base -> origin/gh/yf225/157/base 2025-01-24T02:40:38.1405050Z * [new branch] gh/yf225/157/head -> origin/gh/yf225/157/head 2025-01-24T02:40:38.1412370Z * [new branch] gh/yf225/157/orig -> origin/gh/yf225/157/orig 2025-01-24T02:40:38.1420760Z * [new branch] gh/yf225/158/base -> origin/gh/yf225/158/base 2025-01-24T02:40:38.1428270Z * [new branch] gh/yf225/158/head -> origin/gh/yf225/158/head 2025-01-24T02:40:38.1435750Z * [new branch] gh/yf225/158/orig -> origin/gh/yf225/158/orig 2025-01-24T02:40:38.1443220Z * [new branch] gh/yf225/159/base -> origin/gh/yf225/159/base 2025-01-24T02:40:38.1445100Z * [new branch] gh/yf225/159/head -> origin/gh/yf225/159/head 2025-01-24T02:40:38.1453100Z * [new branch] gh/yf225/159/orig -> origin/gh/yf225/159/orig 2025-01-24T02:40:38.1460310Z * [new branch] gh/yf225/160/base -> origin/gh/yf225/160/base 2025-01-24T02:40:38.1467720Z * [new branch] gh/yf225/160/head -> origin/gh/yf225/160/head 2025-01-24T02:40:38.1475500Z * [new branch] gh/yf225/160/orig -> origin/gh/yf225/160/orig 2025-01-24T02:40:38.1483250Z * [new branch] gh/yf225/162/base -> origin/gh/yf225/162/base 2025-01-24T02:40:38.1490340Z * [new branch] gh/yf225/162/head -> origin/gh/yf225/162/head 2025-01-24T02:40:38.1494140Z * [new branch] gh/yf225/162/orig -> origin/gh/yf225/162/orig 2025-01-24T02:40:38.1500510Z * [new branch] gh/yf225/163/base -> origin/gh/yf225/163/base 2025-01-24T02:40:38.1508540Z * [new branch] gh/yf225/163/head -> origin/gh/yf225/163/head 2025-01-24T02:40:38.1516020Z * [new branch] gh/yf225/163/orig -> origin/gh/yf225/163/orig 2025-01-24T02:40:38.1524230Z * [new branch] gh/yf225/85/base -> origin/gh/yf225/85/base 2025-01-24T02:40:38.1531190Z * [new branch] gh/yf225/85/head -> origin/gh/yf225/85/head 2025-01-24T02:40:38.1536820Z * [new branch] gh/yf225/85/orig -> origin/gh/yf225/85/orig 2025-01-24T02:40:38.1544030Z * [new branch] gh/yf225/93/base -> origin/gh/yf225/93/base 2025-01-24T02:40:38.1551220Z * [new branch] gh/yf225/93/head -> origin/gh/yf225/93/head 2025-01-24T02:40:38.1562170Z * [new branch] gh/yifuwang/152/base -> origin/gh/yifuwang/152/base 2025-01-24T02:40:38.1568600Z * [new branch] gh/yifuwang/152/head -> origin/gh/yifuwang/152/head 2025-01-24T02:40:38.1583230Z * [new branch] gh/yifuwang/152/orig -> origin/gh/yifuwang/152/orig 2025-01-24T02:40:38.1585890Z * [new branch] gh/yifuwang/163/base -> origin/gh/yifuwang/163/base 2025-01-24T02:40:38.1592860Z * [new branch] gh/yifuwang/163/head -> origin/gh/yifuwang/163/head 2025-01-24T02:40:38.1601650Z * [new branch] gh/yifuwang/163/orig -> origin/gh/yifuwang/163/orig 2025-01-24T02:40:38.1609430Z * [new branch] gh/yifuwang/174/base -> origin/gh/yifuwang/174/base 2025-01-24T02:40:38.1616490Z * [new branch] gh/yifuwang/174/head -> origin/gh/yifuwang/174/head 2025-01-24T02:40:38.1624550Z * [new branch] gh/yifuwang/174/orig -> origin/gh/yifuwang/174/orig 2025-01-24T02:40:38.1626990Z * [new branch] gh/yifuwang/183/base -> origin/gh/yifuwang/183/base 2025-01-24T02:40:38.1638560Z * [new branch] gh/yifuwang/183/head -> origin/gh/yifuwang/183/head 2025-01-24T02:40:38.1641660Z * [new branch] gh/yifuwang/183/orig -> origin/gh/yifuwang/183/orig 2025-01-24T02:40:38.1649130Z * [new branch] gh/yifuwang/184/base -> origin/gh/yifuwang/184/base 2025-01-24T02:40:38.1656370Z * [new branch] gh/yifuwang/184/head -> origin/gh/yifuwang/184/head 2025-01-24T02:40:38.1663910Z * [new branch] gh/yifuwang/184/orig -> origin/gh/yifuwang/184/orig 2025-01-24T02:40:38.1667130Z * [new branch] gh/yiming0416/1/base -> origin/gh/yiming0416/1/base 2025-01-24T02:40:38.1672960Z * [new branch] gh/yiming0416/1/head -> origin/gh/yiming0416/1/head 2025-01-24T02:40:38.1680680Z * [new branch] gh/yiming0416/2/base -> origin/gh/yiming0416/2/base 2025-01-24T02:40:38.1688720Z * [new branch] gh/yiming0416/2/head -> origin/gh/yiming0416/2/head 2025-01-24T02:40:38.1694910Z * [new branch] gh/ysiraichi/78/base -> origin/gh/ysiraichi/78/base 2025-01-24T02:40:38.1703630Z * [new branch] gh/ysiraichi/78/head -> origin/gh/ysiraichi/78/head 2025-01-24T02:40:38.1711760Z * [new branch] gh/ysiraichi/78/orig -> origin/gh/ysiraichi/78/orig 2025-01-24T02:40:38.1714130Z * [new branch] gh/ysiraichi/79/base -> origin/gh/ysiraichi/79/base 2025-01-24T02:40:38.1720520Z * [new branch] gh/ysiraichi/79/head -> origin/gh/ysiraichi/79/head 2025-01-24T02:40:38.1728350Z * [new branch] gh/ysiraichi/79/orig -> origin/gh/ysiraichi/79/orig 2025-01-24T02:40:38.1736110Z * [new branch] gh/ysiraichi/80/base -> origin/gh/ysiraichi/80/base 2025-01-24T02:40:38.1738540Z * [new branch] gh/ysiraichi/80/head -> origin/gh/ysiraichi/80/head 2025-01-24T02:40:38.1745650Z * [new branch] gh/ysiraichi/80/orig -> origin/gh/ysiraichi/80/orig 2025-01-24T02:40:38.1754040Z * [new branch] gh/yushangdi/2/base -> origin/gh/yushangdi/2/base 2025-01-24T02:40:38.1760280Z * [new branch] gh/yushangdi/2/orig -> origin/gh/yushangdi/2/orig 2025-01-24T02:40:38.1767400Z * [new branch] gh/zhuhaozhe/28/base -> origin/gh/zhuhaozhe/28/base 2025-01-24T02:40:38.1774520Z * [new branch] gh/zhuhaozhe/28/head -> origin/gh/zhuhaozhe/28/head 2025-01-24T02:40:38.1782030Z * [new branch] gh/zhuhaozhe/28/orig -> origin/gh/zhuhaozhe/28/orig 2025-01-24T02:40:38.1785570Z * [new branch] gh/zhuhaozhe/29/base -> origin/gh/zhuhaozhe/29/base 2025-01-24T02:40:38.1793100Z * [new branch] gh/zhuhaozhe/29/head -> origin/gh/zhuhaozhe/29/head 2025-01-24T02:40:38.1800590Z * [new branch] gh/zhuhaozhe/29/orig -> origin/gh/zhuhaozhe/29/orig 2025-01-24T02:40:38.1808860Z * [new branch] gh/zhuhaozhe/31/base -> origin/gh/zhuhaozhe/31/base 2025-01-24T02:40:38.1815930Z * [new branch] gh/zhuhaozhe/31/head -> origin/gh/zhuhaozhe/31/head 2025-01-24T02:40:38.1823080Z * [new branch] gh/zhuhaozhe/31/orig -> origin/gh/zhuhaozhe/31/orig 2025-01-24T02:40:38.1825650Z * [new branch] gh/zhuhaozhe/32/base -> origin/gh/zhuhaozhe/32/base 2025-01-24T02:40:38.1833080Z * [new branch] gh/zhuhaozhe/32/head -> origin/gh/zhuhaozhe/32/head 2025-01-24T02:40:38.1841030Z * [new branch] gh/zhuhaozhe/32/orig -> origin/gh/zhuhaozhe/32/orig 2025-01-24T02:40:38.1849380Z * [new branch] gh/zhuhaozhe/33/base -> origin/gh/zhuhaozhe/33/base 2025-01-24T02:40:38.1856940Z * [new branch] gh/zhuhaozhe/33/head -> origin/gh/zhuhaozhe/33/head 2025-01-24T02:40:38.1864960Z * [new branch] gh/zhuhaozhe/33/orig -> origin/gh/zhuhaozhe/33/orig 2025-01-24T02:40:38.1868170Z * [new branch] gh/zoranzhao/1/base -> origin/gh/zoranzhao/1/base 2025-01-24T02:40:38.1874230Z * [new branch] gh/zoranzhao/1/orig -> origin/gh/zoranzhao/1/orig 2025-01-24T02:40:38.1882500Z * [new branch] gh/zou3519/1072/base -> origin/gh/zou3519/1072/base 2025-01-24T02:40:38.1889620Z * [new branch] gh/zou3519/1072/head -> origin/gh/zou3519/1072/head 2025-01-24T02:40:38.1897700Z * [new branch] gh/zou3519/1072/orig -> origin/gh/zou3519/1072/orig 2025-01-24T02:40:38.1904910Z * [new branch] gh/zou3519/1075/base -> origin/gh/zou3519/1075/base 2025-01-24T02:40:38.1911640Z * [new branch] gh/zou3519/1075/head -> origin/gh/zou3519/1075/head 2025-01-24T02:40:38.1919430Z * [new branch] gh/zou3519/1075/orig -> origin/gh/zou3519/1075/orig 2025-01-24T02:40:38.1923680Z * [new branch] gh/zou3519/1077/base -> origin/gh/zou3519/1077/base 2025-01-24T02:40:38.1929400Z * [new branch] gh/zou3519/1077/head -> origin/gh/zou3519/1077/head 2025-01-24T02:40:38.1940960Z * [new branch] gh/zou3519/1077/orig -> origin/gh/zou3519/1077/orig 2025-01-24T02:40:38.1949270Z * [new branch] gh/zou3519/1080/base -> origin/gh/zou3519/1080/base 2025-01-24T02:40:38.1955350Z * [new branch] gh/zou3519/1080/head -> origin/gh/zou3519/1080/head 2025-01-24T02:40:38.1964010Z * [new branch] gh/zou3519/1080/orig -> origin/gh/zou3519/1080/orig 2025-01-24T02:40:38.1970840Z * [new branch] gh/zou3519/1081/base -> origin/gh/zou3519/1081/base 2025-01-24T02:40:38.1978570Z * [new branch] gh/zou3519/1081/head -> origin/gh/zou3519/1081/head 2025-01-24T02:40:38.1986240Z * [new branch] gh/zou3519/1081/orig -> origin/gh/zou3519/1081/orig 2025-01-24T02:40:38.1994070Z * [new branch] gh/zou3519/1088/base -> origin/gh/zou3519/1088/base 2025-01-24T02:40:38.2011350Z * [new branch] gh/zou3519/1088/head -> origin/gh/zou3519/1088/head 2025-01-24T02:40:38.2018010Z * [new branch] gh/zou3519/1088/orig -> origin/gh/zou3519/1088/orig 2025-01-24T02:40:38.2024700Z * [new branch] gh/zou3519/1095/base -> origin/gh/zou3519/1095/base 2025-01-24T02:40:38.2032720Z * [new branch] gh/zou3519/1095/head -> origin/gh/zou3519/1095/head 2025-01-24T02:40:38.2041080Z * [new branch] gh/zou3519/1095/orig -> origin/gh/zou3519/1095/orig 2025-01-24T02:40:38.2043620Z * [new branch] gh/zou3519/1105/base -> origin/gh/zou3519/1105/base 2025-01-24T02:40:38.2050040Z * [new branch] gh/zou3519/1105/head -> origin/gh/zou3519/1105/head 2025-01-24T02:40:38.2057280Z * [new branch] gh/zou3519/1105/orig -> origin/gh/zou3519/1105/orig 2025-01-24T02:40:38.2065240Z * [new branch] gh/zou3519/1106/base -> origin/gh/zou3519/1106/base 2025-01-24T02:40:38.2072500Z * [new branch] gh/zou3519/1106/head -> origin/gh/zou3519/1106/head 2025-01-24T02:40:38.2080570Z * [new branch] gh/zou3519/1106/orig -> origin/gh/zou3519/1106/orig 2025-01-24T02:40:38.2083510Z * [new branch] gh/zou3519/1107/base -> origin/gh/zou3519/1107/base 2025-01-24T02:40:38.2089280Z * [new branch] gh/zou3519/1107/head -> origin/gh/zou3519/1107/head 2025-01-24T02:40:38.2097940Z * [new branch] gh/zou3519/1107/orig -> origin/gh/zou3519/1107/orig 2025-01-24T02:40:38.2106020Z * [new branch] gh/zou3519/1108/base -> origin/gh/zou3519/1108/base 2025-01-24T02:40:38.2113420Z * [new branch] gh/zou3519/1108/head -> origin/gh/zou3519/1108/head 2025-01-24T02:40:38.2115350Z * [new branch] gh/zou3519/1108/orig -> origin/gh/zou3519/1108/orig 2025-01-24T02:40:38.2123930Z * [new branch] gh/zou3519/1109/base -> origin/gh/zou3519/1109/base 2025-01-24T02:40:38.2130480Z * [new branch] gh/zou3519/1109/head -> origin/gh/zou3519/1109/head 2025-01-24T02:40:38.2133340Z * [new branch] gh/zou3519/1109/orig -> origin/gh/zou3519/1109/orig 2025-01-24T02:40:38.2139470Z * [new branch] gh/zou3519/1110/base -> origin/gh/zou3519/1110/base 2025-01-24T02:40:38.2153000Z * [new branch] gh/zou3519/1110/head -> origin/gh/zou3519/1110/head 2025-01-24T02:40:38.2156400Z * [new branch] gh/zou3519/1110/orig -> origin/gh/zou3519/1110/orig 2025-01-24T02:40:38.2160120Z * [new branch] gh/zou3519/1111/base -> origin/gh/zou3519/1111/base 2025-01-24T02:40:38.2167470Z * [new branch] gh/zou3519/1111/head -> origin/gh/zou3519/1111/head 2025-01-24T02:40:38.2175110Z * [new branch] gh/zou3519/1111/orig -> origin/gh/zou3519/1111/orig 2025-01-24T02:40:38.2184320Z * [new branch] gh/zou3519/1112/base -> origin/gh/zou3519/1112/base 2025-01-24T02:40:38.2191860Z * [new branch] gh/zou3519/1112/head -> origin/gh/zou3519/1112/head 2025-01-24T02:40:38.2198970Z * [new branch] gh/zou3519/1112/orig -> origin/gh/zou3519/1112/orig 2025-01-24T02:40:38.2206920Z * [new branch] gh/zou3519/1113/base -> origin/gh/zou3519/1113/base 2025-01-24T02:40:38.2215100Z * [new branch] gh/zou3519/1113/head -> origin/gh/zou3519/1113/head 2025-01-24T02:40:38.2216830Z * [new branch] gh/zou3519/1113/orig -> origin/gh/zou3519/1113/orig 2025-01-24T02:40:38.2224680Z * [new branch] gh/zou3519/1114/base -> origin/gh/zou3519/1114/base 2025-01-24T02:40:38.2231640Z * [new branch] gh/zou3519/1114/head -> origin/gh/zou3519/1114/head 2025-01-24T02:40:38.2238860Z * [new branch] gh/zou3519/1114/orig -> origin/gh/zou3519/1114/orig 2025-01-24T02:40:38.2246110Z * [new branch] gh/zou3519/1115/base -> origin/gh/zou3519/1115/base 2025-01-24T02:40:38.2253550Z * [new branch] gh/zou3519/1115/head -> origin/gh/zou3519/1115/head 2025-01-24T02:40:38.2257150Z * [new branch] gh/zou3519/1115/orig -> origin/gh/zou3519/1115/orig 2025-01-24T02:40:38.2262350Z * [new branch] gh/zou3519/1116/base -> origin/gh/zou3519/1116/base 2025-01-24T02:40:38.2270550Z * [new branch] gh/zou3519/1116/head -> origin/gh/zou3519/1116/head 2025-01-24T02:40:38.2275350Z * [new branch] gh/zou3519/1116/orig -> origin/gh/zou3519/1116/orig 2025-01-24T02:40:38.2283260Z * [new branch] gh/zou3519/1117/base -> origin/gh/zou3519/1117/base 2025-01-24T02:40:38.2290600Z * [new branch] gh/zou3519/1117/head -> origin/gh/zou3519/1117/head 2025-01-24T02:40:38.2296720Z * [new branch] gh/zou3519/1117/orig -> origin/gh/zou3519/1117/orig 2025-01-24T02:40:38.2305360Z * [new branch] gh/zou3519/702/base -> origin/gh/zou3519/702/base 2025-01-24T02:40:38.2310430Z * [new branch] gh/zou3519/702/head -> origin/gh/zou3519/702/head 2025-01-24T02:40:38.2314430Z * [new branch] gh/zou3519/702/orig -> origin/gh/zou3519/702/orig 2025-01-24T02:40:38.2320430Z * [new branch] gh/zou3519/703/base -> origin/gh/zou3519/703/base 2025-01-24T02:40:38.2335090Z * [new branch] gh/zou3519/703/head -> origin/gh/zou3519/703/head 2025-01-24T02:40:38.2338280Z * [new branch] gh/zou3519/703/orig -> origin/gh/zou3519/703/orig 2025-01-24T02:40:38.2346010Z * [new branch] gh/zou3519/704/base -> origin/gh/zou3519/704/base 2025-01-24T02:40:38.2353890Z * [new branch] gh/zou3519/704/head -> origin/gh/zou3519/704/head 2025-01-24T02:40:38.2361690Z * [new branch] gh/zou3519/704/orig -> origin/gh/zou3519/704/orig 2025-01-24T02:40:38.2369140Z * [new branch] gh/zou3519/709/base -> origin/gh/zou3519/709/base 2025-01-24T02:40:38.2377950Z * [new branch] gh/zou3519/709/head -> origin/gh/zou3519/709/head 2025-01-24T02:40:38.2379750Z * [new branch] gh/zou3519/709/orig -> origin/gh/zou3519/709/orig 2025-01-24T02:40:38.2386530Z * [new branch] gh/zou3519/754/base -> origin/gh/zou3519/754/base 2025-01-24T02:40:38.2394300Z * [new branch] gh/zou3519/754/head -> origin/gh/zou3519/754/head 2025-01-24T02:40:38.2402280Z * [new branch] gh/zou3519/754/orig -> origin/gh/zou3519/754/orig 2025-01-24T02:40:38.2409720Z * [new branch] gh/zou3519/916/base -> origin/gh/zou3519/916/base 2025-01-24T02:40:38.2417620Z * [new branch] gh/zou3519/916/head -> origin/gh/zou3519/916/head 2025-01-24T02:40:38.2419760Z * [new branch] google-main -> origin/google-main 2025-01-24T02:40:38.2426730Z * [new branch] groupwise_gemm_multithreading -> origin/groupwise_gemm_multithreading 2025-01-24T02:40:38.2434930Z * [new branch] guangyey/acc_fix -> origin/guangyey/acc_fix 2025-01-24T02:40:38.2441400Z * [new branch] guangyey/external_stream -> origin/guangyey/external_stream 2025-01-24T02:40:38.2449050Z * [new branch] guangyey/host_alloc -> origin/guangyey/host_alloc 2025-01-24T02:40:38.2457490Z * [new branch] guangyey/test_2025 -> origin/guangyey/test_2025 2025-01-24T02:40:38.2459370Z * [new branch] guard_source1 -> origin/guard_source1 2025-01-24T02:40:38.2466900Z * [new branch] guard_system -> origin/guard_system 2025-01-24T02:40:38.2474810Z * [new branch] guards-cpp -> origin/guards-cpp 2025-01-24T02:40:38.2481840Z * [new branch] guilhermeleobas/cherry-pick-55d87d9dfd9 -> origin/guilhermeleobas/cherry-pick-55d87d9dfd9 2025-01-24T02:40:38.2489650Z * [new branch] haozhe/bf16-dynamic-shape -> origin/haozhe/bf16-dynamic-shape 2025-01-24T02:40:38.2498680Z * [new branch] higher_order_ops_gb -> origin/higher_order_ops_gb 2025-01-24T02:40:38.2505500Z * [new branch] hl475-patch-1 -> origin/hl475-patch-1 2025-01-24T02:40:38.2513710Z * [new branch] hoy-update-wheel -> origin/hoy-update-wheel 2025-01-24T02:40:38.2516820Z * [new branch] hoy/autofdo/xblock -> origin/hoy/autofdo/xblock 2025-01-24T02:40:38.2522760Z * [new branch] hoy/autotune/nreg -> origin/hoy/autotune/nreg 2025-01-24T02:40:38.2529630Z * [new branch] hoy/autotune/numwarps -> origin/hoy/autotune/numwarps 2025-01-24T02:40:38.2531670Z * [new branch] hoy/mmsplitk -> origin/hoy/mmsplitk 2025-01-24T02:40:38.2540050Z * [new branch] hoy/triton-PR3973 -> origin/hoy/triton-PR3973 2025-01-24T02:40:38.2548540Z * [new branch] hoy/triton-coalescing-baseline -> origin/hoy/triton-coalescing-baseline 2025-01-24T02:40:38.2555560Z * [new branch] hoy/triton-coalescing-min -> origin/hoy/triton-coalescing-min 2025-01-24T02:40:38.2562790Z * [new branch] hoy/triton-coalescing-new -> origin/hoy/triton-coalescing-new 2025-01-24T02:40:38.2571290Z * [new branch] hoy/triton-coalescing-vec -> origin/hoy/triton-coalescing-vec 2025-01-24T02:40:38.2573070Z * [new branch] hoy/ws -> origin/hoy/ws 2025-01-24T02:40:38.2580020Z * [new branch] ignore_lint_in_revs -> origin/ignore_lint_in_revs 2025-01-24T02:40:38.2587290Z * [new branch] improve_vec_log -> origin/improve_vec_log 2025-01-24T02:40:38.2595500Z * [new branch] increase-perf-benchmark-shard -> origin/increase-perf-benchmark-shard 2025-01-24T02:40:38.2603530Z * [new branch] inductor_layout_opt_rocm_disable -> origin/inductor_layout_opt_rocm_disable 2025-01-24T02:40:38.2611180Z * [new branch] inline -> origin/inline 2025-01-24T02:40:38.2613260Z * [new branch] inlining -> origin/inlining 2025-01-24T02:40:38.2621070Z * [new branch] inlining-ezyang -> origin/inlining-ezyang 2025-01-24T02:40:38.2627760Z * [new branch] int8_sdpa -> origin/int8_sdpa 2025-01-24T02:40:38.2634520Z * [new branch] invoke-subgraph -> origin/invoke-subgraph 2025-01-24T02:40:38.2642270Z * [new branch] ios-mac-m1 -> origin/ios-mac-m1 2025-01-24T02:40:38.2650250Z * [new branch] ipiszy/cutlass -> origin/ipiszy/cutlass 2025-01-24T02:40:38.2652310Z * [new branch] ipiszy/fix -> origin/ipiszy/fix 2025-01-24T02:40:38.2659320Z * [new branch] ipiszy/fp8_test -> origin/ipiszy/fp8_test 2025-01-24T02:40:38.2667870Z * [new branch] ipiszy/mypy -> origin/ipiszy/mypy 2025-01-24T02:40:38.2675370Z * [new branch] issue#58739 -> origin/issue#58739 2025-01-24T02:40:38.2681230Z * [new branch] ivanov/cherry-pick-ckpt-fixes -> origin/ivanov/cherry-pick-ckpt-fixes 2025-01-24T02:40:38.2688450Z * [new branch] jataylo-nvfuser_blocklist -> origin/jataylo-nvfuser_blocklist 2025-01-24T02:40:38.2696430Z * [new branch] jcaip-patch-1 -> origin/jcaip-patch-1 2025-01-24T02:40:38.2698830Z * [new branch] jcaip/fix-int8-bug -> origin/jcaip/fix-int8-bug 2025-01-24T02:40:38.2706280Z * [new branch] jcaip/fix-int8-bug-alpha -> origin/jcaip/fix-int8-bug-alpha 2025-01-24T02:40:38.2716280Z * [new branch] jcaip/test-cusparselt-version-0.6.2 -> origin/jcaip/test-cusparselt-version-0.6.2 2025-01-24T02:40:38.2733400Z * [new branch] jcaip/torch-compile-sparse -> origin/jcaip/torch-compile-sparse 2025-01-24T02:40:38.2747430Z * [new branch] jcaip/update-benchmarks -> origin/jcaip/update-benchmarks 2025-01-24T02:40:38.2754910Z * [new branch] jcaip/update-cusparselt-0.6.2 -> origin/jcaip/update-cusparselt-0.6.2 2025-01-24T02:40:38.2761270Z * [new branch] jon-chuang/compile-config-hash -> origin/jon-chuang/compile-config-hash 2025-01-24T02:40:38.2769060Z * [new branch] jon-chuang/compile-ignored -> origin/jon-chuang/compile-ignored 2025-01-24T02:40:38.2776260Z * [new branch] justinchu/docs-conf -> origin/justinchu/docs-conf 2025-01-24T02:40:38.2778840Z * [new branch] justinchu/safe-tensors -> origin/justinchu/safe-tensors 2025-01-24T02:40:38.2786440Z * [new branch] justinchuby-patch-1 -> origin/justinchuby-patch-1 2025-01-24T02:40:38.2794870Z * [new branch] jwagantall/migrate-checkout -> origin/jwagantall/migrate-checkout 2025-01-24T02:40:38.2803130Z * [new branch] jz/istft -> origin/jz/istft 2025-01-24T02:40:38.2810160Z * [new branch] jz/masked-select-decomp -> origin/jz/masked-select-decomp 2025-01-24T02:40:38.2818110Z * [new branch] jz/stft -> origin/jz/stft 2025-01-24T02:40:38.2819800Z * [new branch] jz/stft-old-fc -> origin/jz/stft-old-fc 2025-01-24T02:40:38.2827330Z * [new branch] kadeng/dev-1 -> origin/kadeng/dev-1 2025-01-24T02:40:38.2834790Z * [new branch] kadeng/inductor-backend/cutlass-evt-fusion-1 -> origin/kadeng/inductor-backend/cutlass-evt-fusion-1 2025-01-24T02:40:38.2840850Z * [new branch] kadeng/inductor-cutlass-epilogue -> origin/kadeng/inductor-cutlass-epilogue 2025-01-24T02:40:38.2848190Z * [new branch] kenjin/call_method_userdefined -> origin/kenjin/call_method_userdefined 2025-01-24T02:40:38.2855450Z * [new branch] kenjin/lambdas -> origin/kenjin/lambdas 2025-01-24T02:40:38.2857810Z * [new branch] kenjin/norefcycles -> origin/kenjin/norefcycles 2025-01-24T02:40:38.2865830Z * [new branch] kineto_warnings_fix -> origin/kineto_warnings_fix 2025-01-24T02:40:38.2874670Z * [new branch] kit1980-patch-2 -> origin/kit1980-patch-2 2025-01-24T02:40:38.2881820Z * [new branch] kleidiai_github_mirror -> origin/kleidiai_github_mirror 2025-01-24T02:40:38.2888600Z * [new branch] klondenberg/cutlass -> origin/klondenberg/cutlass 2025-01-24T02:40:38.2896650Z * [new branch] layernorm_bias_fix -> origin/layernorm_bias_fix 2025-01-24T02:40:38.2899230Z * [new branch] leslie/enable_poc_reduction_fusion -> origin/leslie/enable_poc_reduction_fusion 2025-01-24T02:40:38.2906130Z * [new branch] leslie/test_group_gemm_epilogues -> origin/leslie/test_group_gemm_epilogues 2025-01-24T02:40:38.2920110Z * [new branch] liaoxuan/fuse_attention_pattern -> origin/liaoxuan/fuse_attention_pattern 2025-01-24T02:40:38.2923210Z * [new branch] lts/release/1.8 -> origin/lts/release/1.8 2025-01-24T02:40:38.2929600Z * [new branch] main -> origin/main 2025-01-24T02:40:38.2937970Z * [new branch] main-update-cusparselt-0.6.3 -> origin/main-update-cusparselt-0.6.3 2025-01-24T02:40:38.2945240Z * [new branch] malfet-patch-1 -> origin/malfet-patch-1 2025-01-24T02:40:38.2952390Z * [new branch] malfet-patch-14 -> origin/malfet-patch-14 2025-01-24T02:40:38.2959910Z * [new branch] malfet-patch-15 -> origin/malfet-patch-15 2025-01-24T02:40:38.2962120Z * [new branch] malfet-patch-16 -> origin/malfet-patch-16 2025-01-24T02:40:38.2969740Z * [new branch] malfet-patch-17 -> origin/malfet-patch-17 2025-01-24T02:40:38.2977440Z * [new branch] malfet-patch-18 -> origin/malfet-patch-18 2025-01-24T02:40:38.2985170Z * [new branch] malfet-patch-19 -> origin/malfet-patch-19 2025-01-24T02:40:38.2993580Z * [new branch] malfet-patch-2 -> origin/malfet-patch-2 2025-01-24T02:40:38.3002160Z * [new branch] malfet-patch-20 -> origin/malfet-patch-20 2025-01-24T02:40:38.3009360Z * [new branch] malfet-patch-21 -> origin/malfet-patch-21 2025-01-24T02:40:38.3017550Z * [new branch] malfet-patch-22 -> origin/malfet-patch-22 2025-01-24T02:40:38.3019420Z * [new branch] malfet-patch-22-1 -> origin/malfet-patch-22-1 2025-01-24T02:40:38.3026380Z * [new branch] malfet-patch-23 -> origin/malfet-patch-23 2025-01-24T02:40:38.3035180Z * [new branch] malfet-patch-24 -> origin/malfet-patch-24 2025-01-24T02:40:38.3041840Z * [new branch] malfet-patch-25 -> origin/malfet-patch-25 2025-01-24T02:40:38.3048790Z * [new branch] malfet-patch-3 -> origin/malfet-patch-3 2025-01-24T02:40:38.3056520Z * [new branch] malfet-patch-32 -> origin/malfet-patch-32 2025-01-24T02:40:38.3060010Z * [new branch] malfet-patch-4 -> origin/malfet-patch-4 2025-01-24T02:40:38.3066520Z * [new branch] malfet-patch-42 -> origin/malfet-patch-42 2025-01-24T02:40:38.3075110Z * [new branch] malfet-patch-5 -> origin/malfet-patch-5 2025-01-24T02:40:38.3083240Z * [new branch] malfet-patch-6 -> origin/malfet-patch-6 2025-01-24T02:40:38.3086440Z * [new branch] malfet-patch-9 -> origin/malfet-patch-9 2025-01-24T02:40:38.3091410Z * [new branch] malfet/add-ami-option-to-instance-allocation -> origin/malfet/add-ami-option-to-instance-allocation 2025-01-24T02:40:38.3103240Z * [new branch] malfet/add-benchmark-func -> origin/malfet/add-benchmark-func 2025-01-24T02:40:38.3112480Z * [new branch] malfet/add-get-dtype-supported -> origin/malfet/add-get-dtype-supported 2025-01-24T02:40:38.3120960Z * [new branch] malfet/add-mps-inductor-nan -> origin/malfet/add-mps-inductor-nan 2025-01-24T02:40:38.3126850Z * [new branch] malfet/add-nan-to-int-conversion-check-cpu -> origin/malfet/add-nan-to-int-conversion-check-cpu 2025-01-24T02:40:38.3135440Z * [new branch] malfet/cp-143934-and-144055 -> origin/malfet/cp-143934-and-144055 2025-01-24T02:40:38.3140080Z * [new branch] malfet/cp-144716-144698 -> origin/malfet/cp-144716-144698 2025-01-24T02:40:38.3148640Z * [new branch] malfet/delete-find-openmp -> origin/malfet/delete-find-openmp 2025-01-24T02:40:38.3154410Z * [new branch] malfet/ez-cleanup-test -> origin/malfet/ez-cleanup-test 2025-01-24T02:40:38.3161920Z * [new branch] malfet/fix-conv-backward-cl-2 -> origin/malfet/fix-conv-backward-cl-2 2025-01-24T02:40:38.3165790Z * [new branch] malfet/fix-index-printing -> origin/malfet/fix-index-printing 2025-01-24T02:40:38.3174260Z * [new branch] malfet/mps-add-bilineard2d-aa -> origin/malfet/mps-add-bilineard2d-aa 2025-01-24T02:40:38.3179980Z * [new branch] malfet/mps-implement-col2im -> origin/malfet/mps-implement-col2im 2025-01-24T02:40:38.3188150Z * [new branch] malfet/mpsinductor-add-check-bounds -> origin/malfet/mpsinductor-add-check-bounds 2025-01-24T02:40:38.3194930Z * [new branch] malfet/mpsinductor-add-sizevars -> origin/malfet/mpsinductor-add-sizevars 2025-01-24T02:40:38.3203050Z * [new branch] malfet/mpsinductor-fix-where -> origin/malfet/mpsinductor-fix-where 2025-01-24T02:40:38.3206070Z * [new branch] malfet/mpsinductor-implement-bitcasts -> origin/malfet/mpsinductor-implement-bitcasts 2025-01-24T02:40:38.3350340Z * [new branch] maxautotune_big_gpu -> origin/maxautotune_big_gpu 2025-01-24T02:40:38.3353430Z * [new branch] mcr229/update_cpuinfo -> origin/mcr229/update_cpuinfo 2025-01-24T02:40:38.3355350Z * [new branch] migrate_map -> origin/migrate_map 2025-01-24T02:40:38.4063210Z * [new branch] missing_gloo_causes_deadlock -> origin/missing_gloo_causes_deadlock 2025-01-24T02:40:38.4065450Z * [new branch] mkl -> origin/mkl 2025-01-24T02:40:38.4068430Z * [new branch] mlazos/S429861-debug -> origin/mlazos/S429861-debug 2025-01-24T02:40:38.7103540Z * [new branch] mlazos/aa -> origin/mlazos/aa 2025-01-24T02:40:38.7117730Z * [new branch] mlazos/adam-compiled -> origin/mlazos/adam-compiled 2025-01-24T02:40:38.7131250Z * [new branch] mlazos/adam-fused-bench -> origin/mlazos/adam-fused-bench 2025-01-24T02:40:38.7144110Z * [new branch] mlazos/adam-fused-bench2 -> origin/mlazos/adam-fused-bench2 2025-01-24T02:40:38.7157010Z * [new branch] mlazos/adam-test2 -> origin/mlazos/adam-test2 2025-01-24T02:40:38.7169970Z * [new branch] mlazos/asgd-compile -> origin/mlazos/asgd-compile 2025-01-24T02:40:38.7182490Z * [new branch] mlazos/aux-vars -> origin/mlazos/aux-vars 2025-01-24T02:40:38.7192600Z * [new branch] mlazos/backup-test-branch -> origin/mlazos/backup-test-branch 2025-01-24T02:40:38.7202580Z * [new branch] mlazos/bad-cudagraphs -> origin/mlazos/bad-cudagraphs 2025-01-24T02:40:38.7212060Z * [new branch] mlazos/baseline -> origin/mlazos/baseline 2025-01-24T02:40:38.7222670Z * [new branch] mlazos/baseline-graph-breaks -> origin/mlazos/baseline-graph-breaks 2025-01-24T02:40:38.7231890Z * [new branch] mlazos/batch-fuse-opt -> origin/mlazos/batch-fuse-opt 2025-01-24T02:40:38.7242130Z * [new branch] mlazos/beta-tensor -> origin/mlazos/beta-tensor 2025-01-24T02:40:38.7251940Z * [new branch] mlazos/buff-opt2 -> origin/mlazos/buff-opt2 2025-01-24T02:40:38.7261170Z * [new branch] mlazos/buffers -> origin/mlazos/buffers 2025-01-24T02:40:38.7270640Z * [new branch] mlazos/buffers2 -> origin/mlazos/buffers2 2025-01-24T02:40:38.7278530Z * [new branch] mlazos/buffers3 -> origin/mlazos/buffers3 2025-01-24T02:40:38.7286400Z * [new branch] mlazos/ck2 -> origin/mlazos/ck2 2025-01-24T02:40:38.7294280Z * [new branch] mlazos/combokernels -> origin/mlazos/combokernels 2025-01-24T02:40:38.7301970Z * [new branch] mlazos/comp-asgd -> origin/mlazos/comp-asgd 2025-01-24T02:40:38.7309380Z * [new branch] mlazos/compiled-nadam -> origin/mlazos/compiled-nadam 2025-01-24T02:40:38.7324550Z * [new branch] mlazos/concat-opt -> origin/mlazos/concat-opt 2025-01-24T02:40:38.7325290Z * [new branch] mlazos/concat2 -> origin/mlazos/concat2 2025-01-24T02:40:38.7325850Z * [new branch] mlazos/copy2 -> origin/mlazos/copy2 2025-01-24T02:40:38.7326390Z * [new branch] mlazos/cudagraph-tests -> origin/mlazos/cudagraph-tests 2025-01-24T02:40:38.7328220Z * [new branch] mlazos/cudagraphs-measurement -> origin/mlazos/cudagraphs-measurement 2025-01-24T02:40:38.7330260Z * [new branch] mlazos/data-gather -> origin/mlazos/data-gather 2025-01-24T02:40:38.7332330Z * [new branch] mlazos/data-ptrs2 -> origin/mlazos/data-ptrs2 2025-01-24T02:40:38.7334200Z * [new branch] mlazos/data-ptrs3 -> origin/mlazos/data-ptrs3 2025-01-24T02:40:38.7336370Z * [new branch] mlazos/dataclass-proxy -> origin/mlazos/dataclass-proxy 2025-01-24T02:40:38.7338440Z * [new branch] mlazos/disable-closures -> origin/mlazos/disable-closures 2025-01-24T02:40:38.7340720Z * [new branch] mlazos/disable-subclass -> origin/mlazos/disable-subclass 2025-01-24T02:40:38.7342770Z * [new branch] mlazos/disabled-opt -> origin/mlazos/disabled-opt 2025-01-24T02:40:38.7344910Z * [new branch] mlazos/env-fix -> origin/mlazos/env-fix 2025-01-24T02:40:38.7347010Z * [new branch] mlazos/exp -> origin/mlazos/exp 2025-01-24T02:40:38.7349320Z * [new branch] mlazos/exp_disable -> origin/mlazos/exp_disable 2025-01-24T02:40:38.7351410Z * [new branch] mlazos/faster -> origin/mlazos/faster 2025-01-24T02:40:38.7354260Z * [new branch] mlazos/faster2 -> origin/mlazos/faster2 2025-01-24T02:40:38.7362330Z * [new branch] mlazos/fe-copy -> origin/mlazos/fe-copy 2025-01-24T02:40:38.7367350Z * [new branch] mlazos/foreach-copy-test -> origin/mlazos/foreach-copy-test 2025-01-24T02:40:38.7375050Z * [new branch] mlazos/foreach-fuse-opts -> origin/mlazos/foreach-fuse-opts 2025-01-24T02:40:38.7379960Z * [new branch] mlazos/foreach-op -> origin/mlazos/foreach-op 2025-01-24T02:40:38.7388810Z * [new branch] mlazos/foreach-reds -> origin/mlazos/foreach-reds 2025-01-24T02:40:38.7393440Z * [new branch] mlazos/freezing -> origin/mlazos/freezing 2025-01-24T02:40:38.7401630Z * [new branch] mlazos/fuse-cat -> origin/mlazos/fuse-cat 2025-01-24T02:40:38.7406760Z * [new branch] mlazos/gen-foreach -> origin/mlazos/gen-foreach 2025-01-24T02:40:38.7414210Z * [new branch] mlazos/h-comp -> origin/mlazos/h-comp 2025-01-24T02:40:38.7418840Z * [new branch] mlazos/h-comp2 -> origin/mlazos/h-comp2 2025-01-24T02:40:38.7427270Z * [new branch] mlazos/init-per-param -> origin/mlazos/init-per-param 2025-01-24T02:40:38.7431110Z * [new branch] mlazos/init_per_param -> origin/mlazos/init_per_param 2025-01-24T02:40:38.7439340Z * [new branch] mlazos/less-guards -> origin/mlazos/less-guards 2025-01-24T02:40:38.7446720Z * [new branch] mlazos/log-test-fix -> origin/mlazos/log-test-fix 2025-01-24T02:40:38.7455810Z * [new branch] mlazos/lr-composibility -> origin/mlazos/lr-composibility 2025-01-24T02:40:38.7472670Z * [new branch] mlazos/main-test-enablement -> origin/mlazos/main-test-enablement 2025-01-24T02:40:38.7489520Z * [new branch] mlazos/main2 -> origin/mlazos/main2 2025-01-24T02:40:38.7503470Z * [new branch] mlazos/main_test -> origin/mlazos/main_test 2025-01-24T02:40:38.7516570Z * [new branch] mlazos/mcg -> origin/mlazos/mcg 2025-01-24T02:40:38.7529340Z * [new branch] mlazos/mcg2 -> origin/mlazos/mcg2 2025-01-24T02:40:38.7538650Z * [new branch] mlazos/meta-guards -> origin/mlazos/meta-guards 2025-01-24T02:40:38.7548500Z * [new branch] mlazos/mlazos/ck2 -> origin/mlazos/mlazos/ck2 2025-01-24T02:40:38.7555560Z * [new branch] mlazos/mlazos/clean -> origin/mlazos/mlazos/clean 2025-01-24T02:40:38.7563130Z * [new branch] mlazos/mlazos/faster2 -> origin/mlazos/mlazos/faster2 2025-01-24T02:40:38.7565120Z * [new branch] mlazos/mlazos/foreach-map-adam -> origin/mlazos/mlazos/foreach-map-adam 2025-01-24T02:40:38.7572820Z * [new branch] mlazos/mlazos/subclass-test -> origin/mlazos/mlazos/subclass-test 2025-01-24T02:40:38.7588190Z * [new branch] mlazos/mlazos/tf-mode-backup -> origin/mlazos/mlazos/tf-mode-backup 2025-01-24T02:40:38.7590040Z * [new branch] mlazos/mlazos/tf-trace-full -> origin/mlazos/mlazos/tf-trace-full 2025-01-24T02:40:38.7597990Z * [new branch] mlazos/mlazos/tf-trace-obj-tensors -> origin/mlazos/mlazos/tf-trace-obj-tensors 2025-01-24T02:40:38.7604240Z * [new branch] mlazos/mod-fix -> origin/mlazos/mod-fix 2025-01-24T02:40:38.7612060Z * [new branch] mlazos/more-tests -> origin/mlazos/more-tests 2025-01-24T02:40:38.7619370Z * [new branch] mlazos/mutable-backup -> origin/mlazos/mutable-backup 2025-01-24T02:40:38.7626880Z * [new branch] mlazos/mv-tfo -> origin/mlazos/mv-tfo 2025-01-24T02:40:38.7628590Z * [new branch] mlazos/nadam-updates -> origin/mlazos/nadam-updates 2025-01-24T02:40:38.7636260Z * [new branch] mlazos/names -> origin/mlazos/names 2025-01-24T02:40:38.7643130Z * [new branch] mlazos/no-cpp -> origin/mlazos/no-cpp 2025-01-24T02:40:38.7651540Z * [new branch] mlazos/no-init-group-handling -> origin/mlazos/no-init-group-handling 2025-01-24T02:40:38.7659680Z * [new branch] mlazos/op-investigation -> origin/mlazos/op-investigation 2025-01-24T02:40:38.7668230Z * [new branch] mlazos/opt-bench-exp2 -> origin/mlazos/opt-bench-exp2 2025-01-24T02:40:38.7685870Z * [new branch] mlazos/opt-bench2 -> origin/mlazos/opt-bench2 2025-01-24T02:40:38.7711210Z * [new branch] mlazos/opt-bench3 -> origin/mlazos/opt-bench3 2025-01-24T02:40:38.7718910Z * [new branch] mlazos/opt-incr -> origin/mlazos/opt-incr 2025-01-24T02:40:38.7726990Z * [new branch] mlazos/opt-recipe -> origin/mlazos/opt-recipe 2025-01-24T02:40:38.7728850Z * [new branch] mlazos/opt-slowdown -> origin/mlazos/opt-slowdown 2025-01-24T02:40:38.7735960Z * [new branch] mlazos/opt-users -> origin/mlazos/opt-users 2025-01-24T02:40:38.7750820Z * [new branch] mlazos/proxy-ctors -> origin/mlazos/proxy-ctors 2025-01-24T02:40:38.7752760Z * [new branch] mlazos/proxy-opt -> origin/mlazos/proxy-opt 2025-01-24T02:40:38.7759390Z * [new branch] mlazos/pytest-3 -> origin/mlazos/pytest-3 2025-01-24T02:40:38.7767620Z * [new branch] mlazos/restart -> origin/mlazos/restart 2025-01-24T02:40:38.7775620Z * [new branch] mlazos/rm-copy -> origin/mlazos/rm-copy 2025-01-24T02:40:38.7782560Z * [new branch] mlazos/rm-thunkify -> origin/mlazos/rm-thunkify 2025-01-24T02:40:38.7791240Z * [new branch] mlazos/sdpa-driss -> origin/mlazos/sdpa-driss 2025-01-24T02:40:38.7793300Z * [new branch] mlazos/spec-api -> origin/mlazos/spec-api 2025-01-24T02:40:38.7801010Z * [new branch] mlazos/static-inputs-log -> origin/mlazos/static-inputs-log 2025-01-24T02:40:38.7807860Z * [new branch] mlazos/subclass-test -> origin/mlazos/subclass-test 2025-01-24T02:40:38.7814660Z * [new branch] mlazos/tc-fix -> origin/mlazos/tc-fix 2025-01-24T02:40:38.7822260Z * [new branch] mlazos/td-fix2 -> origin/mlazos/td-fix2 2025-01-24T02:40:38.7830750Z * [new branch] mlazos/tensor-hasattr2 -> origin/mlazos/tensor-hasattr2 2025-01-24T02:40:38.7832680Z * [new branch] mlazos/tensor-inherit-backup -> origin/mlazos/tensor-inherit-backup 2025-01-24T02:40:38.7840150Z * [new branch] mlazos/tensor-like-fix -> origin/mlazos/tensor-like-fix 2025-01-24T02:40:38.7847960Z * [new branch] mlazos/tensor-lr -> origin/mlazos/tensor-lr 2025-01-24T02:40:38.7874490Z * [new branch] mlazos/tensor-lr2 -> origin/mlazos/tensor-lr2 2025-01-24T02:40:38.7891720Z * [new branch] mlazos/tf-inherit -> origin/mlazos/tf-inherit 2025-01-24T02:40:38.7900970Z * [new branch] mlazos/tf-mode -> origin/mlazos/tf-mode 2025-01-24T02:40:38.7907930Z * [new branch] mlazos/tf-mode-backup2 -> origin/mlazos/tf-mode-backup2 2025-01-24T02:40:38.7915410Z * [new branch] mlazos/tf-mode-reland -> origin/mlazos/tf-mode-reland 2025-01-24T02:40:38.7923280Z * [new branch] mlazos/tf-mode-reland2 -> origin/mlazos/tf-mode-reland2 2025-01-24T02:40:38.7926340Z * [new branch] mlazos/tf-mode-reland3 -> origin/mlazos/tf-mode-reland3 2025-01-24T02:40:38.7932440Z * [new branch] mlazos/tf-refactor -> origin/mlazos/tf-refactor 2025-01-24T02:40:38.7941360Z * [new branch] mlazos/tf-subclass-stack -> origin/mlazos/tf-subclass-stack 2025-01-24T02:40:38.7948760Z * [new branch] mlazos/tf-trace-full -> origin/mlazos/tf-trace-full 2025-01-24T02:40:38.7952490Z * [new branch] mlazos/tf-trace-unified -> origin/mlazos/tf-trace-unified 2025-01-24T02:40:38.7965210Z * [new branch] mlazos/tune-proto -> origin/mlazos/tune-proto 2025-01-24T02:40:38.7970520Z * [new branch] mlazos/ty-promo -> origin/mlazos/ty-promo 2025-01-24T02:40:38.7982660Z * [new branch] mlazos/vary-beta -> origin/mlazos/vary-beta 2025-01-24T02:40:38.7984200Z * [new branch] mlazos/vary-beta2 -> origin/mlazos/vary-beta2 2025-01-24T02:40:38.7991500Z * [new branch] mlazos/vsc-fix2 -> origin/mlazos/vsc-fix2 2025-01-24T02:40:38.7996810Z * [new branch] mlazos/vscode-fix -> origin/mlazos/vscode-fix 2025-01-24T02:40:38.8004900Z * [new branch] mlazos/weird-perf1 -> origin/mlazos/weird-perf1 2025-01-24T02:40:38.8010660Z * [new branch] mlee8/aot_large_weight -> origin/mlee8/aot_large_weight 2025-01-24T02:40:38.8017810Z * [new branch] mod_guards1 -> origin/mod_guards1 2025-01-24T02:40:38.8022930Z * [new branch] mod_guards3 -> origin/mod_guards3 2025-01-24T02:40:38.8031800Z * [new branch] moderniz29_cyy -> origin/moderniz29_cyy 2025-01-24T02:40:38.8035490Z * [new branch] move_model_to_eval_2.1 -> origin/move_model_to_eval_2.1 2025-01-24T02:40:38.8078320Z * [new branch] mps-linear-1d -> origin/mps-linear-1d 2025-01-24T02:40:38.8088750Z * [new branch] msaroufim-patch-10 -> origin/msaroufim-patch-10 2025-01-24T02:40:38.8096290Z * [new branch] msaroufim-patch-11 -> origin/msaroufim-patch-11 2025-01-24T02:40:38.8104620Z * [new branch] msaroufim-patch-12 -> origin/msaroufim-patch-12 2025-01-24T02:40:38.8111630Z * [new branch] msaroufim-patch-13 -> origin/msaroufim-patch-13 2025-01-24T02:40:38.8119440Z * [new branch] msaroufim-patch-14 -> origin/msaroufim-patch-14 2025-01-24T02:40:38.8128060Z * [new branch] msaroufim-patch-7 -> origin/msaroufim-patch-7 2025-01-24T02:40:38.8135210Z * [new branch] msaroufim-patch-8 -> origin/msaroufim-patch-8 2025-01-24T02:40:38.8139900Z * [new branch] msaroufim-patch-9 -> origin/msaroufim-patch-9 2025-01-24T02:40:38.8148100Z * [new branch] msaroufim/bdfix -> origin/msaroufim/bdfix 2025-01-24T02:40:38.8153730Z * [new branch] msaroufim/cache -> origin/msaroufim/cache 2025-01-24T02:40:38.8161760Z * [new branch] msaroufim/dtensorfusedadam -> origin/msaroufim/dtensorfusedadam 2025-01-24T02:40:38.8170030Z * [new branch] msaroufim/fixexpected -> origin/msaroufim/fixexpected 2025-01-24T02:40:38.8178130Z * [new branch] msaroufim/fsspecindcache -> origin/msaroufim/fsspecindcache 2025-01-24T02:40:38.8180040Z * [new branch] msaroufim/sdbf16fix -> origin/msaroufim/sdbf16fix 2025-01-24T02:40:38.8187760Z * [new branch] msaroufim/typeind10 -> origin/msaroufim/typeind10 2025-01-24T02:40:38.8195230Z * [new branch] msaroufim/warn_once -> origin/msaroufim/warn_once 2025-01-24T02:40:38.8201250Z * [new branch] mypy_fix -> origin/mypy_fix 2025-01-24T02:40:38.8208860Z * [new branch] nestedfairseq2ops1 -> origin/nestedfairseq2ops1 2025-01-24T02:40:38.8216750Z * [new branch] new-batch-norm -> origin/new-batch-norm 2025-01-24T02:40:38.8218760Z * [new branch] new_branch -> origin/new_branch 2025-01-24T02:40:38.8225990Z * [new branch] new_guard_system -> origin/new_guard_system 2025-01-24T02:40:38.8241990Z * [new branch] ngimel/bits -> origin/ngimel/bits 2025-01-24T02:40:38.8245610Z * [new branch] ngimel/disable_rng_fbcode -> origin/ngimel/disable_rng_fbcode 2025-01-24T02:40:38.8252800Z * [new branch] ngimel/random_fix -> origin/ngimel/random_fix 2025-01-24T02:40:38.8260580Z * [new branch] ngimel/randperm_fix -> origin/ngimel/randperm_fix 2025-01-24T02:40:38.8262560Z * [new branch] ngimel/release_randperm -> origin/ngimel/release_randperm 2025-01-24T02:40:38.8270310Z * [new branch] ngimel/scaled_mm_coop -> origin/ngimel/scaled_mm_coop 2025-01-24T02:40:38.8278520Z * [new branch] ngimel/topk -> origin/ngimel/topk 2025-01-24T02:40:38.8285750Z * [new branch] ngimel/topk2 -> origin/ngimel/topk2 2025-01-24T02:40:38.8293990Z * [new branch] nightly -> origin/nightly 2025-01-24T02:40:38.8296470Z * [new branch] nikitaved/linalg_codeowners -> origin/nikitaved/linalg_codeowners 2025-01-24T02:40:38.8303020Z * [new branch] nikitaved/solve_doc_update -> origin/nikitaved/solve_doc_update 2025-01-24T02:40:38.8311470Z * [new branch] offline -> origin/offline 2025-01-24T02:40:38.8318050Z * [new branch] on_completion -> origin/on_completion 2025-01-24T02:40:38.8325980Z * [new branch] orig/release/1.10 -> origin/orig/release/1.10 2025-01-24T02:40:38.8333870Z * [new branch] orig/release/1.11 -> origin/orig/release/1.11 2025-01-24T02:40:38.8335670Z * [new branch] orig/release/1.12 -> origin/orig/release/1.12 2025-01-24T02:40:38.8343560Z * [new branch] orig/release/1.13 -> origin/orig/release/1.13 2025-01-24T02:40:38.8350980Z * [new branch] orig/release/1.6 -> origin/orig/release/1.6 2025-01-24T02:40:38.8358810Z * [new branch] orig/release/1.7 -> origin/orig/release/1.7 2025-01-24T02:40:38.8367030Z * [new branch] orig/release/1.8 -> origin/orig/release/1.8 2025-01-24T02:40:38.8375100Z * [new branch] orig/release/1.9 -> origin/orig/release/1.9 2025-01-24T02:40:38.8376890Z * [new branch] orig/release/2.0 -> origin/orig/release/2.0 2025-01-24T02:40:38.8384550Z * [new branch] orig/release/2.1 -> origin/orig/release/2.1 2025-01-24T02:40:38.8391600Z * [new branch] orig/release/2.2 -> origin/orig/release/2.2 2025-01-24T02:40:38.8398990Z * [new branch] orig/release/2.3 -> origin/orig/release/2.3 2025-01-24T02:40:38.8406570Z * [new branch] orig/release/2.4 -> origin/orig/release/2.4 2025-01-24T02:40:38.8415190Z * [new branch] orig/release/2.5 -> origin/orig/release/2.5 2025-01-24T02:40:38.8417080Z * [new branch] orig/release/2.6 -> origin/orig/release/2.6 2025-01-24T02:40:38.8424600Z * [new branch] origin/gh/stroxler/1/head -> origin/origin/gh/stroxler/1/head 2025-01-24T02:40:38.8431440Z * [new branch] origin/voz/serde -> origin/origin/voz/serde 2025-01-24T02:40:38.8437680Z * [new branch] oulgen/fx_graph -> origin/oulgen/fx_graph 2025-01-24T02:40:38.8445710Z * [new branch] palic_hotfix -> origin/palic_hotfix 2025-01-24T02:40:38.8453440Z * [new branch] parallel_cat -> origin/parallel_cat 2025-01-24T02:40:38.8455270Z * [new branch] parallel_reduce -> origin/parallel_reduce 2025-01-24T02:40:38.8463050Z * [new branch] patch_up_signature -> origin/patch_up_signature 2025-01-24T02:40:38.8470650Z * [new branch] pca2 -> origin/pca2 2025-01-24T02:40:38.8477590Z * [new branch] peterbell10/null-change -> origin/peterbell10/null-change 2025-01-24T02:40:38.8482230Z * [new branch] pianpwk/dim_hint_ranges -> origin/pianpwk/dim_hint_ranges 2025-01-24T02:40:38.8490700Z * [new branch] pianpwk/dynamic_shapes_api_doc_12_10 -> origin/pianpwk/dynamic_shapes_api_doc_12_10 2025-01-24T02:40:38.8495690Z * [new branch] pianpwk/dynamo_full_scalar -> origin/pianpwk/dynamo_full_scalar 2025-01-24T02:40:38.8504070Z * [new branch] pianpwk/meta_sdpa_for_cpu -> origin/pianpwk/meta_sdpa_for_cpu 2025-01-24T02:40:38.8510090Z * [new branch] pianpwk/pre_forward_hook -> origin/pianpwk/pre_forward_hook 2025-01-24T02:40:38.8517730Z * [new branch] pianpwk/preserve_dynamic_markers -> origin/pianpwk/preserve_dynamic_markers 2025-01-24T02:40:38.8527250Z * [new branch] pianpwk/real_tensor_prop_3 -> origin/pianpwk/real_tensor_prop_3 2025-01-24T02:40:38.8531960Z * [new branch] pianpwk/serdes_logging -> origin/pianpwk/serdes_logging 2025-01-24T02:40:38.8540240Z * [new branch] pianpwk/symbol_provenance_draft -> origin/pianpwk/symbol_provenance_draft 2025-01-24T02:40:38.8547520Z * [new branch] pianpwk/symbol_provenance_v1 -> origin/pianpwk/symbol_provenance_v1 2025-01-24T02:40:38.8554590Z * [new branch] pianpwk/sympy_trunc_float_2 -> origin/pianpwk/sympy_trunc_float_2 2025-01-24T02:40:38.8561950Z * [new branch] pianpwk/try_deregister_hooks -> origin/pianpwk/try_deregister_hooks 2025-01-24T02:40:38.8569970Z * [new branch] plain-metal-mul-kernel -> origin/plain-metal-mul-kernel 2025-01-24T02:40:38.8573210Z * [new branch] pr-cancel-smol -> origin/pr-cancel-smol 2025-01-24T02:40:38.8578500Z * [new branch] pr/131860 -> origin/pr/131860 2025-01-24T02:40:38.8587340Z * [new branch] prepare-android-artifacts -> origin/prepare-android-artifacts 2025-01-24T02:40:38.8594400Z * [new branch] profiler_triton_kwargs -> origin/profiler_triton_kwargs 2025-01-24T02:40:38.8600860Z * [new branch] pt-debug-cpu0 -> origin/pt-debug-cpu0 2025-01-24T02:40:38.8608890Z * [new branch] pt-opt-cuda3 -> origin/pt-opt-cuda3 2025-01-24T02:40:38.8612520Z * [new branch] pt2-torchrec -> origin/pt2-torchrec 2025-01-24T02:40:38.8618950Z * [new branch] python_compiled_autograd -> origin/python_compiled_autograd 2025-01-24T02:40:38.8627560Z * [new branch] qat-conv-bn-1d -> origin/qat-conv-bn-1d 2025-01-24T02:40:38.8638760Z * [new branch] qat-remove-bias-temp -> origin/qat-remove-bias-temp 2025-01-24T02:40:38.8641190Z * [new branch] qat_cudnn_batchnorm -> origin/qat_cudnn_batchnorm 2025-01-24T02:40:38.8648770Z * [new branch] qat_preserve_source_fn_stack -> origin/qat_preserve_source_fn_stack 2025-01-24T02:40:38.8655610Z * [new branch] qchip/export-D54134695 -> origin/qchip/export-D54134695 2025-01-24T02:40:38.8658540Z * [new branch] record-ghstack-deps-in-commit-msg -> origin/record-ghstack-deps-in-commit-msg 2025-01-24T02:40:38.8665410Z * [new branch] reduce1 -> origin/reduce1 2025-01-24T02:40:38.8674520Z * [new branch] reenable-sgd-benchmark -> origin/reenable-sgd-benchmark 2025-01-24T02:40:38.8682620Z * [new branch] refactor-adamw -> origin/refactor-adamw 2025-01-24T02:40:38.8690250Z * [new branch] release/1.10 -> origin/release/1.10 2025-01-24T02:40:38.8695470Z * [new branch] release/1.11 -> origin/release/1.11 2025-01-24T02:40:38.8704040Z * [new branch] release/1.12 -> origin/release/1.12 2025-01-24T02:40:38.8712020Z * [new branch] release/1.13 -> origin/release/1.13 2025-01-24T02:40:38.8716900Z * [new branch] release/1.4 -> origin/release/1.4 2025-01-24T02:40:38.8724550Z * [new branch] release/1.4.1 -> origin/release/1.4.1 2025-01-24T02:40:38.8730390Z * [new branch] release/1.5 -> origin/release/1.5 2025-01-24T02:40:38.8737710Z * [new branch] release/1.6 -> origin/release/1.6 2025-01-24T02:40:38.8742580Z * [new branch] release/1.7 -> origin/release/1.7 2025-01-24T02:40:38.8750720Z * [new branch] release/1.8 -> origin/release/1.8 2025-01-24T02:40:38.8755400Z * [new branch] release/1.9 -> origin/release/1.9 2025-01-24T02:40:38.8763680Z * [new branch] release/2.0 -> origin/release/2.0 2025-01-24T02:40:38.8768690Z * [new branch] release/2.1 -> origin/release/2.1 2025-01-24T02:40:38.8777280Z * [new branch] release/2.2 -> origin/release/2.2 2025-01-24T02:40:38.8784780Z * [new branch] release/2.3 -> origin/release/2.3 2025-01-24T02:40:38.8790100Z * [new branch] release/2.4 -> origin/release/2.4 2025-01-24T02:40:38.8797570Z * [new branch] release/2.5 -> origin/release/2.5 2025-01-24T02:40:38.8802420Z * [new branch] release/2.6 -> origin/release/2.6 2025-01-24T02:40:38.8811700Z * [new branch] release/3.2.x -> origin/release/3.2.x 2025-01-24T02:40:38.8816340Z * [new branch] release_notes -> origin/release_notes 2025-01-24T02:40:38.8824290Z * [new branch] remove-edit-on-github -> origin/remove-edit-on-github 2025-01-24T02:40:38.8829130Z * [new branch] remove_add_runtime -> origin/remove_add_runtime 2025-01-24T02:40:38.8837300Z * [new branch] remove_global_ns -> origin/remove_global_ns 2025-01-24T02:40:38.8841770Z * [new branch] remove_workflow -> origin/remove_workflow 2025-01-24T02:40:38.8850210Z * [new branch] rename_transform -> origin/rename_transform 2025-01-24T02:40:38.8854630Z * [new branch] rename_validate -> origin/rename_validate 2025-01-24T02:40:38.8863510Z * [new branch] request_english -> origin/request_english 2025-01-24T02:40:38.8870540Z * [new branch] requires_grad_fix -> origin/requires_grad_fix 2025-01-24T02:40:38.8879110Z * [new branch] revert-111036-skylion007/backport-2-1-1-2023-10-11-0 -> origin/revert-111036-skylion007/backport-2-1-1-2023-10-11-0 2025-01-24T02:40:38.8880870Z * [new branch] revert-112125 -> origin/revert-112125 2025-01-24T02:40:38.8887930Z * [new branch] revert-131069-gh/krzysztofjordan/1/head -> origin/revert-131069-gh/krzysztofjordan/1/head 2025-01-24T02:40:38.8895590Z * [new branch] revert-131469-gh/andrewor14/51/head -> origin/revert-131469-gh/andrewor14/51/head 2025-01-24T02:40:38.8901390Z * [new branch] revert_realize_input_ExternKernel -> origin/revert_realize_input_ExternKernel 2025-01-24T02:40:38.8909180Z * [new branch] richard/init_types -> origin/richard/init_types 2025-01-24T02:40:38.8916950Z * [new branch] richard/more_types -> origin/richard/more_types 2025-01-24T02:40:38.8919050Z * [new branch] rocm-triton-nightly-wheelfix -> origin/rocm-triton-nightly-wheelfix 2025-01-24T02:40:38.8926400Z * [new branch] rocm-triton-wheel-pinupdate-21 -> origin/rocm-triton-wheel-pinupdate-21 2025-01-24T02:40:38.8934030Z * [new branch] rocm_ck_sdpa -> origin/rocm_ck_sdpa 2025-01-24T02:40:38.8942480Z * [new branch] rohan-varma-patch-13 -> origin/rohan-varma-patch-13 2025-01-24T02:40:38.8950320Z * [new branch] rohan-varma-patch-14 -> origin/rohan-varma-patch-14 2025-01-24T02:40:38.8957840Z * [new branch] rohan-varma-patch-15 -> origin/rohan-varma-patch-15 2025-01-24T02:40:38.8959920Z * [new branch] rohan-varma-patch-16 -> origin/rohan-varma-patch-16 2025-01-24T02:40:38.8973900Z * [new branch] rprop-playground -> origin/rprop-playground 2025-01-24T02:40:38.8976000Z * [new branch] run-ios-test-device-farm -> origin/run-ios-test-device-farm 2025-01-24T02:40:38.8983960Z * [new branch] ryanguo99/cleanup-dynamo-expected-failures -> origin/ryanguo99/cleanup-dynamo-expected-failures 2025-01-24T02:40:38.8991500Z * [new branch] ryanguo99/fix-closure-var -> origin/ryanguo99/fix-closure-var 2025-01-24T02:40:38.8997280Z * [new branch] rzou/cache_name -> origin/rzou/cache_name 2025-01-24T02:40:38.9005480Z * [new branch] rzou/faketensor_bench -> origin/rzou/faketensor_bench 2025-01-24T02:40:38.9013290Z * [new branch] rzou/fix -> origin/rzou/fix 2025-01-24T02:40:38.9015360Z * [new branch] rzou/fix2 -> origin/rzou/fix2 2025-01-24T02:40:38.9022880Z * [new branch] rzou/njt -> origin/rzou/njt 2025-01-24T02:40:38.9030950Z * [new branch] rzou/operator -> origin/rzou/operator 2025-01-24T02:40:38.9038930Z * [new branch] rzou/out_dtype_decomp -> origin/rzou/out_dtype_decomp 2025-01-24T02:40:38.9045580Z * [new branch] rzou/pca -> origin/rzou/pca 2025-01-24T02:40:38.9054050Z * [new branch] rzou/pipe_split -> origin/rzou/pipe_split 2025-01-24T02:40:38.9060720Z * [new branch] rzou/realprop -> origin/rzou/realprop 2025-01-24T02:40:38.9069320Z * [new branch] rzou/setup_context -> origin/rzou/setup_context 2025-01-24T02:40:38.9076670Z * [new branch] safe-rollout -> origin/safe-rollout 2025-01-24T02:40:38.9085860Z * [new branch] sanchitintel/weird_thing_with_test_cpu_select_algorithm -> origin/sanchitintel/weird_thing_with_test_cpu_select_algorithm 2025-01-24T02:40:38.9091920Z * [new branch] sanchitj/remove_duplicate_line_from_freezing.py -> origin/sanchitj/remove_duplicate_line_from_freezing.py 2025-01-24T02:40:38.9099650Z * [new branch] sdpa_autocast_cpu -> origin/sdpa_autocast_cpu 2025-01-24T02:40:38.9101860Z * [new branch] sdpa_base -> origin/sdpa_base 2025-01-24T02:40:38.9109420Z * [new branch] sdym/2.5.1 -> origin/sdym/2.5.1 2025-01-24T02:40:38.9117060Z * [new branch] sdym/chp -> origin/sdym/chp 2025-01-24T02:40:38.9124420Z * [new branch] sdym/chp2 -> origin/sdym/chp2 2025-01-24T02:40:38.9130790Z * [new branch] sdym/docker-python-3.8 -> origin/sdym/docker-python-3.8 2025-01-24T02:40:38.9139220Z * [new branch] sdym/jit-attribute -> origin/sdym/jit-attribute 2025-01-24T02:40:38.9147880Z * [new branch] sdym/revert-107846 -> origin/sdym/revert-107846 2025-01-24T02:40:38.9149890Z * [new branch] sdym/revert-109859 -> origin/sdym/revert-109859 2025-01-24T02:40:38.9157110Z * [new branch] sdym/skip-asan -> origin/sdym/skip-asan 2025-01-24T02:40:38.9164160Z * [new branch] sdym/skipifrocm -> origin/sdym/skipifrocm 2025-01-24T02:40:38.9172000Z * [new branch] sdym/test_quantized_op -> origin/sdym/test_quantized_op 2025-01-24T02:40:38.9179730Z * [new branch] sdym/todo-docstring -> origin/sdym/todo-docstring 2025-01-24T02:40:38.9187620Z * [new branch] sdym/torchfix -> origin/sdym/torchfix 2025-01-24T02:40:38.9189670Z * [new branch] sdym/torchvision-pretrained -> origin/sdym/torchvision-pretrained 2025-01-24T02:40:38.9196850Z * [new branch] sdym/typed-storage -> origin/sdym/typed-storage 2025-01-24T02:40:38.9203720Z * [new branch] sdym/wno -> origin/sdym/wno 2025-01-24T02:40:38.9211560Z * [new branch] serialize -> origin/serialize 2025-01-24T02:40:38.9219800Z * [new branch] share_and_pin_fork -> origin/share_and_pin_fork 2025-01-24T02:40:38.9227820Z * [new branch] shengf/fx-xform-perf -> origin/shengf/fx-xform-perf 2025-01-24T02:40:38.9229620Z * [new branch] shikaili_fp8_allgather -> origin/shikaili_fp8_allgather 2025-01-24T02:40:38.9237370Z * [new branch] shunting-add-reduction-config -> origin/shunting-add-reduction-config 2025-01-24T02:40:38.9244630Z * [new branch] shunting-add-reduction-config-2 -> origin/shunting-add-reduction-config-2 2025-01-24T02:40:38.9257780Z * [new branch] shunting-add-reduction-config-3 -> origin/shunting-add-reduction-config-3 2025-01-24T02:40:38.9264790Z * [new branch] shunting-avoid-stale-cache -> origin/shunting-avoid-stale-cache 2025-01-24T02:40:38.9266770Z * [new branch] shunting-benchmark-fusion -> origin/shunting-benchmark-fusion 2025-01-24T02:40:38.9271850Z * [new branch] shunting-benchmark-fusion-2 -> origin/shunting-benchmark-fusion-2 2025-01-24T02:40:38.9278780Z * [new branch] shunting-benchmark-fusion-3 -> origin/shunting-benchmark-fusion-3 2025-01-24T02:40:38.9281070Z * [new branch] shunting-benchmark-fusion-4 -> origin/shunting-benchmark-fusion-4 2025-01-24T02:40:38.9288810Z * [new branch] shunting-consistent-thread-order -> origin/shunting-consistent-thread-order 2025-01-24T02:40:38.9297920Z * [new branch] shunting-consistent-thread-order-2 -> origin/shunting-consistent-thread-order-2 2025-01-24T02:40:38.9305170Z * [new branch] shunting-consistent-thread-order-3 -> origin/shunting-consistent-thread-order-3 2025-01-24T02:40:38.9312730Z * [new branch] shunting-inductor-change-for-triton -> origin/shunting-inductor-change-for-triton 2025-01-24T02:40:38.9321030Z * [new branch] shunting-loaf-bm-3 -> origin/shunting-loaf-bm-3 2025-01-24T02:40:38.9322810Z * [new branch] shunting-loaf-bm-4 -> origin/shunting-loaf-bm-4 2025-01-24T02:40:38.9330150Z * [new branch] shunting-loaf-bm-5 -> origin/shunting-loaf-bm-5 2025-01-24T02:40:38.9338020Z * [new branch] shunting-loaf-bm-6 -> origin/shunting-loaf-bm-6 2025-01-24T02:40:38.9345080Z * [new branch] shunting-loop-ordering-after-fusion -> origin/shunting-loop-ordering-after-fusion 2025-01-24T02:40:38.9352780Z * [new branch] shunting-loop-ordering-after-fusion-2 -> origin/shunting-loop-ordering-after-fusion-2 2025-01-24T02:40:38.9355470Z * [new branch] shunting-loop-ordering-after-fusion-3 -> origin/shunting-loop-ordering-after-fusion-3 2025-01-24T02:40:38.9363120Z * [new branch] shunting-loop-ordering-after-fusion-bm -> origin/shunting-loop-ordering-after-fusion-bm 2025-01-24T02:40:38.9371300Z * [new branch] shunting-loop-ordering-after-fusion-bm-2 -> origin/shunting-loop-ordering-after-fusion-bm-2 2025-01-24T02:40:38.9378850Z * [new branch] shunting-multi-kernel-2 -> origin/shunting-multi-kernel-2 2025-01-24T02:40:38.9386600Z * [new branch] shunting-multi-kernel-3 -> origin/shunting-multi-kernel-3 2025-01-24T02:40:38.9395390Z * [new branch] shunting-scale-down-rblock -> origin/shunting-scale-down-rblock 2025-01-24T02:40:38.9404820Z * [new branch] shunting-tigher-upperbound -> origin/shunting-tigher-upperbound 2025-01-24T02:40:38.9412180Z * [new branch] shunting-triton-pin-update -> origin/shunting-triton-pin-update 2025-01-24T02:40:38.9418920Z * [new branch] shunting-triton-pin-update-2 -> origin/shunting-triton-pin-update-2 2025-01-24T02:40:38.9421610Z * [new branch] shunting-triton-pin-update-3 -> origin/shunting-triton-pin-update-3 2025-01-24T02:40:38.9428950Z * [new branch] shunting-triton-pin-update-4 -> origin/shunting-triton-pin-update-4 2025-01-24T02:40:38.9438110Z * [new branch] shunting-triton-pin-update-5 -> origin/shunting-triton-pin-update-5 2025-01-24T02:40:38.9444880Z * [new branch] simplify-fq-per-channel -> origin/simplify-fq-per-channel 2025-01-24T02:40:38.9451540Z * [new branch] soulitzer/refactor-njt -> origin/soulitzer/refactor-njt 2025-01-24T02:40:38.9456040Z * [new branch] source_fn_stack -> origin/source_fn_stack 2025-01-24T02:40:38.9464220Z * [new branch] speedup-mps-string-key -> origin/speedup-mps-string-key 2025-01-24T02:40:38.9469520Z * [new branch] sqzhang/flight4 -> origin/sqzhang/flight4 2025-01-24T02:40:38.9477790Z * [new branch] sqzhang/flight4plus -> origin/sqzhang/flight4plus 2025-01-24T02:40:38.9485980Z * [new branch] sraikund/record_funct_test -> origin/sraikund/record_funct_test 2025-01-24T02:40:38.9489080Z * [new branch] sraikund16/test -> origin/sraikund16/test 2025-01-24T02:40:38.9497500Z * [new branch] standalone -> origin/standalone 2025-01-24T02:40:38.9503280Z * [new branch] subscribe_codeowners_lucasllc -> origin/subscribe_codeowners_lucasllc 2025-01-24T02:40:38.9512350Z * [new branch] super -> origin/super 2025-01-24T02:40:38.9519850Z * [new branch] support_dequant_out_dtype -> origin/support_dequant_out_dtype 2025-01-24T02:40:38.9528090Z * [new branch] svekars-patch-6 -> origin/svekars-patch-6 2025-01-24T02:40:38.9529960Z * [new branch] svekars-patch-7 -> origin/svekars-patch-7 2025-01-24T02:40:38.9537310Z * [new branch] switch-bn -> origin/switch-bn 2025-01-24T02:40:38.9544930Z * [new branch] sympy-bottleneck-repro -> origin/sympy-bottleneck-repro 2025-01-24T02:40:38.9552350Z * [new branch] tensordict_integration -> origin/tensordict_integration 2025-01-24T02:40:38.9560470Z * [new branch] test-cast-hook -> origin/test-cast-hook 2025-01-24T02:40:38.9562370Z * [new branch] test-move-conda-builds -> origin/test-move-conda-builds 2025-01-24T02:40:38.9576460Z * [new branch] test-torchvision-install-ci -> origin/test-torchvision-install-ci 2025-01-24T02:40:38.9578940Z * [new branch] test/inductor -> origin/test/inductor 2025-01-24T02:40:38.9586440Z * [new branch] test_imdsv2 -> origin/test_imdsv2 2025-01-24T02:40:38.9594740Z * [new branch] test_od -> origin/test_od 2025-01-24T02:40:38.9602200Z * [new branch] test_od_cudnn_bn_qat_fusion -> origin/test_od_cudnn_bn_qat_fusion 2025-01-24T02:40:38.9609140Z * [new branch] tidy_mordenize_cyy -> origin/tidy_mordenize_cyy 2025-01-24T02:40:38.9617850Z * [new branch] tidy_performance_cyy -> origin/tidy_performance_cyy 2025-01-24T02:40:38.9620070Z * [new branch] torch_autograd_function_ts_fix -> origin/torch_autograd_function_ts_fix 2025-01-24T02:40:38.9626880Z * [new branch] torch_export -> origin/torch_export 2025-01-24T02:40:38.9633920Z * [new branch] torch_export_only -> origin/torch_export_only 2025-01-24T02:40:38.9642210Z * [new branch] torch_logs_improvements -> origin/torch_logs_improvements 2025-01-24T02:40:38.9651490Z * [new branch] torch_np -> origin/torch_np 2025-01-24T02:40:38.9657010Z * [new branch] torchbench-pin-commit -> origin/torchbench-pin-commit 2025-01-24T02:40:38.9660370Z * [new branch] trace_fsdp_torchtune_lora -> origin/trace_fsdp_torchtune_lora 2025-01-24T02:40:38.9665200Z * [new branch] traceable_fsdp_unit_tests -> origin/traceable_fsdp_unit_tests 2025-01-24T02:40:38.9669360Z * [new branch] transformer_name -> origin/transformer_name 2025-01-24T02:40:38.9675510Z * [new branch] tree_loop_vec_base -> origin/tree_loop_vec_base 2025-01-24T02:40:38.9683960Z * [new branch] tree_vec_base -> origin/tree_vec_base 2025-01-24T02:40:38.9691470Z * [new branch] triton-update -> origin/triton-update 2025-01-24T02:40:38.9698520Z * [new branch] triton_kernel -> origin/triton_kernel 2025-01-24T02:40:38.9705750Z * [new branch] triton_kernel_perf -> origin/triton_kernel_perf 2025-01-24T02:40:38.9713120Z * [new branch] try-speedup-docbuild -> origin/try-speedup-docbuild 2025-01-24T02:40:38.9715220Z * [new branch] type_check -> origin/type_check 2025-01-24T02:40:38.9722700Z * [new branch] type_dec -> origin/type_dec 2025-01-24T02:40:38.9731620Z * [new branch] update-audio-commit-hash/12898458761-1429-1 -> origin/update-audio-commit-hash/12898458761-1429-1 2025-01-24T02:40:38.9737880Z * [new branch] update-executorch-commit-hash/11847856213-1353-1 -> origin/update-executorch-commit-hash/11847856213-1353-1 2025-01-24T02:40:38.9745060Z * [new branch] update-executorch-commit-hash/12778861619-1419-1 -> origin/update-executorch-commit-hash/12778861619-1419-1 2025-01-24T02:40:38.9749080Z * [new branch] update-executorch-commit-hash/12820045707-1423-1 -> origin/update-executorch-commit-hash/12820045707-1423-1 2025-01-24T02:40:38.9758080Z * [new branch] update-executorch-commit-hash/12838938822-1425-1 -> origin/update-executorch-commit-hash/12838938822-1425-1 2025-01-24T02:40:38.9764230Z * [new branch] update-triton-commit-hash/7164317553-91-1 -> origin/update-triton-commit-hash/7164317553-91-1 2025-01-24T02:40:38.9770870Z * [new branch] update-vision-commit-hash/5686712198-646-1 -> origin/update-vision-commit-hash/5686712198-646-1 2025-01-24T02:40:38.9777060Z * [new branch] update-vision-commit-hash/5697383899-647-1 -> origin/update-vision-commit-hash/5697383899-647-1 2025-01-24T02:40:38.9784910Z * [new branch] update-vision-commit-hash/5703215648-648-1 -> origin/update-vision-commit-hash/5703215648-648-1 2025-01-24T02:40:38.9790310Z * [new branch] update-vision-commit-hash/5721003453-652-1 -> origin/update-vision-commit-hash/5721003453-652-1 2025-01-24T02:40:38.9797250Z * [new branch] update-vision-commit-hash/5733163916-653-1 -> origin/update-vision-commit-hash/5733163916-653-1 2025-01-24T02:40:38.9802980Z * [new branch] update-vision-commit-hash/5745082876-655-1 -> origin/update-vision-commit-hash/5745082876-655-1 2025-01-24T02:40:38.9814070Z * [new branch] update-vision-commit-hash/5756913626-656-1 -> origin/update-vision-commit-hash/5756913626-656-1 2025-01-24T02:40:38.9820090Z * [new branch] update-vision-commit-hash/5767629392-657-1 -> origin/update-vision-commit-hash/5767629392-657-1 2025-01-24T02:40:38.9827900Z * [new branch] update-vision-commit-hash/5791192212-660-1 -> origin/update-vision-commit-hash/5791192212-660-1 2025-01-24T02:40:38.9833970Z * [new branch] update-vision-commit-hash/5803321708-661-1 -> origin/update-vision-commit-hash/5803321708-661-1 2025-01-24T02:40:38.9841270Z * [new branch] update-vision-commit-hash/5815393173-662-1 -> origin/update-vision-commit-hash/5815393173-662-1 2025-01-24T02:40:38.9846800Z * [new branch] update-vision-commit-hash/5827402908-663-1 -> origin/update-vision-commit-hash/5827402908-663-1 2025-01-24T02:40:38.9854630Z * [new branch] update-vision-commit-hash/5838148554-664-1 -> origin/update-vision-commit-hash/5838148554-664-1 2025-01-24T02:40:38.9863740Z * [new branch] update-vision-commit-hash/5844184042-669-1 -> origin/update-vision-commit-hash/5844184042-669-1 2025-01-24T02:40:38.9871590Z * [new branch] update-vision-commit-hash/5850331519-670-1 -> origin/update-vision-commit-hash/5850331519-670-1 2025-01-24T02:40:38.9877590Z * [new branch] update-vision-commit-hash/5862012764-671-1 -> origin/update-vision-commit-hash/5862012764-671-1 2025-01-24T02:40:38.9886910Z * [new branch] update-vision-commit-hash/5873060393-672-1 -> origin/update-vision-commit-hash/5873060393-672-1 2025-01-24T02:40:38.9895250Z * [new branch] update-vision-commit-hash/5885149056-673-1 -> origin/update-vision-commit-hash/5885149056-673-1 2025-01-24T02:40:38.9900940Z * [new branch] update-vision-commit-hash/5897221503-674-1 -> origin/update-vision-commit-hash/5897221503-674-1 2025-01-24T02:40:38.9908090Z * [new branch] update-vision-commit-hash/5908209609-675-1 -> origin/update-vision-commit-hash/5908209609-675-1 2025-01-24T02:40:38.9915760Z * [new branch] update-vision-commit-hash/5932800208-678-1 -> origin/update-vision-commit-hash/5932800208-678-1 2025-01-24T02:40:38.9919550Z * [new branch] update-vision-commit-hash/5945368651-679-1 -> origin/update-vision-commit-hash/5945368651-679-1 2025-01-24T02:40:38.9925550Z * [new branch] update-vision-commit-hash/5957816346-680-1 -> origin/update-vision-commit-hash/5957816346-680-1 2025-01-24T02:40:38.9934300Z * [new branch] update-vision-commit-hash/5970234703-681-1 -> origin/update-vision-commit-hash/5970234703-681-1 2025-01-24T02:40:38.9940920Z * [new branch] update-vision-commit-hash/5987723897-683-1 -> origin/update-vision-commit-hash/5987723897-683-1 2025-01-24T02:40:38.9947520Z * [new branch] update-vision-commit-hash/6006315671-686-1 -> origin/update-vision-commit-hash/6006315671-686-1 2025-01-24T02:40:38.9954750Z * [new branch] update-vision-commit-hash/6018891470-687-1 -> origin/update-vision-commit-hash/6018891470-687-1 2025-01-24T02:40:38.9962260Z * [new branch] update-vision-commit-hash/6055107264-691-1 -> origin/update-vision-commit-hash/6055107264-691-1 2025-01-24T02:40:38.9965990Z * [new branch] update-vision-commit-hash/6078630218-694-1 -> origin/update-vision-commit-hash/6078630218-694-1 2025-01-24T02:40:38.9972480Z * [new branch] update-vision-commit-hash/6091086722-695-1 -> origin/update-vision-commit-hash/6091086722-695-1 2025-01-24T02:40:38.9981120Z * [new branch] update-vision-commit-hash/6116061554-699-1 -> origin/update-vision-commit-hash/6116061554-699-1 2025-01-24T02:40:38.9987880Z * [new branch] update-vision-commit-hash/6140304273-702-1 -> origin/update-vision-commit-hash/6140304273-702-1 2025-01-24T02:40:38.9995150Z * [new branch] update-vision-commit-hash/6210383723-710-1 -> origin/update-vision-commit-hash/6210383723-710-1 2025-01-24T02:40:39.0002590Z * [new branch] update-vision-commit-hash/6319671985-721-1 -> origin/update-vision-commit-hash/6319671985-721-1 2025-01-24T02:40:39.0010880Z * [new branch] update-vision-commit-hash/6345577305-723-1 -> origin/update-vision-commit-hash/6345577305-723-1 2025-01-24T02:40:39.0012830Z * [new branch] update-vision-commit-hash/6366568705-725-1 -> origin/update-vision-commit-hash/6366568705-725-1 2025-01-24T02:40:39.0019890Z * [new branch] update-vision-commit-hash/6386942932-727-1 -> origin/update-vision-commit-hash/6386942932-727-1 2025-01-24T02:40:39.0027930Z * [new branch] update-vision-commit-hash/6399845260-728-1 -> origin/update-vision-commit-hash/6399845260-728-1 2025-01-24T02:40:39.0035980Z * [new branch] update-vision-commit-hash/6412969951-729-1 -> origin/update-vision-commit-hash/6412969951-729-1 2025-01-24T02:40:39.0043900Z * [new branch] update-vision-commit-hash/6425844356-730-1 -> origin/update-vision-commit-hash/6425844356-730-1 2025-01-24T02:40:39.0053550Z * [new branch] update-vision-commit-hash/6463026337-734-1 -> origin/update-vision-commit-hash/6463026337-734-1 2025-01-24T02:40:39.0055570Z * [new branch] update-vision-commit-hash/6489506557-736-1 -> origin/update-vision-commit-hash/6489506557-736-1 2025-01-24T02:40:39.0061800Z * [new branch] update-vision-commit-hash/6520762621-739-1 -> origin/update-vision-commit-hash/6520762621-739-1 2025-01-24T02:40:39.0063630Z * [new branch] update-vision-commit-hash/6581672893-744-1 -> origin/update-vision-commit-hash/6581672893-744-1 2025-01-24T02:40:39.0070750Z * [new branch] update-vision-commit-hash/6593929043-745-1 -> origin/update-vision-commit-hash/6593929043-745-1 2025-01-24T02:40:39.0079290Z * [new branch] update-vision-commit-hash/6634009725-750-1 -> origin/update-vision-commit-hash/6634009725-750-1 2025-01-24T02:40:39.0085810Z * [new branch] update-vision-commit-hash/6673463792-754-1 -> origin/update-vision-commit-hash/6673463792-754-1 2025-01-24T02:40:39.0094880Z * [new branch] update-vision-commit-hash/6700258936-758-1 -> origin/update-vision-commit-hash/6700258936-758-1 2025-01-24T02:40:39.0101490Z * [new branch] update-vision-commit-hash/6805589684-770-1 -> origin/update-vision-commit-hash/6805589684-770-1 2025-01-24T02:40:39.0109320Z * [new branch] update-vision-commit-hash/6818989957-773-1 -> origin/update-vision-commit-hash/6818989957-773-1 2025-01-24T02:40:39.0111720Z * [new branch] update-vision-commit-hash/6830864778-774-1 -> origin/update-vision-commit-hash/6830864778-774-1 2025-01-24T02:40:39.0118850Z * [new branch] update-vision-commit-hash/6857388096-777-1 -> origin/update-vision-commit-hash/6857388096-777-1 2025-01-24T02:40:39.0128090Z * [new branch] update-vision-commit-hash/6871122584-778-1 -> origin/update-vision-commit-hash/6871122584-778-1 2025-01-24T02:40:39.0135240Z * [new branch] update-vision-commit-hash/6884505667-779-1 -> origin/update-vision-commit-hash/6884505667-779-1 2025-01-24T02:40:39.0142220Z * [new branch] update-vision-commit-hash/9010274985-1089-1 -> origin/update-vision-commit-hash/9010274985-1089-1 2025-01-24T02:40:39.0149400Z * [new branch] update-xla-commit-hash/10140112669-125-1 -> origin/update-xla-commit-hash/10140112669-125-1 2025-01-24T02:40:39.0151320Z * [new branch] update-xla-commit-hash/5711964502-56-1 -> origin/update-xla-commit-hash/5711964502-56-1 2025-01-24T02:40:39.0159760Z * [new branch] update-xla-commit-hash/5782359377-57-1 -> origin/update-xla-commit-hash/5782359377-57-1 2025-01-24T02:40:39.0168430Z * [new branch] update-xla-commit-hash/5837098370-60-1 -> origin/update-xla-commit-hash/5837098370-60-1 2025-01-24T02:40:39.0175160Z * [new branch] update-xla-commit-hash/5837494164-62-2 -> origin/update-xla-commit-hash/5837494164-62-2 2025-01-24T02:40:39.0181860Z * [new branch] update-xla-commit-hash/5853121215-70-1 -> origin/update-xla-commit-hash/5853121215-70-1 2025-01-24T02:40:39.0189680Z * [new branch] update-xla-commit-hash/5856611801-73-1 -> origin/update-xla-commit-hash/5856611801-73-1 2025-01-24T02:40:39.0192690Z * [new branch] update-xla-commit-hash/5861803330-74-1 -> origin/update-xla-commit-hash/5861803330-74-1 2025-01-24T02:40:39.0199830Z * [new branch] update-xla-commit-hash/5923384420-75-1 -> origin/update-xla-commit-hash/5923384420-75-1 2025-01-24T02:40:39.0208720Z * [new branch] update-xla-commit-hash/5997018991-76-1 -> origin/update-xla-commit-hash/5997018991-76-1 2025-01-24T02:40:39.0215470Z * [new branch] update-xla-commit-hash/6070520075-77-1 -> origin/update-xla-commit-hash/6070520075-77-1 2025-01-24T02:40:39.0222990Z * [new branch] update-xla-commit-hash/6143382673-78-1 -> origin/update-xla-commit-hash/6143382673-78-1 2025-01-24T02:40:39.0231220Z * [new branch] update-xla-commit-hash/6219563710-79-1 -> origin/update-xla-commit-hash/6219563710-79-1 2025-01-24T02:40:39.0233060Z * [new branch] update-xla-commit-hash/6296332542-80-1 -> origin/update-xla-commit-hash/6296332542-80-1 2025-01-24T02:40:39.0240050Z * [new branch] update-xla-commit-hash/6377302016-81-1 -> origin/update-xla-commit-hash/6377302016-81-1 2025-01-24T02:40:39.0246540Z * [new branch] update-xla-commit-hash/6453689944-82-1 -> origin/update-xla-commit-hash/6453689944-82-1 2025-01-24T02:40:39.0249470Z * [new branch] update-xla-commit-hash/6530489691-83-1 -> origin/update-xla-commit-hash/6530489691-83-1 2025-01-24T02:40:39.0255610Z * [new branch] update-xla-commit-hash/6610159969-84-1 -> origin/update-xla-commit-hash/6610159969-84-1 2025-01-24T02:40:39.0262270Z * [new branch] update-xla-commit-hash/6689695021-85-1 -> origin/update-xla-commit-hash/6689695021-85-1 2025-01-24T02:40:39.0271600Z * [new branch] update-xla-commit-hash/6767672412-86-1 -> origin/update-xla-commit-hash/6767672412-86-1 2025-01-24T02:40:39.0276710Z * [new branch] update-xla-commit-hash/6846986487-87-1 -> origin/update-xla-commit-hash/6846986487-87-1 2025-01-24T02:40:39.0285050Z * [new branch] update_docs_torch_multinomial_issue#125388 -> origin/update_docs_torch_multinomial_issue#125388 2025-01-24T02:40:39.0290090Z * [new branch] update_pin -> origin/update_pin 2025-01-24T02:40:39.0297750Z * [new branch] update_slow_tests_1722488736 -> origin/update_slow_tests_1722488736 2025-01-24T02:40:39.0303720Z * [new branch] update_slow_tests_1722879173 -> origin/update_slow_tests_1722879173 2025-01-24T02:40:39.0310940Z * [new branch] update_slow_tests_1734939586 -> origin/update_slow_tests_1734939586 2025-01-24T02:40:39.0318840Z * [new branch] update_slow_tests_1736149192 -> origin/update_slow_tests_1736149192 2025-01-24T02:40:39.0326330Z * [new branch] update_slow_tests_1736754002 -> origin/update_slow_tests_1736754002 2025-01-24T02:40:39.0328170Z * [new branch] update_slow_tests_1737358785 -> origin/update_slow_tests_1737358785 2025-01-24T02:40:39.0335620Z * [new branch] update_submodule_FBGEMM -> origin/update_submodule_FBGEMM 2025-01-24T02:40:39.0343910Z * [new branch] update_submodule_kineto -> origin/update_submodule_kineto 2025-01-24T02:40:39.0352220Z * [new branch] upload-test-stats-workflow-env -> origin/upload-test-stats-workflow-env 2025-01-24T02:40:39.0359190Z * [new branch] use_torch_export_3 -> origin/use_torch_export_3 2025-01-24T02:40:39.0366700Z * [new branch] v0.1.2 -> origin/v0.1.2 2025-01-24T02:40:39.0368830Z * [new branch] v1.0.1 -> origin/v1.0.1 2025-01-24T02:40:39.0375170Z * [new branch] v1.0.3 -> origin/v1.0.3 2025-01-24T02:40:39.0384030Z * [new branch] v1.1.0 -> origin/v1.1.0 2025-01-24T02:40:39.0391280Z * [new branch] v1.2.0 -> origin/v1.2.0 2025-01-24T02:40:39.0402650Z * [new branch] v1.3.0 -> origin/v1.3.0 2025-01-24T02:40:39.0406560Z * [new branch] v1.3.1 -> origin/v1.3.1 2025-01-24T02:40:39.0414690Z * [new branch] validate_fn -> origin/validate_fn 2025-01-24T02:40:39.0416770Z * [new branch] validations_2.6 -> origin/validations_2.6 2025-01-24T02:40:39.0424150Z * [new branch] vfdev-5-patch-2 -> origin/vfdev-5-patch-2 2025-01-24T02:40:39.0432140Z * [new branch] viable/strict -> origin/viable/strict 2025-01-24T02:40:39.0439500Z * [new branch] voz/always_lift -> origin/voz/always_lift 2025-01-24T02:40:39.0446950Z * [new branch] voz/compiled_autograd_hooks -> origin/voz/compiled_autograd_hooks 2025-01-24T02:40:39.0453040Z * [new branch] voz/debug_dec -> origin/voz/debug_dec 2025-01-24T02:40:39.0454820Z * [new branch] voz/fix_fsdp -> origin/voz/fix_fsdp 2025-01-24T02:40:39.0462600Z * [new branch] voz/fix_np -> origin/voz/fix_np 2025-01-24T02:40:39.0470570Z * [new branch] voz/fix_np_2 -> origin/voz/fix_np_2 2025-01-24T02:40:39.0477660Z * [new branch] voz/fsdp_autograd -> origin/voz/fsdp_autograd 2025-01-24T02:40:39.0485710Z * [new branch] voz/fsdp_autograd2 -> origin/voz/fsdp_autograd2 2025-01-24T02:40:39.0493600Z * [new branch] voz/fsdp_autograd4 -> origin/voz/fsdp_autograd4 2025-01-24T02:40:39.0501430Z * [new branch] voz/fsdp_autograd_merge -> origin/voz/fsdp_autograd_merge 2025-01-24T02:40:39.0503290Z * [new branch] voz/fsdp_autograd_merge2 -> origin/voz/fsdp_autograd_merge2 2025-01-24T02:40:39.0510970Z * [new branch] voz/fsdp_ops -> origin/voz/fsdp_ops 2025-01-24T02:40:39.0518010Z * [new branch] voz/fsdp_ops2 -> origin/voz/fsdp_ops2 2025-01-24T02:40:39.0524630Z * [new branch] voz/fsdp_ops3 -> origin/voz/fsdp_ops3 2025-01-24T02:40:39.0532420Z * [new branch] voz/hacks -> origin/voz/hacks 2025-01-24T02:40:39.0540310Z * [new branch] voz/partials -> origin/voz/partials 2025-01-24T02:40:39.0542090Z * [new branch] voz/puffery -> origin/voz/puffery 2025-01-24T02:40:39.0549340Z * [new branch] voz/serde2 -> origin/voz/serde2 2025-01-24T02:40:39.0558140Z * [new branch] voz/soft_fork_autograd_fsdp -> origin/voz/soft_fork_autograd_fsdp 2025-01-24T02:40:39.0564520Z * [new branch] voz/torch_np -> origin/voz/torch_np 2025-01-24T02:40:39.0572070Z * [new branch] voz/torchrec_enablement -> origin/voz/torchrec_enablement 2025-01-24T02:40:39.0580030Z * [new branch] voz/torchrec_enablement2 -> origin/voz/torchrec_enablement2 2025-01-24T02:40:39.0581860Z * [new branch] wdvr-patch-1 -> origin/wdvr-patch-1 2025-01-24T02:40:39.0589720Z * [new branch] wdvr/add_boto3 -> origin/wdvr/add_boto3 2025-01-24T02:40:39.0597930Z * [new branch] wdvr/fix_cppwarnings_build -> origin/wdvr/fix_cppwarnings_build 2025-01-24T02:40:39.0605850Z * [new branch] wdvr/sccache091 -> origin/wdvr/sccache091 2025-01-24T02:40:39.0612810Z * [new branch] wdvr/sccache_nvcc -> origin/wdvr/sccache_nvcc 2025-01-24T02:40:39.0620570Z * [new branch] wdvr/sccache_simplified -> origin/wdvr/sccache_simplified 2025-01-24T02:40:39.0629170Z * [new branch] wdvr/xpu_sccache_fix -> origin/wdvr/xpu_sccache_fix 2025-01-24T02:40:39.0632870Z * [new branch] whc/flight -> origin/whc/flight 2025-01-24T02:40:39.0638460Z * [new branch] whc/flight4 -> origin/whc/flight4 2025-01-24T02:40:39.0645070Z * [new branch] whc/flight51 -> origin/whc/flight51 2025-01-24T02:40:39.0650170Z * [new branch] whc/flight53 -> origin/whc/flight53 2025-01-24T02:40:39.0658520Z * [new branch] whc/flight_full -> origin/whc/flight_full 2025-01-24T02:40:39.0663430Z * [new branch] whc/flightbase -> origin/whc/flightbase 2025-01-24T02:40:39.0671320Z * [new branch] whc/p2phang -> origin/whc/p2phang 2025-01-24T02:40:39.0677710Z * [new branch] whc/stage2 -> origin/whc/stage2 2025-01-24T02:40:39.0685660Z * [new branch] wwen/dynamo-preserve-node-metadata -> origin/wwen/dynamo-preserve-node-metadata 2025-01-24T02:40:39.0688430Z * [new branch] xmfan/ca_5a2be192d1 -> origin/xmfan/ca_5a2be192d1 2025-01-24T02:40:39.0696320Z * [new branch] xmfan/ca_api -> origin/xmfan/ca_api 2025-01-24T02:40:39.0703840Z * [new branch] xmfan/ca_cudagraphs -> origin/xmfan/ca_cudagraphs 2025-01-24T02:40:39.0711480Z * [new branch] xmfan/ca_jan3 -> origin/xmfan/ca_jan3 2025-01-24T02:40:39.0719540Z * [new branch] xmfan/ca_jun18 -> origin/xmfan/ca_jun18 2025-01-24T02:40:39.0727480Z * [new branch] xmfan/ca_jun24 -> origin/xmfan/ca_jun24 2025-01-24T02:40:39.0729250Z * [new branch] xmfan/ca_mem_base -> origin/xmfan/ca_mem_base 2025-01-24T02:40:39.0736210Z * [new branch] xmfan/ca_mem_fix -> origin/xmfan/ca_mem_fix 2025-01-24T02:40:39.0744660Z * [new branch] xmfan/ca_memory_fix -> origin/xmfan/ca_memory_fix 2025-01-24T02:40:39.0752330Z * [new branch] xmfan/ca_memory_fix_rebased -> origin/xmfan/ca_memory_fix_rebased 2025-01-24T02:40:39.0759680Z * [new branch] xmfan/ca_memory_fix_rebased2 -> origin/xmfan/ca_memory_fix_rebased2 2025-01-24T02:40:39.0767590Z * [new branch] xmfan/ca_move_to_cuda -> origin/xmfan/ca_move_to_cuda 2025-01-24T02:40:39.0775150Z * [new branch] xmfan/ca_overhead -> origin/xmfan/ca_overhead 2025-01-24T02:40:39.0782700Z * [new branch] xmfan/ca_overhead_0eba7e5451 -> origin/xmfan/ca_overhead_0eba7e5451 2025-01-24T02:40:39.0785130Z * [new branch] xmfan/ca_scalar -> origin/xmfan/ca_scalar 2025-01-24T02:40:39.0793170Z * [new branch] xmfan/ca_subclass_mem_fix -> origin/xmfan/ca_subclass_mem_fix 2025-01-24T02:40:39.0801560Z * [new branch] xmfan/ca_warm_mem -> origin/xmfan/ca_warm_mem 2025-01-24T02:40:39.0809570Z * [new branch] xmfan/ca_warm_mem_base -> origin/xmfan/ca_warm_mem_base 2025-01-24T02:40:39.0817910Z * [new branch] xmfan/cacu_jun18 -> origin/xmfan/cacu_jun18 2025-01-24T02:40:39.0819760Z * [new branch] xmfan/cacu_jun19 -> origin/xmfan/cacu_jun19 2025-01-24T02:40:39.0827840Z * [new branch] xmfan/cacu_jun4 -> origin/xmfan/cacu_jun4 2025-01-24T02:40:39.0836160Z * [new branch] xmfan/cacu_may27 -> origin/xmfan/cacu_may27 2025-01-24T02:40:39.0838020Z * [new branch] xmfan/circular_dep -> origin/xmfan/circular_dep 2025-01-24T02:40:39.0843810Z * [new branch] xmfan/compiled_autograd_bench -> origin/xmfan/compiled_autograd_bench 2025-01-24T02:40:39.0851960Z * [new branch] xmfan/compiled_autograd_bench_base -> origin/xmfan/compiled_autograd_bench_base 2025-01-24T02:40:39.0860150Z * [new branch] xmfan/compiled_autograd_benchmark -> origin/xmfan/compiled_autograd_benchmark 2025-01-24T02:40:39.0868040Z * [new branch] xmfan/compiled_autograd_ddp -> origin/xmfan/compiled_autograd_ddp 2025-01-24T02:40:39.0869970Z * [new branch] xmfan/compiled_autograd_feb_29 -> origin/xmfan/compiled_autograd_feb_29 2025-01-24T02:40:39.0877990Z * [new branch] xmfan/compiled_autograd_graph_breaks -> origin/xmfan/compiled_autograd_graph_breaks 2025-01-24T02:40:39.0884480Z * [new branch] xmfan/compiled_autograd_hud -> origin/xmfan/compiled_autograd_hud 2025-01-24T02:40:39.0891630Z * [new branch] xmfan/compiled_autograd_hypothetical_perf -> origin/xmfan/compiled_autograd_hypothetical_perf 2025-01-24T02:40:39.0899780Z * [new branch] xmfan/compiled_autograd_perf_no_reuse -> origin/xmfan/compiled_autograd_perf_no_reuse 2025-01-24T02:40:39.0907680Z * [new branch] xmfan/disable_duck_shape -> origin/xmfan/disable_duck_shape 2025-01-24T02:40:39.0909650Z * [new branch] xmfan/distributed_torchbench -> origin/xmfan/distributed_torchbench 2025-01-24T02:40:39.0916990Z * [new branch] xmfan/fca_cpp_node_passthrough -> origin/xmfan/fca_cpp_node_passthrough 2025-01-24T02:40:39.0925650Z * [new branch] xmfan/feb_10_compiled_autograd -> origin/xmfan/feb_10_compiled_autograd 2025-01-24T02:40:39.0939970Z * [new branch] xmfan/feb_10_compiled_autograd_cudagraph -> origin/xmfan/feb_10_compiled_autograd_cudagraph 2025-01-24T02:40:39.0942720Z * [new branch] xmfan/fsdp_wraps -> origin/xmfan/fsdp_wraps 2025-01-24T02:40:39.0948830Z * [new branch] xmfan/issue_123374 -> origin/xmfan/issue_123374 2025-01-24T02:40:39.0957570Z * [new branch] xmfan/oss_benchmark_script -> origin/xmfan/oss_benchmark_script 2025-01-24T02:40:39.0965020Z * [new branch] xmfan/rename_nanogpt -> origin/xmfan/rename_nanogpt 2025-01-24T02:40:39.0971700Z * [new branch] xmfan/retains_grad_hooks -> origin/xmfan/retains_grad_hooks 2025-01-24T02:40:39.0979170Z * [new branch] xmfan/segfault_test -> origin/xmfan/segfault_test 2025-01-24T02:40:39.0986800Z * [new branch] xmfan/sth_0829 -> origin/xmfan/sth_0829 2025-01-24T02:40:39.0988640Z * [new branch] xmfan/test -> origin/xmfan/test 2025-01-24T02:40:39.0995480Z * [new branch] xmfan/yolov3_oom -> origin/xmfan/yolov3_oom 2025-01-24T02:40:39.1003580Z * [new branch] xz9/remove-run-torchbench -> origin/xz9/remove-run-torchbench 2025-01-24T02:40:39.1011790Z * [new branch] yihan_quantization -> origin/yihan_quantization 2025-01-24T02:40:39.1018700Z * [new branch] yiming/bootcamp -> origin/yiming/bootcamp 2025-01-24T02:40:39.1026690Z * [new branch] zainr/canary-test -> origin/zainr/canary-test 2025-01-24T02:40:39.1034870Z * [new branch] zainr/emit-debug -> origin/zainr/emit-debug 2025-01-24T02:40:39.1042290Z * [new branch] zainr/historical-correlation-fix -> origin/zainr/historical-correlation-fix 2025-01-24T02:40:39.1054110Z * [new branch] zainr/lint-fix -> origin/zainr/lint-fix 2025-01-24T02:40:39.1054670Z * [new branch] zainr/metrics-job-id -> origin/zainr/metrics-job-id 2025-01-24T02:40:39.1059050Z * [new branch] zainr/metrics-pr -> origin/zainr/metrics-pr 2025-01-24T02:40:39.1067490Z * [new branch] zainr/no-op -> origin/zainr/no-op 2025-01-24T02:40:39.1074740Z * [new branch] zainr/pull-migration-c -> origin/zainr/pull-migration-c 2025-01-24T02:40:39.1082350Z * [new branch] zainr/td-baseline-stats -> origin/zainr/td-baseline-stats 2025-01-24T02:40:39.1090270Z * [new branch] zainr/td-class -> origin/zainr/td-class 2025-01-24T02:40:39.1098090Z * [new branch] zainr/td-class-metrics -> origin/zainr/td-class-metrics 2025-01-24T02:40:39.1105530Z * [new branch] zainr/td-downgrade -> origin/zainr/td-downgrade 2025-01-24T02:40:39.1113800Z * [new branch] zainr/td-file-pass -> origin/zainr/td-file-pass 2025-01-24T02:40:39.1115730Z * [new branch] zainr/td-metrics-v2 -> origin/zainr/td-metrics-v2 2025-01-24T02:40:39.1123460Z * [new branch] zainr/td-metrics2 -> origin/zainr/td-metrics2 2025-01-24T02:40:39.1131140Z * [new branch] zainr/td-pass-class-times -> origin/zainr/td-pass-class-times 2025-01-24T02:40:39.1137160Z * [new branch] zainr/td-shard-info -> origin/zainr/td-shard-info 2025-01-24T02:40:39.1144870Z * [new branch] zainr/td-trial -> origin/zainr/td-trial 2025-01-24T02:40:39.1153520Z * [new branch] zainr/unstable -> origin/zainr/unstable 2025-01-24T02:40:39.1155630Z * [new branch] zasdfgbnm-patch-3 -> origin/zasdfgbnm-patch-3 2025-01-24T02:40:39.1162340Z * [new branch] zb2p -> origin/zb2p 2025-01-24T02:40:39.1170940Z * [new branch] zbv_algo -> origin/zbv_algo 2025-01-24T02:40:39.1178320Z * [new branch] zdevito-patch-1 -> origin/zdevito-patch-1 2025-01-24T02:40:39.1185800Z * [new branch] zdevito-patch-2 -> origin/zdevito-patch-2 2025-01-24T02:40:39.1193360Z * [new branch] zeros-and-scatter-part2 -> origin/zeros-and-scatter-part2 2025-01-24T02:40:39.1195190Z * [new branch] zhuhaozhe-patch-1 -> origin/zhuhaozhe-patch-1 2025-01-24T02:40:39.1203290Z * [new branch] zhxchen17/dynamo/0 -> origin/zhxchen17/dynamo/0 2025-01-24T02:40:39.1210370Z * [new branch] zhxchen17/dynamo/1 -> origin/zhxchen17/dynamo/1 2025-01-24T02:40:39.1218070Z * [new branch] zhxchen17/dynamo/2 -> origin/zhxchen17/dynamo/2 2025-01-24T02:40:39.1225180Z * [new branch] zhxchen17/export/1 -> origin/zhxchen17/export/1 2025-01-24T02:40:39.1226960Z * [new branch] zhxchen17/export/10 -> origin/zhxchen17/export/10 2025-01-24T02:40:39.1233970Z * [new branch] zhxchen17/export/11 -> origin/zhxchen17/export/11 2025-01-24T02:40:39.1241430Z * [new branch] zhxchen17/export/12 -> origin/zhxchen17/export/12 2025-01-24T02:40:39.1247100Z * [new branch] zhxchen17/export/13 -> origin/zhxchen17/export/13 2025-01-24T02:40:39.1255190Z * [new branch] zhxchen17/export/14 -> origin/zhxchen17/export/14 2025-01-24T02:40:39.1264390Z * [new branch] zhxchen17/export/3 -> origin/zhxchen17/export/3 2025-01-24T02:40:39.1272580Z * [new branch] zhxchen17/export/6 -> origin/zhxchen17/export/6 2025-01-24T02:40:39.1277470Z * [new branch] zhxchen17/export/7 -> origin/zhxchen17/export/7 2025-01-24T02:40:39.1285260Z * [new branch] zhxchen17/export/8 -> origin/zhxchen17/export/8 2025-01-24T02:40:39.1290370Z * [new branch] zhxchen17/export/9 -> origin/zhxchen17/export/9 2025-01-24T02:40:39.1298360Z * [new branch] zhxchen17/tmp/0 -> origin/zhxchen17/tmp/0 2025-01-24T02:40:39.1303040Z * [new branch] zhxchen17/tmp/2 -> origin/zhxchen17/tmp/2 2025-01-24T02:40:39.1308740Z * [new branch] zxiiro/docs-build.sh -> origin/zxiiro/docs-build.sh 2025-01-24T02:40:39.1312960Z * [new tag] bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug -> bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug 2025-01-24T02:40:39.1316530Z * [new tag] ci/binaries/77164 -> ci/binaries/77164 2025-01-24T02:40:39.1321770Z * [new tag] ciflow/all/70978 -> ciflow/all/70978 2025-01-24T02:40:39.1324790Z * [new tag] ciflow/all/70979 -> ciflow/all/70979 2025-01-24T02:40:39.1326270Z * [new tag] ciflow/all/70989 -> ciflow/all/70989 2025-01-24T02:40:39.1330720Z * [new tag] ciflow/binaries/120076 -> ciflow/binaries/120076 2025-01-24T02:40:39.1332230Z * [new tag] ciflow/binaries/128672 -> ciflow/binaries/128672 2025-01-24T02:40:39.1338740Z * [new tag] ciflow/binaries/129465 -> ciflow/binaries/129465 2025-01-24T02:40:39.1339640Z * [new tag] ciflow/binaries/138175 -> ciflow/binaries/138175 2025-01-24T02:40:39.1346620Z * [new tag] ciflow/binaries/138996 -> ciflow/binaries/138996 2025-01-24T02:40:39.1348100Z * [new tag] ciflow/binaries/139760 -> ciflow/binaries/139760 2025-01-24T02:40:39.1353870Z * [new tag] ciflow/binaries/140844 -> ciflow/binaries/140844 2025-01-24T02:40:39.1355390Z * [new tag] ciflow/binaries/142040 -> ciflow/binaries/142040 2025-01-24T02:40:39.1356380Z * [new tag] ciflow/binaries/143082 -> ciflow/binaries/143082 2025-01-24T02:40:39.1361740Z * [new tag] ciflow/binaries/143360 -> ciflow/binaries/143360 2025-01-24T02:40:39.1363180Z * [new tag] ciflow/binaries/143416 -> ciflow/binaries/143416 2025-01-24T02:40:39.1369110Z * [new tag] ciflow/binaries/143791 -> ciflow/binaries/143791 2025-01-24T02:40:39.1371190Z * [new tag] ciflow/binaries/143794 -> ciflow/binaries/143794 2025-01-24T02:40:39.1372240Z * [new tag] ciflow/binaries/144046 -> ciflow/binaries/144046 2025-01-24T02:40:39.1378740Z * [new tag] ciflow/binaries/144127 -> ciflow/binaries/144127 2025-01-24T02:40:39.1380190Z * [new tag] ciflow/binaries/145119 -> ciflow/binaries/145119 2025-01-24T02:40:39.1386900Z * [new tag] ciflow/binaries/145224 -> ciflow/binaries/145224 2025-01-24T02:40:39.1388420Z * [new tag] ciflow/binaries_conda/139576 -> ciflow/binaries_conda/139576 2025-01-24T02:40:39.1394000Z * [new tag] ciflow/binaries_libtorch/139576 -> ciflow/binaries_libtorch/139576 2025-01-24T02:40:39.1395770Z * [new tag] ciflow/binaries_wheel/135189 -> ciflow/binaries_wheel/135189 2025-01-24T02:40:39.1396720Z * [new tag] ciflow/binaries_wheel/139576 -> ciflow/binaries_wheel/139576 2025-01-24T02:40:39.1401620Z * [new tag] ciflow/binaries_wheel/141584 -> ciflow/binaries_wheel/141584 2025-01-24T02:40:39.1403220Z * [new tag] ciflow/binaries_wheel/142279 -> ciflow/binaries_wheel/142279 2025-01-24T02:40:39.1408710Z * [new tag] ciflow/binaries_wheel/143388 -> ciflow/binaries_wheel/143388 2025-01-24T02:40:39.1409600Z * [new tag] ciflow/binaries_wheel/144049 -> ciflow/binaries_wheel/144049 2025-01-24T02:40:39.1413240Z * [new tag] ciflow/binaries_wheel/144842 -> ciflow/binaries_wheel/144842 2025-01-24T02:40:39.1414290Z * [new tag] ciflow/binaries_wheel/144887 -> ciflow/binaries_wheel/144887 2025-01-24T02:40:39.1420160Z * [new tag] ciflow/cuda/70978 -> ciflow/cuda/70978 2025-01-24T02:40:39.1421650Z * [new tag] ciflow/cuda/70979 -> ciflow/cuda/70979 2025-01-24T02:40:39.1422680Z * [new tag] ciflow/cuda/70989 -> ciflow/cuda/70989 2025-01-24T02:40:39.1427770Z * [new tag] ciflow/inductor-cu126/140793 -> ciflow/inductor-cu126/140793 2025-01-24T02:40:39.1429270Z * [new tag] ciflow/inductor-cu126/143806 -> ciflow/inductor-cu126/143806 2025-01-24T02:40:39.1432280Z * [new tag] ciflow/inductor-micro-benchmark/141910 -> ciflow/inductor-micro-benchmark/141910 2025-01-24T02:40:39.1437760Z * [new tag] ciflow/inductor-perf-compare/140195 -> ciflow/inductor-perf-compare/140195 2025-01-24T02:40:39.1440820Z * [new tag] ciflow/inductor-perf-compare/145455 -> ciflow/inductor-perf-compare/145455 2025-01-24T02:40:39.1445300Z * [new tag] ciflow/inductor-perf-test-nightly/140195 -> ciflow/inductor-perf-test-nightly/140195 2025-01-24T02:40:39.1446460Z * [new tag] ciflow/inductor-periodic/140793 -> ciflow/inductor-periodic/140793 2025-01-24T02:40:39.1449470Z * [new tag] ciflow/inductor-periodic/143560 -> ciflow/inductor-periodic/143560 2025-01-24T02:40:39.1454590Z * [new tag] ciflow/inductor-periodic/144594 -> ciflow/inductor-periodic/144594 2025-01-24T02:40:39.1455640Z * [new tag] ciflow/inductor-periodic/145455 -> ciflow/inductor-periodic/145455 2025-01-24T02:40:39.1462390Z * [new tag] ciflow/inductor-rocm/140261 -> ciflow/inductor-rocm/140261 2025-01-24T02:40:39.1463880Z * [new tag] ciflow/inductor-rocm/140989 -> ciflow/inductor-rocm/140989 2025-01-24T02:40:39.1469900Z * [new tag] ciflow/inductor-rocm/141309 -> ciflow/inductor-rocm/141309 2025-01-24T02:40:39.1471060Z * [new tag] ciflow/inductor-rocm/141355 -> ciflow/inductor-rocm/141355 2025-01-24T02:40:39.1472430Z * [new tag] ciflow/inductor-rocm/142408 -> ciflow/inductor-rocm/142408 2025-01-24T02:40:39.1477950Z * [new tag] ciflow/inductor-rocm/144985 -> ciflow/inductor-rocm/144985 2025-01-24T02:40:39.1478990Z * [new tag] ciflow/inductor-rocm/145504 -> ciflow/inductor-rocm/145504 2025-01-24T02:40:39.1484990Z * [new tag] ciflow/inductor-rocm/145518 -> ciflow/inductor-rocm/145518 2025-01-24T02:40:39.1487350Z * [new tag] ciflow/inductor/110155 -> ciflow/inductor/110155 2025-01-24T02:40:39.1492630Z * [new tag] ciflow/inductor/113257 -> ciflow/inductor/113257 2025-01-24T02:40:39.1493570Z * [new tag] ciflow/inductor/118489 -> ciflow/inductor/118489 2025-01-24T02:40:39.1495590Z * [new tag] ciflow/inductor/119496 -> ciflow/inductor/119496 2025-01-24T02:40:39.1501780Z * [new tag] ciflow/inductor/119977 -> ciflow/inductor/119977 2025-01-24T02:40:39.1502740Z * [new tag] ciflow/inductor/120076 -> ciflow/inductor/120076 2025-01-24T02:40:39.1509750Z * [new tag] ciflow/inductor/121445 -> ciflow/inductor/121445 2025-01-24T02:40:39.1510760Z * [new tag] ciflow/inductor/123661 -> ciflow/inductor/123661 2025-01-24T02:40:39.1517680Z * [new tag] ciflow/inductor/124490 -> ciflow/inductor/124490 2025-01-24T02:40:39.1518560Z * [new tag] ciflow/inductor/125270 -> ciflow/inductor/125270 2025-01-24T02:40:39.1520270Z * [new tag] ciflow/inductor/125326 -> ciflow/inductor/125326 2025-01-24T02:40:39.1526070Z * [new tag] ciflow/inductor/125428 -> ciflow/inductor/125428 2025-01-24T02:40:39.1527020Z * [new tag] ciflow/inductor/125469 -> ciflow/inductor/125469 2025-01-24T02:40:39.1534010Z * [new tag] ciflow/inductor/125806 -> ciflow/inductor/125806 2025-01-24T02:40:39.1535050Z * [new tag] ciflow/inductor/125888 -> ciflow/inductor/125888 2025-01-24T02:40:39.1536620Z * [new tag] ciflow/inductor/125995 -> ciflow/inductor/125995 2025-01-24T02:40:39.1543310Z * [new tag] ciflow/inductor/126129 -> ciflow/inductor/126129 2025-01-24T02:40:39.1544740Z * [new tag] ciflow/inductor/126348 -> ciflow/inductor/126348 2025-01-24T02:40:39.1551580Z * [new tag] ciflow/inductor/127011 -> ciflow/inductor/127011 2025-01-24T02:40:39.1552820Z * [new tag] ciflow/inductor/127171 -> ciflow/inductor/127171 2025-01-24T02:40:39.1553720Z * [new tag] ciflow/inductor/127293 -> ciflow/inductor/127293 2025-01-24T02:40:39.1559470Z * [new tag] ciflow/inductor/127294 -> ciflow/inductor/127294 2025-01-24T02:40:39.1560430Z * [new tag] ciflow/inductor/128802 -> ciflow/inductor/128802 2025-01-24T02:40:39.1568340Z * [new tag] ciflow/inductor/129352 -> ciflow/inductor/129352 2025-01-24T02:40:39.1569260Z * [new tag] ciflow/inductor/129409 -> ciflow/inductor/129409 2025-01-24T02:40:39.1570870Z * [new tag] ciflow/inductor/129420 -> ciflow/inductor/129420 2025-01-24T02:40:39.1576030Z * [new tag] ciflow/inductor/130141 -> ciflow/inductor/130141 2025-01-24T02:40:39.1583550Z * [new tag] ciflow/inductor/130499 -> ciflow/inductor/130499 2025-01-24T02:40:39.1584510Z * [new tag] ciflow/inductor/130887 -> ciflow/inductor/130887 2025-01-24T02:40:39.1586090Z * [new tag] ciflow/inductor/131354 -> ciflow/inductor/131354 2025-01-24T02:40:39.1590750Z * [new tag] ciflow/inductor/131481 -> ciflow/inductor/131481 2025-01-24T02:40:39.1592190Z * [new tag] ciflow/inductor/131493 -> ciflow/inductor/131493 2025-01-24T02:40:39.1597930Z * [new tag] ciflow/inductor/132021 -> ciflow/inductor/132021 2025-01-24T02:40:39.1599850Z * [new tag] ciflow/inductor/132414 -> ciflow/inductor/132414 2025-01-24T02:40:39.1606370Z * [new tag] ciflow/inductor/132755 -> ciflow/inductor/132755 2025-01-24T02:40:39.1607880Z * [new tag] ciflow/inductor/133044 -> ciflow/inductor/133044 2025-01-24T02:40:39.1608840Z * [new tag] ciflow/inductor/133121 -> ciflow/inductor/133121 2025-01-24T02:40:39.1610440Z * [new tag] ciflow/inductor/133287 -> ciflow/inductor/133287 2025-01-24T02:40:39.1616100Z * [new tag] ciflow/inductor/133289 -> ciflow/inductor/133289 2025-01-24T02:40:39.1617080Z * [new tag] ciflow/inductor/133296 -> ciflow/inductor/133296 2025-01-24T02:40:39.1618680Z * [new tag] ciflow/inductor/133297 -> ciflow/inductor/133297 2025-01-24T02:40:39.1625610Z * [new tag] ciflow/inductor/133307 -> ciflow/inductor/133307 2025-01-24T02:40:39.1626620Z * [new tag] ciflow/inductor/133315 -> ciflow/inductor/133315 2025-01-24T02:40:39.1633060Z * [new tag] ciflow/inductor/133392 -> ciflow/inductor/133392 2025-01-24T02:40:39.1634030Z * [new tag] ciflow/inductor/133419 -> ciflow/inductor/133419 2025-01-24T02:40:39.1641360Z * [new tag] ciflow/inductor/133423 -> ciflow/inductor/133423 2025-01-24T02:40:39.1642330Z * [new tag] ciflow/inductor/133667 -> ciflow/inductor/133667 2025-01-24T02:40:39.1643890Z * [new tag] ciflow/inductor/133753 -> ciflow/inductor/133753 2025-01-24T02:40:39.1649320Z * [new tag] ciflow/inductor/133842 -> ciflow/inductor/133842 2025-01-24T02:40:39.1650790Z * [new tag] ciflow/inductor/134681 -> ciflow/inductor/134681 2025-01-24T02:40:39.1657380Z * [new tag] ciflow/inductor/134881 -> ciflow/inductor/134881 2025-01-24T02:40:39.1659110Z * [new tag] ciflow/inductor/134969 -> ciflow/inductor/134969 2025-01-24T02:40:39.1660710Z * [new tag] ciflow/inductor/135189 -> ciflow/inductor/135189 2025-01-24T02:40:39.1664620Z * [new tag] ciflow/inductor/135337 -> ciflow/inductor/135337 2025-01-24T02:40:39.1666060Z * [new tag] ciflow/inductor/135465 -> ciflow/inductor/135465 2025-01-24T02:40:39.1673260Z * [new tag] ciflow/inductor/135708 -> ciflow/inductor/135708 2025-01-24T02:40:39.1674180Z * [new tag] ciflow/inductor/135719 -> ciflow/inductor/135719 2025-01-24T02:40:39.1675810Z * [new tag] ciflow/inductor/135792 -> ciflow/inductor/135792 2025-01-24T02:40:39.1681530Z * [new tag] ciflow/inductor/136268 -> ciflow/inductor/136268 2025-01-24T02:40:39.1682960Z * [new tag] ciflow/inductor/136355 -> ciflow/inductor/136355 2025-01-24T02:40:39.1689630Z * [new tag] ciflow/inductor/136478 -> ciflow/inductor/136478 2025-01-24T02:40:39.1690790Z * [new tag] ciflow/inductor/136702 -> ciflow/inductor/136702 2025-01-24T02:40:39.1697050Z * [new tag] ciflow/inductor/136753 -> ciflow/inductor/136753 2025-01-24T02:40:39.1698310Z * [new tag] ciflow/inductor/136802 -> ciflow/inductor/136802 2025-01-24T02:40:39.1699320Z * [new tag] ciflow/inductor/137400 -> ciflow/inductor/137400 2025-01-24T02:40:39.1705180Z * [new tag] ciflow/inductor/137493 -> ciflow/inductor/137493 2025-01-24T02:40:39.1706170Z * [new tag] ciflow/inductor/137568 -> ciflow/inductor/137568 2025-01-24T02:40:39.1713210Z * [new tag] ciflow/inductor/137583 -> ciflow/inductor/137583 2025-01-24T02:40:39.1714720Z * [new tag] ciflow/inductor/137658 -> ciflow/inductor/137658 2025-01-24T02:40:39.1720740Z * [new tag] ciflow/inductor/137662 -> ciflow/inductor/137662 2025-01-24T02:40:39.1721770Z * [new tag] ciflow/inductor/137726 -> ciflow/inductor/137726 2025-01-24T02:40:39.1723310Z * [new tag] ciflow/inductor/137808 -> ciflow/inductor/137808 2025-01-24T02:40:39.1728350Z * [new tag] ciflow/inductor/137822 -> ciflow/inductor/137822 2025-01-24T02:40:39.1729550Z * [new tag] ciflow/inductor/137846 -> ciflow/inductor/137846 2025-01-24T02:40:39.1736250Z * [new tag] ciflow/inductor/137861 -> ciflow/inductor/137861 2025-01-24T02:40:39.1737080Z * [new tag] ciflow/inductor/137884 -> ciflow/inductor/137884 2025-01-24T02:40:39.1744250Z * [new tag] ciflow/inductor/137921 -> ciflow/inductor/137921 2025-01-24T02:40:39.1745270Z * [new tag] ciflow/inductor/137959 -> ciflow/inductor/137959 2025-01-24T02:40:39.1751320Z * [new tag] ciflow/inductor/138101 -> ciflow/inductor/138101 2025-01-24T02:40:39.1752800Z * [new tag] ciflow/inductor/138185 -> ciflow/inductor/138185 2025-01-24T02:40:39.1759050Z * [new tag] ciflow/inductor/138202 -> ciflow/inductor/138202 2025-01-24T02:40:39.1760360Z * [new tag] ciflow/inductor/138213 -> ciflow/inductor/138213 2025-01-24T02:40:39.1761800Z * [new tag] ciflow/inductor/138214 -> ciflow/inductor/138214 2025-01-24T02:40:39.1768140Z * [new tag] ciflow/inductor/138282 -> ciflow/inductor/138282 2025-01-24T02:40:39.1769350Z * [new tag] ciflow/inductor/138503 -> ciflow/inductor/138503 2025-01-24T02:40:39.1775510Z * [new tag] ciflow/inductor/138513 -> ciflow/inductor/138513 2025-01-24T02:40:39.1776960Z * [new tag] ciflow/inductor/138519 -> ciflow/inductor/138519 2025-01-24T02:40:39.1783680Z * [new tag] ciflow/inductor/138555 -> ciflow/inductor/138555 2025-01-24T02:40:39.1784560Z * [new tag] ciflow/inductor/138573 -> ciflow/inductor/138573 2025-01-24T02:40:39.1786300Z * [new tag] ciflow/inductor/138626 -> ciflow/inductor/138626 2025-01-24T02:40:39.1795340Z * [new tag] ciflow/inductor/138749 -> ciflow/inductor/138749 2025-01-24T02:40:39.1795910Z * [new tag] ciflow/inductor/138871 -> ciflow/inductor/138871 2025-01-24T02:40:39.1799120Z * [new tag] ciflow/inductor/138889 -> ciflow/inductor/138889 2025-01-24T02:40:39.1800570Z * [new tag] ciflow/inductor/138929 -> ciflow/inductor/138929 2025-01-24T02:40:39.1809200Z * [new tag] ciflow/inductor/138930 -> ciflow/inductor/138930 2025-01-24T02:40:39.1810180Z * [new tag] ciflow/inductor/138938 -> ciflow/inductor/138938 2025-01-24T02:40:39.1811720Z * [new tag] ciflow/inductor/138953 -> ciflow/inductor/138953 2025-01-24T02:40:39.1813760Z * [new tag] ciflow/inductor/138963 -> ciflow/inductor/138963 2025-01-24T02:40:39.1816780Z * [new tag] ciflow/inductor/138966 -> ciflow/inductor/138966 2025-01-24T02:40:39.1817840Z * [new tag] ciflow/inductor/138999 -> ciflow/inductor/138999 2025-01-24T02:40:39.1819210Z * [new tag] ciflow/inductor/139094 -> ciflow/inductor/139094 2025-01-24T02:40:39.1823610Z * [new tag] ciflow/inductor/139098 -> ciflow/inductor/139098 2025-01-24T02:40:39.1826190Z * [new tag] ciflow/inductor/139101 -> ciflow/inductor/139101 2025-01-24T02:40:39.1830980Z * [new tag] ciflow/inductor/139102 -> ciflow/inductor/139102 2025-01-24T02:40:39.1833410Z * [new tag] ciflow/inductor/139105 -> ciflow/inductor/139105 2025-01-24T02:40:39.1835290Z * [new tag] ciflow/inductor/139135 -> ciflow/inductor/139135 2025-01-24T02:40:39.1840690Z * [new tag] ciflow/inductor/139146 -> ciflow/inductor/139146 2025-01-24T02:40:39.1842200Z * [new tag] ciflow/inductor/139171 -> ciflow/inductor/139171 2025-01-24T02:40:39.1848290Z * [new tag] ciflow/inductor/139247 -> ciflow/inductor/139247 2025-01-24T02:40:39.1850190Z * [new tag] ciflow/inductor/139271 -> ciflow/inductor/139271 2025-01-24T02:40:39.1856310Z * [new tag] ciflow/inductor/139308 -> ciflow/inductor/139308 2025-01-24T02:40:39.1857190Z * [new tag] ciflow/inductor/139325 -> ciflow/inductor/139325 2025-01-24T02:40:39.1858800Z * [new tag] ciflow/inductor/139329 -> ciflow/inductor/139329 2025-01-24T02:40:39.1863620Z * [new tag] ciflow/inductor/139338 -> ciflow/inductor/139338 2025-01-24T02:40:39.1865070Z * [new tag] ciflow/inductor/139356 -> ciflow/inductor/139356 2025-01-24T02:40:39.1871900Z * [new tag] ciflow/inductor/139357 -> ciflow/inductor/139357 2025-01-24T02:40:39.1873360Z * [new tag] ciflow/inductor/139379 -> ciflow/inductor/139379 2025-01-24T02:40:39.1879300Z * [new tag] ciflow/inductor/139384 -> ciflow/inductor/139384 2025-01-24T02:40:39.1880880Z * [new tag] ciflow/inductor/139421 -> ciflow/inductor/139421 2025-01-24T02:40:39.1882630Z * [new tag] ciflow/inductor/139437 -> ciflow/inductor/139437 2025-01-24T02:40:39.1889650Z * [new tag] ciflow/inductor/139535 -> ciflow/inductor/139535 2025-01-24T02:40:39.1898060Z * [new tag] ciflow/inductor/139561 -> ciflow/inductor/139561 2025-01-24T02:40:39.1899560Z * [new tag] ciflow/inductor/139672 -> ciflow/inductor/139672 2025-01-24T02:40:39.1905120Z * [new tag] ciflow/inductor/139697 -> ciflow/inductor/139697 2025-01-24T02:40:39.1906650Z * [new tag] ciflow/inductor/139708 -> ciflow/inductor/139708 2025-01-24T02:40:39.1912860Z * [new tag] ciflow/inductor/139796 -> ciflow/inductor/139796 2025-01-24T02:40:39.1914300Z * [new tag] ciflow/inductor/139840 -> ciflow/inductor/139840 2025-01-24T02:40:39.1921570Z * [new tag] ciflow/inductor/139864 -> ciflow/inductor/139864 2025-01-24T02:40:39.1923060Z * [new tag] ciflow/inductor/139928 -> ciflow/inductor/139928 2025-01-24T02:40:39.1923910Z * [new tag] ciflow/inductor/139975 -> ciflow/inductor/139975 2025-01-24T02:40:39.1929400Z * [new tag] ciflow/inductor/139976 -> ciflow/inductor/139976 2025-01-24T02:40:39.1930300Z * [new tag] ciflow/inductor/140032 -> ciflow/inductor/140032 2025-01-24T02:40:39.1931810Z * [new tag] ciflow/inductor/140048 -> ciflow/inductor/140048 2025-01-24T02:40:39.1938500Z * [new tag] ciflow/inductor/140084 -> ciflow/inductor/140084 2025-01-24T02:40:39.1939550Z * [new tag] ciflow/inductor/140132 -> ciflow/inductor/140132 2025-01-24T02:40:39.1945720Z * [new tag] ciflow/inductor/140146 -> ciflow/inductor/140146 2025-01-24T02:40:39.1947340Z * [new tag] ciflow/inductor/140159 -> ciflow/inductor/140159 2025-01-24T02:40:39.1953440Z * [new tag] ciflow/inductor/140195 -> ciflow/inductor/140195 2025-01-24T02:40:39.1954530Z * [new tag] ciflow/inductor/140283 -> ciflow/inductor/140283 2025-01-24T02:40:39.1956080Z * [new tag] ciflow/inductor/140328 -> ciflow/inductor/140328 2025-01-24T02:40:39.1961930Z * [new tag] ciflow/inductor/140362 -> ciflow/inductor/140362 2025-01-24T02:40:39.1962890Z * [new tag] ciflow/inductor/140677 -> ciflow/inductor/140677 2025-01-24T02:40:39.1969260Z * [new tag] ciflow/inductor/140746 -> ciflow/inductor/140746 2025-01-24T02:40:39.1970700Z * [new tag] ciflow/inductor/140747 -> ciflow/inductor/140747 2025-01-24T02:40:39.1977130Z * [new tag] ciflow/inductor/140756 -> ciflow/inductor/140756 2025-01-24T02:40:39.1978840Z * [new tag] ciflow/inductor/140807 -> ciflow/inductor/140807 2025-01-24T02:40:39.1979540Z * [new tag] ciflow/inductor/140858 -> ciflow/inductor/140858 2025-01-24T02:40:39.1985600Z * [new tag] ciflow/inductor/140979 -> ciflow/inductor/140979 2025-01-24T02:40:39.1986660Z * [new tag] ciflow/inductor/141055 -> ciflow/inductor/141055 2025-01-24T02:40:39.1993510Z * [new tag] ciflow/inductor/141082 -> ciflow/inductor/141082 2025-01-24T02:40:39.1994490Z * [new tag] ciflow/inductor/141096 -> ciflow/inductor/141096 2025-01-24T02:40:39.1996100Z * [new tag] ciflow/inductor/141097 -> ciflow/inductor/141097 2025-01-24T02:40:39.2001700Z * [new tag] ciflow/inductor/141131 -> ciflow/inductor/141131 2025-01-24T02:40:39.2003790Z * [new tag] ciflow/inductor/141168 -> ciflow/inductor/141168 2025-01-24T02:40:39.2009840Z * [new tag] ciflow/inductor/141193 -> ciflow/inductor/141193 2025-01-24T02:40:39.2012290Z * [new tag] ciflow/inductor/141195 -> ciflow/inductor/141195 2025-01-24T02:40:39.2018520Z * [new tag] ciflow/inductor/141213 -> ciflow/inductor/141213 2025-01-24T02:40:39.2020140Z * [new tag] ciflow/inductor/141226 -> ciflow/inductor/141226 2025-01-24T02:40:39.2027550Z * [new tag] ciflow/inductor/141309 -> ciflow/inductor/141309 2025-01-24T02:40:39.2029070Z * [new tag] ciflow/inductor/141342 -> ciflow/inductor/141342 2025-01-24T02:40:39.2035820Z * [new tag] ciflow/inductor/141347 -> ciflow/inductor/141347 2025-01-24T02:40:39.2036920Z * [new tag] ciflow/inductor/141393 -> ciflow/inductor/141393 2025-01-24T02:40:39.2038120Z * [new tag] ciflow/inductor/141489 -> ciflow/inductor/141489 2025-01-24T02:40:39.2043070Z * [new tag] ciflow/inductor/141493 -> ciflow/inductor/141493 2025-01-24T02:40:39.2044510Z * [new tag] ciflow/inductor/141496 -> ciflow/inductor/141496 2025-01-24T02:40:39.2045800Z * [new tag] ciflow/inductor/141588 -> ciflow/inductor/141588 2025-01-24T02:40:39.2050710Z * [new tag] ciflow/inductor/141641 -> ciflow/inductor/141641 2025-01-24T02:40:39.2052220Z * [new tag] ciflow/inductor/141659 -> ciflow/inductor/141659 2025-01-24T02:40:39.2058460Z * [new tag] ciflow/inductor/141684 -> ciflow/inductor/141684 2025-01-24T02:40:39.2059920Z * [new tag] ciflow/inductor/141697 -> ciflow/inductor/141697 2025-01-24T02:40:39.2066150Z * [new tag] ciflow/inductor/141700 -> ciflow/inductor/141700 2025-01-24T02:40:39.2067440Z * [new tag] ciflow/inductor/141702 -> ciflow/inductor/141702 2025-01-24T02:40:39.2069100Z * [new tag] ciflow/inductor/141720 -> ciflow/inductor/141720 2025-01-24T02:40:39.2075320Z * [new tag] ciflow/inductor/141730 -> ciflow/inductor/141730 2025-01-24T02:40:39.2083240Z * [new tag] ciflow/inductor/141795 -> ciflow/inductor/141795 2025-01-24T02:40:39.2084680Z * [new tag] ciflow/inductor/141842 -> ciflow/inductor/141842 2025-01-24T02:40:39.2090440Z * [new tag] ciflow/inductor/141889 -> ciflow/inductor/141889 2025-01-24T02:40:39.2091420Z * [new tag] ciflow/inductor/141940 -> ciflow/inductor/141940 2025-01-24T02:40:39.2093030Z * [new tag] ciflow/inductor/141944 -> ciflow/inductor/141944 2025-01-24T02:40:39.2095960Z * [new tag] ciflow/inductor/141947 -> ciflow/inductor/141947 2025-01-24T02:40:39.2103930Z * [new tag] ciflow/inductor/141961 -> ciflow/inductor/141961 2025-01-24T02:40:39.2107690Z * [new tag] ciflow/inductor/142026 -> ciflow/inductor/142026 2025-01-24T02:40:39.2112470Z * [new tag] ciflow/inductor/142046 -> ciflow/inductor/142046 2025-01-24T02:40:39.2113030Z * [new tag] ciflow/inductor/142091 -> ciflow/inductor/142091 2025-01-24T02:40:39.2116750Z * [new tag] ciflow/inductor/142092 -> ciflow/inductor/142092 2025-01-24T02:40:39.2121590Z * [new tag] ciflow/inductor/142105 -> ciflow/inductor/142105 2025-01-24T02:40:39.2122600Z * [new tag] ciflow/inductor/142163 -> ciflow/inductor/142163 2025-01-24T02:40:39.2125970Z * [new tag] ciflow/inductor/142272 -> ciflow/inductor/142272 2025-01-24T02:40:39.2130960Z * [new tag] ciflow/inductor/142273 -> ciflow/inductor/142273 2025-01-24T02:40:39.2135190Z * [new tag] ciflow/inductor/142295 -> ciflow/inductor/142295 2025-01-24T02:40:39.2138860Z * [new tag] ciflow/inductor/142296 -> ciflow/inductor/142296 2025-01-24T02:40:39.2140450Z * [new tag] ciflow/inductor/142309 -> ciflow/inductor/142309 2025-01-24T02:40:39.2144870Z * [new tag] ciflow/inductor/142350 -> ciflow/inductor/142350 2025-01-24T02:40:39.2147330Z * [new tag] ciflow/inductor/142372 -> ciflow/inductor/142372 2025-01-24T02:40:39.2152640Z * [new tag] ciflow/inductor/142407 -> ciflow/inductor/142407 2025-01-24T02:40:39.2153600Z * [new tag] ciflow/inductor/142483 -> ciflow/inductor/142483 2025-01-24T02:40:39.2155480Z * [new tag] ciflow/inductor/142513 -> ciflow/inductor/142513 2025-01-24T02:40:39.2161430Z * [new tag] ciflow/inductor/142830 -> ciflow/inductor/142830 2025-01-24T02:40:39.2161980Z * [new tag] ciflow/inductor/142851 -> ciflow/inductor/142851 2025-01-24T02:40:39.2168100Z * [new tag] ciflow/inductor/142861 -> ciflow/inductor/142861 2025-01-24T02:40:39.2170170Z * [new tag] ciflow/inductor/143044 -> ciflow/inductor/143044 2025-01-24T02:40:39.2176320Z * [new tag] ciflow/inductor/143061 -> ciflow/inductor/143061 2025-01-24T02:40:39.2177810Z * [new tag] ciflow/inductor/143103 -> ciflow/inductor/143103 2025-01-24T02:40:39.2178800Z * [new tag] ciflow/inductor/143220 -> ciflow/inductor/143220 2025-01-24T02:40:39.2185500Z * [new tag] ciflow/inductor/143275 -> ciflow/inductor/143275 2025-01-24T02:40:39.2186940Z * [new tag] ciflow/inductor/143286 -> ciflow/inductor/143286 2025-01-24T02:40:39.2192810Z * [new tag] ciflow/inductor/143296 -> ciflow/inductor/143296 2025-01-24T02:40:39.2193780Z * [new tag] ciflow/inductor/143313 -> ciflow/inductor/143313 2025-01-24T02:40:39.2197040Z * [new tag] ciflow/inductor/143378 -> ciflow/inductor/143378 2025-01-24T02:40:39.2198130Z * [new tag] ciflow/inductor/143387 -> ciflow/inductor/143387 2025-01-24T02:40:39.2202580Z * [new tag] ciflow/inductor/143405 -> ciflow/inductor/143405 2025-01-24T02:40:39.2206390Z * [new tag] ciflow/inductor/143408 -> ciflow/inductor/143408 2025-01-24T02:40:39.2207830Z * [new tag] ciflow/inductor/143411 -> ciflow/inductor/143411 2025-01-24T02:40:39.2212070Z * [new tag] ciflow/inductor/143417 -> ciflow/inductor/143417 2025-01-24T02:40:39.2214210Z * [new tag] ciflow/inductor/143456 -> ciflow/inductor/143456 2025-01-24T02:40:39.2215760Z * [new tag] ciflow/inductor/143457 -> ciflow/inductor/143457 2025-01-24T02:40:39.2222330Z * [new tag] ciflow/inductor/143464 -> ciflow/inductor/143464 2025-01-24T02:40:39.2223710Z * [new tag] ciflow/inductor/143475 -> ciflow/inductor/143475 2025-01-24T02:40:39.2230100Z * [new tag] ciflow/inductor/143525 -> ciflow/inductor/143525 2025-01-24T02:40:39.2231240Z * [new tag] ciflow/inductor/143527 -> ciflow/inductor/143527 2025-01-24T02:40:39.2237480Z * [new tag] ciflow/inductor/143533 -> ciflow/inductor/143533 2025-01-24T02:40:39.2238760Z * [new tag] ciflow/inductor/143534 -> ciflow/inductor/143534 2025-01-24T02:40:39.2244730Z * [new tag] ciflow/inductor/143544 -> ciflow/inductor/143544 2025-01-24T02:40:39.2246320Z * [new tag] ciflow/inductor/143559 -> ciflow/inductor/143559 2025-01-24T02:40:39.2252340Z * [new tag] ciflow/inductor/143622 -> ciflow/inductor/143622 2025-01-24T02:40:39.2253900Z * [new tag] ciflow/inductor/143631 -> ciflow/inductor/143631 2025-01-24T02:40:39.2254820Z * [new tag] ciflow/inductor/143638 -> ciflow/inductor/143638 2025-01-24T02:40:39.2262120Z * [new tag] ciflow/inductor/143671 -> ciflow/inductor/143671 2025-01-24T02:40:39.2263620Z * [new tag] ciflow/inductor/143683 -> ciflow/inductor/143683 2025-01-24T02:40:39.2269630Z * [new tag] ciflow/inductor/143712 -> ciflow/inductor/143712 2025-01-24T02:40:39.2270840Z * [new tag] ciflow/inductor/143812 -> ciflow/inductor/143812 2025-01-24T02:40:39.2277710Z * [new tag] ciflow/inductor/143833 -> ciflow/inductor/143833 2025-01-24T02:40:39.2278680Z * [new tag] ciflow/inductor/143872 -> ciflow/inductor/143872 2025-01-24T02:40:39.2280330Z * [new tag] ciflow/inductor/143877 -> ciflow/inductor/143877 2025-01-24T02:40:39.2285280Z * [new tag] ciflow/inductor/143880 -> ciflow/inductor/143880 2025-01-24T02:40:39.2286420Z * [new tag] ciflow/inductor/143961 -> ciflow/inductor/143961 2025-01-24T02:40:39.2292790Z * [new tag] ciflow/inductor/143987 -> ciflow/inductor/143987 2025-01-24T02:40:39.2293880Z * [new tag] ciflow/inductor/144002 -> ciflow/inductor/144002 2025-01-24T02:40:39.2295490Z * [new tag] ciflow/inductor/144008 -> ciflow/inductor/144008 2025-01-24T02:40:39.2304510Z * [new tag] ciflow/inductor/144017 -> ciflow/inductor/144017 2025-01-24T02:40:39.2305470Z * [new tag] ciflow/inductor/144020 -> ciflow/inductor/144020 2025-01-24T02:40:39.2311570Z * [new tag] ciflow/inductor/144073 -> ciflow/inductor/144073 2025-01-24T02:40:39.2314170Z * [new tag] ciflow/inductor/144097 -> ciflow/inductor/144097 2025-01-24T02:40:39.2320220Z * [new tag] ciflow/inductor/144108 -> ciflow/inductor/144108 2025-01-24T02:40:39.2321190Z * [new tag] ciflow/inductor/144114 -> ciflow/inductor/144114 2025-01-24T02:40:39.2322700Z * [new tag] ciflow/inductor/144115 -> ciflow/inductor/144115 2025-01-24T02:40:39.2327630Z * [new tag] ciflow/inductor/144120 -> ciflow/inductor/144120 2025-01-24T02:40:39.2329100Z * [new tag] ciflow/inductor/144172 -> ciflow/inductor/144172 2025-01-24T02:40:39.2332350Z * [new tag] ciflow/inductor/144193 -> ciflow/inductor/144193 2025-01-24T02:40:39.2336670Z * [new tag] ciflow/inductor/144234 -> ciflow/inductor/144234 2025-01-24T02:40:39.2341110Z * [new tag] ciflow/inductor/144272 -> ciflow/inductor/144272 2025-01-24T02:40:39.2343790Z * [new tag] ciflow/inductor/144288 -> ciflow/inductor/144288 2025-01-24T02:40:39.2344770Z * [new tag] ciflow/inductor/144293 -> ciflow/inductor/144293 2025-01-24T02:40:39.2350310Z * [new tag] ciflow/inductor/144294 -> ciflow/inductor/144294 2025-01-24T02:40:39.2352550Z * [new tag] ciflow/inductor/144303 -> ciflow/inductor/144303 2025-01-24T02:40:39.2358490Z * [new tag] ciflow/inductor/144332 -> ciflow/inductor/144332 2025-01-24T02:40:39.2363350Z * [new tag] ciflow/inductor/144333 -> ciflow/inductor/144333 2025-01-24T02:40:39.2367280Z * [new tag] ciflow/inductor/144349 -> ciflow/inductor/144349 2025-01-24T02:40:39.2368760Z * [new tag] ciflow/inductor/144353 -> ciflow/inductor/144353 2025-01-24T02:40:39.2369810Z * [new tag] ciflow/inductor/144365 -> ciflow/inductor/144365 2025-01-24T02:40:39.2375220Z * [new tag] ciflow/inductor/144366 -> ciflow/inductor/144366 2025-01-24T02:40:39.2376440Z * [new tag] ciflow/inductor/144395 -> ciflow/inductor/144395 2025-01-24T02:40:39.2382620Z * [new tag] ciflow/inductor/144405 -> ciflow/inductor/144405 2025-01-24T02:40:39.2384030Z * [new tag] ciflow/inductor/144413 -> ciflow/inductor/144413 2025-01-24T02:40:39.2385020Z * [new tag] ciflow/inductor/144414 -> ciflow/inductor/144414 2025-01-24T02:40:39.2388910Z * [new tag] ciflow/inductor/144420 -> ciflow/inductor/144420 2025-01-24T02:40:39.2392650Z * [new tag] ciflow/inductor/144421 -> ciflow/inductor/144421 2025-01-24T02:40:39.2393470Z * [new tag] ciflow/inductor/144422 -> ciflow/inductor/144422 2025-01-24T02:40:39.2395050Z * [new tag] ciflow/inductor/144423 -> ciflow/inductor/144423 2025-01-24T02:40:39.2400650Z * [new tag] ciflow/inductor/144424 -> ciflow/inductor/144424 2025-01-24T02:40:39.2402150Z * [new tag] ciflow/inductor/144438 -> ciflow/inductor/144438 2025-01-24T02:40:39.2403330Z * [new tag] ciflow/inductor/144452 -> ciflow/inductor/144452 2025-01-24T02:40:39.2407530Z * [new tag] ciflow/inductor/144458 -> ciflow/inductor/144458 2025-01-24T02:40:39.2409360Z * [new tag] ciflow/inductor/144485 -> ciflow/inductor/144485 2025-01-24T02:40:39.2415930Z * [new tag] ciflow/inductor/144492 -> ciflow/inductor/144492 2025-01-24T02:40:39.2418880Z * [new tag] ciflow/inductor/144501 -> ciflow/inductor/144501 2025-01-24T02:40:39.2424610Z * [new tag] ciflow/inductor/144505 -> ciflow/inductor/144505 2025-01-24T02:40:39.2426060Z * [new tag] ciflow/inductor/144507 -> ciflow/inductor/144507 2025-01-24T02:40:39.2432330Z * [new tag] ciflow/inductor/144513 -> ciflow/inductor/144513 2025-01-24T02:40:39.2434150Z * [new tag] ciflow/inductor/144515 -> ciflow/inductor/144515 2025-01-24T02:40:39.2439880Z * [new tag] ciflow/inductor/144516 -> ciflow/inductor/144516 2025-01-24T02:40:39.2440900Z * [new tag] ciflow/inductor/144526 -> ciflow/inductor/144526 2025-01-24T02:40:39.2442480Z * [new tag] ciflow/inductor/144527 -> ciflow/inductor/144527 2025-01-24T02:40:39.2447920Z * [new tag] ciflow/inductor/144528 -> ciflow/inductor/144528 2025-01-24T02:40:39.2449200Z * [new tag] ciflow/inductor/144542 -> ciflow/inductor/144542 2025-01-24T02:40:39.2455840Z * [new tag] ciflow/inductor/144546 -> ciflow/inductor/144546 2025-01-24T02:40:39.2456910Z * [new tag] ciflow/inductor/144547 -> ciflow/inductor/144547 2025-01-24T02:40:39.2463530Z * [new tag] ciflow/inductor/144549 -> ciflow/inductor/144549 2025-01-24T02:40:39.2464830Z * [new tag] ciflow/inductor/144550 -> ciflow/inductor/144550 2025-01-24T02:40:39.2465760Z * [new tag] ciflow/inductor/144551 -> ciflow/inductor/144551 2025-01-24T02:40:39.2470490Z * [new tag] ciflow/inductor/144553 -> ciflow/inductor/144553 2025-01-24T02:40:39.2471920Z * [new tag] ciflow/inductor/144555 -> ciflow/inductor/144555 2025-01-24T02:40:39.2478710Z * [new tag] ciflow/inductor/144556 -> ciflow/inductor/144556 2025-01-24T02:40:39.2479710Z * [new tag] ciflow/inductor/144569 -> ciflow/inductor/144569 2025-01-24T02:40:39.2487390Z * [new tag] ciflow/inductor/144579 -> ciflow/inductor/144579 2025-01-24T02:40:39.2488890Z * [new tag] ciflow/inductor/144598 -> ciflow/inductor/144598 2025-01-24T02:40:39.2489750Z * [new tag] ciflow/inductor/144640 -> ciflow/inductor/144640 2025-01-24T02:40:39.2494880Z * [new tag] ciflow/inductor/144642 -> ciflow/inductor/144642 2025-01-24T02:40:39.2496450Z * [new tag] ciflow/inductor/144646 -> ciflow/inductor/144646 2025-01-24T02:40:39.2497990Z * [new tag] ciflow/inductor/144695 -> ciflow/inductor/144695 2025-01-24T02:40:39.2503850Z * [new tag] ciflow/inductor/144700 -> ciflow/inductor/144700 2025-01-24T02:40:39.2505060Z * [new tag] ciflow/inductor/144707 -> ciflow/inductor/144707 2025-01-24T02:40:39.2511520Z * [new tag] ciflow/inductor/144712 -> ciflow/inductor/144712 2025-01-24T02:40:39.2513450Z * [new tag] ciflow/inductor/144721 -> ciflow/inductor/144721 2025-01-24T02:40:39.2519840Z * [new tag] ciflow/inductor/144724 -> ciflow/inductor/144724 2025-01-24T02:40:39.2521230Z * [new tag] ciflow/inductor/144733 -> ciflow/inductor/144733 2025-01-24T02:40:39.2522370Z * [new tag] ciflow/inductor/144741 -> ciflow/inductor/144741 2025-01-24T02:40:39.2527910Z * [new tag] ciflow/inductor/144765 -> ciflow/inductor/144765 2025-01-24T02:40:39.2529470Z * [new tag] ciflow/inductor/144771 -> ciflow/inductor/144771 2025-01-24T02:40:39.2535160Z * [new tag] ciflow/inductor/144773 -> ciflow/inductor/144773 2025-01-24T02:40:39.2537020Z * [new tag] ciflow/inductor/144829 -> ciflow/inductor/144829 2025-01-24T02:40:39.2542560Z * [new tag] ciflow/inductor/144865 -> ciflow/inductor/144865 2025-01-24T02:40:39.2544510Z * [new tag] ciflow/inductor/144880 -> ciflow/inductor/144880 2025-01-24T02:40:39.2545700Z * [new tag] ciflow/inductor/144894 -> ciflow/inductor/144894 2025-01-24T02:40:39.2551740Z * [new tag] ciflow/inductor/144905 -> ciflow/inductor/144905 2025-01-24T02:40:39.2553210Z * [new tag] ciflow/inductor/144925 -> ciflow/inductor/144925 2025-01-24T02:40:39.2559580Z * [new tag] ciflow/inductor/144940 -> ciflow/inductor/144940 2025-01-24T02:40:39.2560480Z * [new tag] ciflow/inductor/144943 -> ciflow/inductor/144943 2025-01-24T02:40:39.2567350Z * [new tag] ciflow/inductor/144953 -> ciflow/inductor/144953 2025-01-24T02:40:39.2569440Z * [new tag] ciflow/inductor/144974 -> ciflow/inductor/144974 2025-01-24T02:40:39.2571380Z * [new tag] ciflow/inductor/144975 -> ciflow/inductor/144975 2025-01-24T02:40:39.2577090Z * [new tag] ciflow/inductor/144979 -> ciflow/inductor/144979 2025-01-24T02:40:39.2584900Z * [new tag] ciflow/inductor/144980 -> ciflow/inductor/144980 2025-01-24T02:40:39.2590240Z * [new tag] ciflow/inductor/144985 -> ciflow/inductor/144985 2025-01-24T02:40:39.2592240Z * [new tag] ciflow/inductor/144986 -> ciflow/inductor/144986 2025-01-24T02:40:39.2593210Z * [new tag] ciflow/inductor/144999 -> ciflow/inductor/144999 2025-01-24T02:40:39.2599110Z * [new tag] ciflow/inductor/145024 -> ciflow/inductor/145024 2025-01-24T02:40:39.2600280Z * [new tag] ciflow/inductor/145047 -> ciflow/inductor/145047 2025-01-24T02:40:39.2602520Z * [new tag] ciflow/inductor/145059 -> ciflow/inductor/145059 2025-01-24T02:40:39.2608520Z * [new tag] ciflow/inductor/145061 -> ciflow/inductor/145061 2025-01-24T02:40:39.2609970Z * [new tag] ciflow/inductor/145082 -> ciflow/inductor/145082 2025-01-24T02:40:39.2616790Z * [new tag] ciflow/inductor/145083 -> ciflow/inductor/145083 2025-01-24T02:40:39.2617740Z * [new tag] ciflow/inductor/145095 -> ciflow/inductor/145095 2025-01-24T02:40:39.2624270Z * [new tag] ciflow/inductor/145103 -> ciflow/inductor/145103 2025-01-24T02:40:39.2625180Z * [new tag] ciflow/inductor/145104 -> ciflow/inductor/145104 2025-01-24T02:40:39.2626770Z * [new tag] ciflow/inductor/145117 -> ciflow/inductor/145117 2025-01-24T02:40:39.2632390Z * [new tag] ciflow/inductor/145119 -> ciflow/inductor/145119 2025-01-24T02:40:39.2633820Z * [new tag] ciflow/inductor/145120 -> ciflow/inductor/145120 2025-01-24T02:40:39.2640870Z * [new tag] ciflow/inductor/145122 -> ciflow/inductor/145122 2025-01-24T02:40:39.2641810Z * [new tag] ciflow/inductor/145128 -> ciflow/inductor/145128 2025-01-24T02:40:39.2643490Z * [new tag] ciflow/inductor/145130 -> ciflow/inductor/145130 2025-01-24T02:40:39.2648880Z * [new tag] ciflow/inductor/145132 -> ciflow/inductor/145132 2025-01-24T02:40:39.2649780Z * [new tag] ciflow/inductor/145148 -> ciflow/inductor/145148 2025-01-24T02:40:39.2656480Z * [new tag] ciflow/inductor/145150 -> ciflow/inductor/145150 2025-01-24T02:40:39.2657940Z * [new tag] ciflow/inductor/145153 -> ciflow/inductor/145153 2025-01-24T02:40:39.2658940Z * [new tag] ciflow/inductor/145156 -> ciflow/inductor/145156 2025-01-24T02:40:39.2664880Z * [new tag] ciflow/inductor/145194 -> ciflow/inductor/145194 2025-01-24T02:40:39.2669810Z * [new tag] ciflow/inductor/145196 -> ciflow/inductor/145196 2025-01-24T02:40:39.2672570Z * [new tag] ciflow/inductor/145204 -> ciflow/inductor/145204 2025-01-24T02:40:39.2674310Z * [new tag] ciflow/inductor/145223 -> ciflow/inductor/145223 2025-01-24T02:40:39.2675010Z * [new tag] ciflow/inductor/145245 -> ciflow/inductor/145245 2025-01-24T02:40:39.2682340Z * [new tag] ciflow/inductor/145248 -> ciflow/inductor/145248 2025-01-24T02:40:39.2683780Z * [new tag] ciflow/inductor/145250 -> ciflow/inductor/145250 2025-01-24T02:40:39.2690260Z * [new tag] ciflow/inductor/145254 -> ciflow/inductor/145254 2025-01-24T02:40:39.2691750Z * [new tag] ciflow/inductor/145303 -> ciflow/inductor/145303 2025-01-24T02:40:39.2698060Z * [new tag] ciflow/inductor/145307 -> ciflow/inductor/145307 2025-01-24T02:40:39.2698810Z * [new tag] ciflow/inductor/145311 -> ciflow/inductor/145311 2025-01-24T02:40:39.2700440Z * [new tag] ciflow/inductor/145318 -> ciflow/inductor/145318 2025-01-24T02:40:39.2705700Z * [new tag] ciflow/inductor/145321 -> ciflow/inductor/145321 2025-01-24T02:40:39.2707200Z * [new tag] ciflow/inductor/145323 -> ciflow/inductor/145323 2025-01-24T02:40:39.2713100Z * [new tag] ciflow/inductor/145331 -> ciflow/inductor/145331 2025-01-24T02:40:39.2714150Z * [new tag] ciflow/inductor/145353 -> ciflow/inductor/145353 2025-01-24T02:40:39.2715680Z * [new tag] ciflow/inductor/145354 -> ciflow/inductor/145354 2025-01-24T02:40:39.2722250Z * [new tag] ciflow/inductor/145373 -> ciflow/inductor/145373 2025-01-24T02:40:39.2723720Z * [new tag] ciflow/inductor/145375 -> ciflow/inductor/145375 2025-01-24T02:40:39.2729750Z * [new tag] ciflow/inductor/145381 -> ciflow/inductor/145381 2025-01-24T02:40:39.2730870Z * [new tag] ciflow/inductor/145400 -> ciflow/inductor/145400 2025-01-24T02:40:39.2737950Z * [new tag] ciflow/inductor/145403 -> ciflow/inductor/145403 2025-01-24T02:40:39.2739450Z * [new tag] ciflow/inductor/145407 -> ciflow/inductor/145407 2025-01-24T02:40:39.2745500Z * [new tag] ciflow/inductor/145415 -> ciflow/inductor/145415 2025-01-24T02:40:39.2747630Z * [new tag] ciflow/inductor/145421 -> ciflow/inductor/145421 2025-01-24T02:40:39.2752910Z * [new tag] ciflow/inductor/145422 -> ciflow/inductor/145422 2025-01-24T02:40:39.2754370Z * [new tag] ciflow/inductor/145426 -> ciflow/inductor/145426 2025-01-24T02:40:39.2756260Z * [new tag] ciflow/inductor/145427 -> ciflow/inductor/145427 2025-01-24T02:40:39.2761690Z * [new tag] ciflow/inductor/145429 -> ciflow/inductor/145429 2025-01-24T02:40:39.2762950Z * [new tag] ciflow/inductor/145431 -> ciflow/inductor/145431 2025-01-24T02:40:39.2765270Z * [new tag] ciflow/inductor/145435 -> ciflow/inductor/145435 2025-01-24T02:40:39.2771470Z * [new tag] ciflow/inductor/145448 -> ciflow/inductor/145448 2025-01-24T02:40:39.2773560Z * [new tag] ciflow/inductor/145455 -> ciflow/inductor/145455 2025-01-24T02:40:39.2777420Z * [new tag] ciflow/inductor/145459 -> ciflow/inductor/145459 2025-01-24T02:40:39.2779410Z * [new tag] ciflow/inductor/145475 -> ciflow/inductor/145475 2025-01-24T02:40:39.2782040Z * [new tag] ciflow/inductor/145479 -> ciflow/inductor/145479 2025-01-24T02:40:39.2786210Z * [new tag] ciflow/inductor/145490 -> ciflow/inductor/145490 2025-01-24T02:40:39.2787880Z * [new tag] ciflow/inductor/145506 -> ciflow/inductor/145506 2025-01-24T02:40:39.2794410Z * [new tag] ciflow/inductor/145509 -> ciflow/inductor/145509 2025-01-24T02:40:39.2795870Z * [new tag] ciflow/inductor/145513 -> ciflow/inductor/145513 2025-01-24T02:40:39.2802220Z * [new tag] ciflow/inductor/145515 -> ciflow/inductor/145515 2025-01-24T02:40:39.2803660Z * [new tag] ciflow/inductor/145518 -> ciflow/inductor/145518 2025-01-24T02:40:39.2809640Z * [new tag] ciflow/inductor/145519 -> ciflow/inductor/145519 2025-01-24T02:40:39.2811160Z * [new tag] ciflow/inductor/145523 -> ciflow/inductor/145523 2025-01-24T02:40:39.2812450Z * [new tag] ciflow/inductor/145527 -> ciflow/inductor/145527 2025-01-24T02:40:39.2817690Z * [new tag] ciflow/inductor/145532 -> ciflow/inductor/145532 2025-01-24T02:40:39.2819150Z * [new tag] ciflow/inductor/145533 -> ciflow/inductor/145533 2025-01-24T02:40:39.2825920Z * [new tag] ciflow/inductor/145537 -> ciflow/inductor/145537 2025-01-24T02:40:39.2827060Z * [new tag] ciflow/inductor/145538 -> ciflow/inductor/145538 2025-01-24T02:40:39.2832740Z * [new tag] ciflow/inductor/145539 -> ciflow/inductor/145539 2025-01-24T02:40:39.2834450Z * [new tag] ciflow/inductor/145540 -> ciflow/inductor/145540 2025-01-24T02:40:39.2835310Z * [new tag] ciflow/inductor/145542 -> ciflow/inductor/145542 2025-01-24T02:40:39.2842600Z * [new tag] ciflow/inductor/145545 -> ciflow/inductor/145545 2025-01-24T02:40:39.2844080Z * [new tag] ciflow/inductor/145546 -> ciflow/inductor/145546 2025-01-24T02:40:39.2850090Z * [new tag] ciflow/inductor/145547 -> ciflow/inductor/145547 2025-01-24T02:40:39.2851520Z * [new tag] ciflow/inductor/145548 -> ciflow/inductor/145548 2025-01-24T02:40:39.2858390Z * [new tag] ciflow/inductor/145549 -> ciflow/inductor/145549 2025-01-24T02:40:39.2859820Z * [new tag] ciflow/inductor/145551 -> ciflow/inductor/145551 2025-01-24T02:40:39.2860800Z * [new tag] ciflow/inductor/145552 -> ciflow/inductor/145552 2025-01-24T02:40:39.2865950Z * [new tag] ciflow/inductor/145553 -> ciflow/inductor/145553 2025-01-24T02:40:39.2867210Z * [new tag] ciflow/inductor/145554 -> ciflow/inductor/145554 2025-01-24T02:40:39.2874150Z * [new tag] ciflow/inductor/145558 -> ciflow/inductor/145558 2025-01-24T02:40:39.2875650Z * [new tag] ciflow/inductor/145559 -> ciflow/inductor/145559 2025-01-24T02:40:39.2876950Z * [new tag] ciflow/inductor/145562 -> ciflow/inductor/145562 2025-01-24T02:40:39.2882170Z * [new tag] ciflow/inductor/145565 -> ciflow/inductor/145565 2025-01-24T02:40:39.2883070Z * [new tag] ciflow/inductor/145569 -> ciflow/inductor/145569 2025-01-24T02:40:39.2889420Z * [new tag] ciflow/inductor/145572 -> ciflow/inductor/145572 2025-01-24T02:40:39.2891290Z * [new tag] ciflow/inductor/145573 -> ciflow/inductor/145573 2025-01-24T02:40:39.2892150Z * [new tag] ciflow/inductor/145575 -> ciflow/inductor/145575 2025-01-24T02:40:39.2899020Z * [new tag] ciflow/inductor/145576 -> ciflow/inductor/145576 2025-01-24T02:40:39.2900510Z * [new tag] ciflow/inductor/145577 -> ciflow/inductor/145577 2025-01-24T02:40:39.2906470Z * [new tag] ciflow/inductor/145579 -> ciflow/inductor/145579 2025-01-24T02:40:39.2907720Z * [new tag] ciflow/inductor/3b9a386 -> ciflow/inductor/3b9a386 2025-01-24T02:40:39.2914850Z * [new tag] ciflow/inductor/3d4b92b -> ciflow/inductor/3d4b92b 2025-01-24T02:40:39.2916410Z * [new tag] ciflow/inductor/88106 -> ciflow/inductor/88106 2025-01-24T02:40:39.2922350Z * [new tag] ciflow/inductor/88196 -> ciflow/inductor/88196 2025-01-24T02:40:39.2924520Z * [new tag] ciflow/inductor/88998 -> ciflow/inductor/88998 2025-01-24T02:40:39.2929740Z * [new tag] ciflow/inductor/d224ac7 -> ciflow/inductor/d224ac7 2025-01-24T02:40:39.2931410Z * [new tag] ciflow/linux-aarch64/125888 -> ciflow/linux-aarch64/125888 2025-01-24T02:40:39.2932350Z * [new tag] ciflow/linux-aarch64/126050 -> ciflow/linux-aarch64/126050 2025-01-24T02:40:39.2938020Z * [new tag] ciflow/linux-aarch64/126054 -> ciflow/linux-aarch64/126054 2025-01-24T02:40:39.2939050Z * [new tag] ciflow/linux-aarch64/133297 -> ciflow/linux-aarch64/133297 2025-01-24T02:40:39.2945230Z * [new tag] ciflow/linux-aarch64/133315 -> ciflow/linux-aarch64/133315 2025-01-24T02:40:39.2947450Z * [new tag] ciflow/linux-aarch64/133392 -> ciflow/linux-aarch64/133392 2025-01-24T02:40:39.2953430Z * [new tag] ciflow/linux-aarch64/133419 -> ciflow/linux-aarch64/133419 2025-01-24T02:40:39.2954480Z * [new tag] ciflow/linux-aarch64/133423 -> ciflow/linux-aarch64/133423 2025-01-24T02:40:39.2956030Z * [new tag] ciflow/linux-aarch64/133667 -> ciflow/linux-aarch64/133667 2025-01-24T02:40:39.2960880Z * [new tag] ciflow/linux-aarch64/133753 -> ciflow/linux-aarch64/133753 2025-01-24T02:40:39.2962660Z * [new tag] ciflow/linux-aarch64/135058 -> ciflow/linux-aarch64/135058 2025-01-24T02:40:39.2969540Z * [new tag] ciflow/linux-aarch64/135333 -> ciflow/linux-aarch64/135333 2025-01-24T02:40:39.2970460Z * [new tag] ciflow/linux-aarch64/135792 -> ciflow/linux-aarch64/135792 2025-01-24T02:40:39.2976520Z * [new tag] ciflow/linux-aarch64/136355 -> ciflow/linux-aarch64/136355 2025-01-24T02:40:39.2980520Z * [new tag] ciflow/linux-aarch64/137562 -> ciflow/linux-aarch64/137562 2025-01-24T02:40:39.2984290Z * [new tag] ciflow/linux-aarch64/137568 -> ciflow/linux-aarch64/137568 2025-01-24T02:40:39.2988760Z * [new tag] ciflow/linux-aarch64/137995 -> ciflow/linux-aarch64/137995 2025-01-24T02:40:39.2989770Z * [new tag] ciflow/linux-aarch64/138388 -> ciflow/linux-aarch64/138388 2025-01-24T02:40:39.2997610Z * [new tag] ciflow/linux-aarch64/138889 -> ciflow/linux-aarch64/138889 2025-01-24T02:40:39.2998160Z * [new tag] ciflow/linux-aarch64/139243 -> ciflow/linux-aarch64/139243 2025-01-24T02:40:39.2999170Z * [new tag] ciflow/linux-aarch64/139973 -> ciflow/linux-aarch64/139973 2025-01-24T02:40:39.3003990Z * [new tag] ciflow/linux-aarch64/140159 -> ciflow/linux-aarch64/140159 2025-01-24T02:40:39.3007590Z * [new tag] ciflow/linux-aarch64/140362 -> ciflow/linux-aarch64/140362 2025-01-24T02:40:39.3011900Z * [new tag] ciflow/linux-aarch64/142501 -> ciflow/linux-aarch64/142501 2025-01-24T02:40:39.3013440Z * [new tag] ciflow/linux-aarch64/142760 -> ciflow/linux-aarch64/142760 2025-01-24T02:40:39.3016890Z * [new tag] ciflow/linux-aarch64/143741 -> ciflow/linux-aarch64/143741 2025-01-24T02:40:39.3020680Z * [new tag] ciflow/mps/102148 -> ciflow/mps/102148 2025-01-24T02:40:39.3024310Z * [new tag] ciflow/mps/119496 -> ciflow/mps/119496 2025-01-24T02:40:39.3025810Z * [new tag] ciflow/mps/120076 -> ciflow/mps/120076 2025-01-24T02:40:39.3029850Z * [new tag] ciflow/mps/133423 -> ciflow/mps/133423 2025-01-24T02:40:39.3033560Z * [new tag] ciflow/mps/133667 -> ciflow/mps/133667 2025-01-24T02:40:39.3037930Z * [new tag] ciflow/mps/137562 -> ciflow/mps/137562 2025-01-24T02:40:39.3039430Z * [new tag] ciflow/mps/138640 -> ciflow/mps/138640 2025-01-24T02:40:39.3043250Z * [new tag] ciflow/mps/139469 -> ciflow/mps/139469 2025-01-24T02:40:39.3046940Z * [new tag] ciflow/mps/140159 -> ciflow/mps/140159 2025-01-24T02:40:39.3051320Z * [new tag] ciflow/mps/140211 -> ciflow/mps/140211 2025-01-24T02:40:39.3052460Z * [new tag] ciflow/mps/140371 -> ciflow/mps/140371 2025-01-24T02:40:39.3056880Z * [new tag] ciflow/mps/140725 -> ciflow/mps/140725 2025-01-24T02:40:39.3060450Z * [new tag] ciflow/mps/140869 -> ciflow/mps/140869 2025-01-24T02:40:39.3064560Z * [new tag] ciflow/mps/141795 -> ciflow/mps/141795 2025-01-24T02:40:39.3066150Z * [new tag] ciflow/mps/142202 -> ciflow/mps/142202 2025-01-24T02:40:39.3070190Z * [new tag] ciflow/mps/142477 -> ciflow/mps/142477 2025-01-24T02:40:39.3073810Z * [new tag] ciflow/mps/143630 -> ciflow/mps/143630 2025-01-24T02:40:39.3078630Z * [new tag] ciflow/mps/143656 -> ciflow/mps/143656 2025-01-24T02:40:39.3087200Z * [new tag] ciflow/mps/143911 -> ciflow/mps/143911 2025-01-24T02:40:39.3091390Z * [new tag] ciflow/mps/143966 -> ciflow/mps/143966 2025-01-24T02:40:39.3092830Z * [new tag] ciflow/mps/144193 -> ciflow/mps/144193 2025-01-24T02:40:39.3096550Z * [new tag] ciflow/mps/144405 -> ciflow/mps/144405 2025-01-24T02:40:39.3100030Z * [new tag] ciflow/mps/144664 -> ciflow/mps/144664 2025-01-24T02:40:39.3103890Z * [new tag] ciflow/mps/145512 -> ciflow/mps/145512 2025-01-24T02:40:39.3104690Z * [new tag] ciflow/mps/145526 -> ciflow/mps/145526 2025-01-24T02:40:39.3109810Z * [new tag] ciflow/mps/145533 -> ciflow/mps/145533 2025-01-24T02:40:39.3113170Z * [new tag] ciflow/mps/145568 -> ciflow/mps/145568 2025-01-24T02:40:39.3117980Z * [new tag] ciflow/mps/145578 -> ciflow/mps/145578 2025-01-24T02:40:39.3119750Z * [new tag] ciflow/periodic/054a2fd -> ciflow/periodic/054a2fd 2025-01-24T02:40:39.3122790Z * [new tag] ciflow/periodic/123020 -> ciflow/periodic/123020 2025-01-24T02:40:39.3126790Z * [new tag] ciflow/periodic/131296 -> ciflow/periodic/131296 2025-01-24T02:40:39.3130480Z * [new tag] ciflow/periodic/131493 -> ciflow/periodic/131493 2025-01-24T02:40:39.3131420Z * [new tag] ciflow/periodic/132742 -> ciflow/periodic/132742 2025-01-24T02:40:39.3135550Z * [new tag] ciflow/periodic/132755 -> ciflow/periodic/132755 2025-01-24T02:40:39.3139580Z * [new tag] ciflow/periodic/134817 -> ciflow/periodic/134817 2025-01-24T02:40:39.3144710Z * [new tag] ciflow/periodic/138503 -> ciflow/periodic/138503 2025-01-24T02:40:39.3147930Z * [new tag] ciflow/periodic/138573 -> ciflow/periodic/138573 2025-01-24T02:40:39.3149450Z * [new tag] ciflow/periodic/139225 -> ciflow/periodic/139225 2025-01-24T02:40:39.3154300Z * [new tag] ciflow/periodic/139576 -> ciflow/periodic/139576 2025-01-24T02:40:39.3155620Z * [new tag] ciflow/periodic/140293 -> ciflow/periodic/140293 2025-01-24T02:40:39.3161970Z * [new tag] ciflow/periodic/140989 -> ciflow/periodic/140989 2025-01-24T02:40:39.3162810Z * [new tag] ciflow/periodic/141168 -> ciflow/periodic/141168 2025-01-24T02:40:39.3169040Z * [new tag] ciflow/periodic/141309 -> ciflow/periodic/141309 2025-01-24T02:40:39.3170140Z * [new tag] ciflow/periodic/141355 -> ciflow/periodic/141355 2025-01-24T02:40:39.3173950Z * [new tag] ciflow/periodic/141588 -> ciflow/periodic/141588 2025-01-24T02:40:39.3177230Z * [new tag] ciflow/periodic/141730 -> ciflow/periodic/141730 2025-01-24T02:40:39.3183490Z * [new tag] ciflow/periodic/142179 -> ciflow/periodic/142179 2025-01-24T02:40:39.3185700Z * [new tag] ciflow/periodic/143806 -> ciflow/periodic/143806 2025-01-24T02:40:39.3191630Z * [new tag] ciflow/periodic/143959 -> ciflow/periodic/143959 2025-01-24T02:40:39.3193070Z * [new tag] ciflow/periodic/144953 -> ciflow/periodic/144953 2025-01-24T02:40:39.3199770Z * [new tag] ciflow/periodic/145130 -> ciflow/periodic/145130 2025-01-24T02:40:39.3200750Z * [new tag] ciflow/periodic/145416 -> ciflow/periodic/145416 2025-01-24T02:40:39.3207430Z * [new tag] ciflow/periodic/145504 -> ciflow/periodic/145504 2025-01-24T02:40:39.3208970Z * [new tag] ciflow/periodic/2a6d37d -> ciflow/periodic/2a6d37d 2025-01-24T02:40:39.3210470Z * [new tag] ciflow/periodic/317eeb8 -> ciflow/periodic/317eeb8 2025-01-24T02:40:39.3214520Z * [new tag] ciflow/periodic/3c32 -> ciflow/periodic/3c32 2025-01-24T02:40:39.3216080Z * [new tag] ciflow/periodic/3e98831 -> ciflow/periodic/3e98831 2025-01-24T02:40:39.3222540Z * [new tag] ciflow/periodic/94512-point -> ciflow/periodic/94512-point 2025-01-24T02:40:39.3224290Z * [new tag] ciflow/periodic/csl/test87519 -> ciflow/periodic/csl/test87519 2025-01-24T02:40:39.3230060Z * [new tag] ciflow/periodic/csltest88275 -> ciflow/periodic/csltest88275 2025-01-24T02:40:39.3231050Z * [new tag] ciflow/periodic/csltest88761 -> ciflow/periodic/csltest88761 2025-01-24T02:40:39.3232730Z * [new tag] ciflow/periodic/release_1.12 -> ciflow/periodic/release_1.12 2025-01-24T02:40:39.3237360Z * [new tag] ciflow/periodic/release_1.12.0 -> ciflow/periodic/release_1.12.0 2025-01-24T02:40:39.3238450Z * [new tag] ciflow/periodic/sha-ec5b83 -> ciflow/periodic/sha-ec5b83 2025-01-24T02:40:39.3246890Z * [new tag] ciflow/rocm/121885 -> ciflow/rocm/121885 2025-01-24T02:40:39.3252750Z * [new tag] ciflow/rocm/124424 -> ciflow/rocm/124424 2025-01-24T02:40:39.3253750Z * [new tag] ciflow/rocm/129409 -> ciflow/rocm/129409 2025-01-24T02:40:39.3255260Z * [new tag] ciflow/rocm/134817 -> ciflow/rocm/134817 2025-01-24T02:40:39.3262050Z * [new tag] ciflow/rocm/137136 -> ciflow/rocm/137136 2025-01-24T02:40:39.3263450Z * [new tag] ciflow/rocm/138964 -> ciflow/rocm/138964 2025-01-24T02:40:39.3269820Z * [new tag] ciflow/rocm/139469 -> ciflow/rocm/139469 2025-01-24T02:40:39.3270800Z * [new tag] ciflow/rocm/139975 -> ciflow/rocm/139975 2025-01-24T02:40:39.3277250Z * [new tag] ciflow/rocm/140261 -> ciflow/rocm/140261 2025-01-24T02:40:39.3278100Z * [new tag] ciflow/rocm/140293 -> ciflow/rocm/140293 2025-01-24T02:40:39.3279640Z * [new tag] ciflow/rocm/140989 -> ciflow/rocm/140989 2025-01-24T02:40:39.3284910Z * [new tag] ciflow/rocm/141309 -> ciflow/rocm/141309 2025-01-24T02:40:39.3286330Z * [new tag] ciflow/rocm/141355 -> ciflow/rocm/141355 2025-01-24T02:40:39.3293010Z * [new tag] ciflow/rocm/142408 -> ciflow/rocm/142408 2025-01-24T02:40:39.3293980Z * [new tag] ciflow/rocm/143286 -> ciflow/rocm/143286 2025-01-24T02:40:39.3295650Z * [new tag] ciflow/rocm/143416 -> ciflow/rocm/143416 2025-01-24T02:40:39.3301960Z * [new tag] ciflow/rocm/143971 -> ciflow/rocm/143971 2025-01-24T02:40:39.3303370Z * [new tag] ciflow/rocm/144120 -> ciflow/rocm/144120 2025-01-24T02:40:39.3309840Z * [new tag] ciflow/rocm/144441 -> ciflow/rocm/144441 2025-01-24T02:40:39.3311280Z * [new tag] ciflow/rocm/144476 -> ciflow/rocm/144476 2025-01-24T02:40:39.3321650Z * [new tag] ciflow/rocm/144572 -> ciflow/rocm/144572 2025-01-24T02:40:39.3322120Z * [new tag] ciflow/rocm/144664 -> ciflow/rocm/144664 2025-01-24T02:40:39.3322560Z * [new tag] ciflow/rocm/144865 -> ciflow/rocm/144865 2025-01-24T02:40:39.3325410Z * [new tag] ciflow/rocm/144942 -> ciflow/rocm/144942 2025-01-24T02:40:39.3326850Z * [new tag] ciflow/rocm/144985 -> ciflow/rocm/144985 2025-01-24T02:40:39.3333140Z * [new tag] ciflow/rocm/145083 -> ciflow/rocm/145083 2025-01-24T02:40:39.3334390Z * [new tag] ciflow/rocm/145130 -> ciflow/rocm/145130 2025-01-24T02:40:39.3336280Z * [new tag] ciflow/rocm/145227 -> ciflow/rocm/145227 2025-01-24T02:40:39.3340680Z * [new tag] ciflow/rocm/145294 -> ciflow/rocm/145294 2025-01-24T02:40:39.3342170Z * [new tag] ciflow/rocm/145416 -> ciflow/rocm/145416 2025-01-24T02:40:39.3348720Z * [new tag] ciflow/rocm/145475 -> ciflow/rocm/145475 2025-01-24T02:40:39.3350120Z * [new tag] ciflow/rocm/145490 -> ciflow/rocm/145490 2025-01-24T02:40:39.3356290Z * [new tag] ciflow/rocm/145504 -> ciflow/rocm/145504 2025-01-24T02:40:39.3357880Z * [new tag] ciflow/rocm/145518 -> ciflow/rocm/145518 2025-01-24T02:40:39.3359380Z * [new tag] ciflow/s390/137995 -> ciflow/s390/137995 2025-01-24T02:40:39.3364260Z * [new tag] ciflow/s390/142346 -> ciflow/s390/142346 2025-01-24T02:40:39.3365210Z * [new tag] ciflow/s390/143959 -> ciflow/s390/143959 2025-01-24T02:40:39.3374050Z * [new tag] ciflow/slow/01c7106 -> ciflow/slow/01c7106 2025-01-24T02:40:39.3375460Z * [new tag] ciflow/slow/0577043 -> ciflow/slow/0577043 2025-01-24T02:40:39.3377340Z * [new tag] ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym -> ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym 2025-01-24T02:40:39.3380820Z * [new tag] ciflow/slow/0e81104 -> ciflow/slow/0e81104 2025-01-24T02:40:39.3381750Z * [new tag] ciflow/slow/139975 -> ciflow/slow/139975 2025-01-24T02:40:39.3383350Z * [new tag] ciflow/slow/141588 -> ciflow/slow/141588 2025-01-24T02:40:39.3384790Z * [new tag] ciflow/slow/144865 -> ciflow/slow/144865 2025-01-24T02:40:39.3390970Z * [new tag] ciflow/slow/145206 -> ciflow/slow/145206 2025-01-24T02:40:39.3392520Z * [new tag] ciflow/slow/1732077 -> ciflow/slow/1732077 2025-01-24T02:40:39.3398470Z * [new tag] ciflow/slow/187eb7c -> ciflow/slow/187eb7c 2025-01-24T02:40:39.3405260Z * [new tag] ciflow/slow/1faef89 -> ciflow/slow/1faef89 2025-01-24T02:40:39.3407080Z * [new tag] ciflow/slow/3920ec1 -> ciflow/slow/3920ec1 2025-01-24T02:40:39.3408870Z * [new tag] ciflow/slow/3b7c6b2 -> ciflow/slow/3b7c6b2 2025-01-24T02:40:39.3415280Z * [new tag] ciflow/slow/59a3759 -> ciflow/slow/59a3759 2025-01-24T02:40:39.3416170Z * [new tag] ciflow/slow/70ef0bb -> ciflow/slow/70ef0bb 2025-01-24T02:40:39.3422900Z * [new tag] ciflow/slow/788ff06 -> ciflow/slow/788ff06 2025-01-24T02:40:39.3424650Z * [new tag] ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym -> ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym 2025-01-24T02:40:39.3431190Z * [new tag] ciflow/slow/9d85864 -> ciflow/slow/9d85864 2025-01-24T02:40:39.3432160Z * [new tag] ciflow/slow/9ffad5b -> ciflow/slow/9ffad5b 2025-01-24T02:40:39.3433790Z * [new tag] ciflow/slow/a206e8b -> ciflow/slow/a206e8b 2025-01-24T02:40:39.3438940Z * [new tag] ciflow/slow/a837609 -> ciflow/slow/a837609 2025-01-24T02:40:39.3440030Z * [new tag] ciflow/slow/af841f3 -> ciflow/slow/af841f3 2025-01-24T02:40:39.3447400Z * [new tag] ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym -> ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym 2025-01-24T02:40:39.3448540Z * [new tag] ciflow/trunk/108303 -> ciflow/trunk/108303 2025-01-24T02:40:39.3450020Z * [new tag] ciflow/trunk/113257 -> ciflow/trunk/113257 2025-01-24T02:40:39.3454910Z * [new tag] ciflow/trunk/113258 -> ciflow/trunk/113258 2025-01-24T02:40:39.3455860Z * [new tag] ciflow/trunk/115749 -> ciflow/trunk/115749 2025-01-24T02:40:39.3462440Z * [new tag] ciflow/trunk/120076 -> ciflow/trunk/120076 2025-01-24T02:40:39.3464130Z * [new tag] ciflow/trunk/121445 -> ciflow/trunk/121445 2025-01-24T02:40:39.3470840Z * [new tag] ciflow/trunk/123020 -> ciflow/trunk/123020 2025-01-24T02:40:39.3472290Z * [new tag] ciflow/trunk/124424 -> ciflow/trunk/124424 2025-01-24T02:40:39.3473280Z * [new tag] ciflow/trunk/124490 -> ciflow/trunk/124490 2025-01-24T02:40:39.3478450Z * [new tag] ciflow/trunk/125469 -> ciflow/trunk/125469 2025-01-24T02:40:39.3479390Z * [new tag] ciflow/trunk/125806 -> ciflow/trunk/125806 2025-01-24T02:40:39.3486840Z * [new tag] ciflow/trunk/125888 -> ciflow/trunk/125888 2025-01-24T02:40:39.3488330Z * [new tag] ciflow/trunk/125995 -> ciflow/trunk/125995 2025-01-24T02:40:39.3495020Z * [new tag] ciflow/trunk/126050 -> ciflow/trunk/126050 2025-01-24T02:40:39.3496010Z * [new tag] ciflow/trunk/126054 -> ciflow/trunk/126054 2025-01-24T02:40:39.3497670Z * [new tag] ciflow/trunk/126635 -> ciflow/trunk/126635 2025-01-24T02:40:39.3503030Z * [new tag] ciflow/trunk/127171 -> ciflow/trunk/127171 2025-01-24T02:40:39.3504490Z * [new tag] ciflow/trunk/127370 -> ciflow/trunk/127370 2025-01-24T02:40:39.3510640Z * [new tag] ciflow/trunk/127919 -> ciflow/trunk/127919 2025-01-24T02:40:39.3512250Z * [new tag] ciflow/trunk/128672 -> ciflow/trunk/128672 2025-01-24T02:40:39.3513080Z * [new tag] ciflow/trunk/129352 -> ciflow/trunk/129352 2025-01-24T02:40:39.3518670Z * [new tag] ciflow/trunk/129409 -> ciflow/trunk/129409 2025-01-24T02:40:39.3519790Z * [new tag] ciflow/trunk/129420 -> ciflow/trunk/129420 2025-01-24T02:40:39.3526190Z * [new tag] ciflow/trunk/130140 -> ciflow/trunk/130140 2025-01-24T02:40:39.3527840Z * [new tag] ciflow/trunk/130141 -> ciflow/trunk/130141 2025-01-24T02:40:39.3528690Z * [new tag] ciflow/trunk/130752 -> ciflow/trunk/130752 2025-01-24T02:40:39.3536040Z * [new tag] ciflow/trunk/131296 -> ciflow/trunk/131296 2025-01-24T02:40:39.3537450Z * [new tag] ciflow/trunk/131354 -> ciflow/trunk/131354 2025-01-24T02:40:39.3544690Z * [new tag] ciflow/trunk/131481 -> ciflow/trunk/131481 2025-01-24T02:40:39.3545600Z * [new tag] ciflow/trunk/131493 -> ciflow/trunk/131493 2025-01-24T02:40:39.3552210Z * [new tag] ciflow/trunk/131507 -> ciflow/trunk/131507 2025-01-24T02:40:39.3553140Z * [new tag] ciflow/trunk/132021 -> ciflow/trunk/132021 2025-01-24T02:40:39.3554710Z * [new tag] ciflow/trunk/132742 -> ciflow/trunk/132742 2025-01-24T02:40:39.3559450Z * [new tag] ciflow/trunk/132755 -> ciflow/trunk/132755 2025-01-24T02:40:39.3560630Z * [new tag] ciflow/trunk/133044 -> ciflow/trunk/133044 2025-01-24T02:40:39.3566180Z * [new tag] ciflow/trunk/133222 -> ciflow/trunk/133222 2025-01-24T02:40:39.3567640Z * [new tag] ciflow/trunk/133289 -> ciflow/trunk/133289 2025-01-24T02:40:39.3568570Z * [new tag] ciflow/trunk/133296 -> ciflow/trunk/133296 2025-01-24T02:40:39.3570280Z * [new tag] ciflow/trunk/133297 -> ciflow/trunk/133297 2025-01-24T02:40:39.3571450Z * [new tag] ciflow/trunk/133315 -> ciflow/trunk/133315 2025-01-24T02:40:39.3577580Z * [new tag] ciflow/trunk/133392 -> ciflow/trunk/133392 2025-01-24T02:40:39.3578800Z * [new tag] ciflow/trunk/133419 -> ciflow/trunk/133419 2025-01-24T02:40:39.3580340Z * [new tag] ciflow/trunk/133423 -> ciflow/trunk/133423 2025-01-24T02:40:39.3585600Z * [new tag] ciflow/trunk/133667 -> ciflow/trunk/133667 2025-01-24T02:40:39.3588390Z * [new tag] ciflow/trunk/133753 -> ciflow/trunk/133753 2025-01-24T02:40:39.3595930Z * [new tag] ciflow/trunk/134219 -> ciflow/trunk/134219 2025-01-24T02:40:39.3597410Z * [new tag] ciflow/trunk/134515 -> ciflow/trunk/134515 2025-01-24T02:40:39.3603940Z * [new tag] ciflow/trunk/134667 -> ciflow/trunk/134667 2025-01-24T02:40:39.3605180Z * [new tag] ciflow/trunk/134969 -> ciflow/trunk/134969 2025-01-24T02:40:39.3606110Z * [new tag] ciflow/trunk/135058 -> ciflow/trunk/135058 2025-01-24T02:40:39.3611970Z * [new tag] ciflow/trunk/135189 -> ciflow/trunk/135189 2025-01-24T02:40:39.3613390Z * [new tag] ciflow/trunk/135337 -> ciflow/trunk/135337 2025-01-24T02:40:39.3623780Z * [new tag] ciflow/trunk/135338 -> ciflow/trunk/135338 2025-01-24T02:40:39.3624290Z * [new tag] ciflow/trunk/135465 -> ciflow/trunk/135465 2025-01-24T02:40:39.3624740Z * [new tag] ciflow/trunk/135631 -> ciflow/trunk/135631 2025-01-24T02:40:39.3626960Z * [new tag] ciflow/trunk/135719 -> ciflow/trunk/135719 2025-01-24T02:40:39.3629520Z * [new tag] ciflow/trunk/136241 -> ciflow/trunk/136241 2025-01-24T02:40:39.3634910Z * [new tag] ciflow/trunk/136824 -> ciflow/trunk/136824 2025-01-24T02:40:39.3636340Z * [new tag] ciflow/trunk/136835 -> ciflow/trunk/136835 2025-01-24T02:40:39.3638600Z * [new tag] ciflow/trunk/136993 -> ciflow/trunk/136993 2025-01-24T02:40:39.3644920Z * [new tag] ciflow/trunk/137400 -> ciflow/trunk/137400 2025-01-24T02:40:39.3646110Z * [new tag] ciflow/trunk/137570 -> ciflow/trunk/137570 2025-01-24T02:40:39.3653080Z * [new tag] ciflow/trunk/137580 -> ciflow/trunk/137580 2025-01-24T02:40:39.3654520Z * [new tag] ciflow/trunk/137726 -> ciflow/trunk/137726 2025-01-24T02:40:39.3661430Z * [new tag] ciflow/trunk/137822 -> ciflow/trunk/137822 2025-01-24T02:40:39.3662220Z * [new tag] ciflow/trunk/137921 -> ciflow/trunk/137921 2025-01-24T02:40:39.3663950Z * [new tag] ciflow/trunk/138175 -> ciflow/trunk/138175 2025-01-24T02:40:39.3669530Z * [new tag] ciflow/trunk/138213 -> ciflow/trunk/138213 2025-01-24T02:40:39.3670950Z * [new tag] ciflow/trunk/138618 -> ciflow/trunk/138618 2025-01-24T02:40:39.3677290Z * [new tag] ciflow/trunk/138626 -> ciflow/trunk/138626 2025-01-24T02:40:39.3678500Z * [new tag] ciflow/trunk/138628 -> ciflow/trunk/138628 2025-01-24T02:40:39.3680020Z * [new tag] ciflow/trunk/138672 -> ciflow/trunk/138672 2025-01-24T02:40:39.3684870Z * [new tag] ciflow/trunk/138684 -> ciflow/trunk/138684 2025-01-24T02:40:39.3686310Z * [new tag] ciflow/trunk/138749 -> ciflow/trunk/138749 2025-01-24T02:40:39.3692880Z * [new tag] ciflow/trunk/138871 -> ciflow/trunk/138871 2025-01-24T02:40:39.3693860Z * [new tag] ciflow/trunk/138889 -> ciflow/trunk/138889 2025-01-24T02:40:39.3695370Z * [new tag] ciflow/trunk/138923 -> ciflow/trunk/138923 2025-01-24T02:40:39.3701950Z * [new tag] ciflow/trunk/138938 -> ciflow/trunk/138938 2025-01-24T02:40:39.3703530Z * [new tag] ciflow/trunk/138964 -> ciflow/trunk/138964 2025-01-24T02:40:39.3709160Z * [new tag] ciflow/trunk/138996 -> ciflow/trunk/138996 2025-01-24T02:40:39.3710170Z * [new tag] ciflow/trunk/138998 -> ciflow/trunk/138998 2025-01-24T02:40:39.3717030Z * [new tag] ciflow/trunk/139094 -> ciflow/trunk/139094 2025-01-24T02:40:39.3718460Z * [new tag] ciflow/trunk/139135 -> ciflow/trunk/139135 2025-01-24T02:40:39.3719860Z * [new tag] ciflow/trunk/139171 -> ciflow/trunk/139171 2025-01-24T02:40:39.3724980Z * [new tag] ciflow/trunk/139217 -> ciflow/trunk/139217 2025-01-24T02:40:39.3726050Z * [new tag] ciflow/trunk/139219 -> ciflow/trunk/139219 2025-01-24T02:40:39.3732200Z * [new tag] ciflow/trunk/139225 -> ciflow/trunk/139225 2025-01-24T02:40:39.3733710Z * [new tag] ciflow/trunk/139308 -> ciflow/trunk/139308 2025-01-24T02:40:39.3740500Z * [new tag] ciflow/trunk/139338 -> ciflow/trunk/139338 2025-01-24T02:40:39.3742470Z * [new tag] ciflow/trunk/139380 -> ciflow/trunk/139380 2025-01-24T02:40:39.3748220Z * [new tag] ciflow/trunk/139426 -> ciflow/trunk/139426 2025-01-24T02:40:39.3749680Z * [new tag] ciflow/trunk/139535 -> ciflow/trunk/139535 2025-01-24T02:40:39.3755840Z * [new tag] ciflow/trunk/139576 -> ciflow/trunk/139576 2025-01-24T02:40:39.3757310Z * [new tag] ciflow/trunk/139750 -> ciflow/trunk/139750 2025-01-24T02:40:39.3763900Z * [new tag] ciflow/trunk/139796 -> ciflow/trunk/139796 2025-01-24T02:40:39.3765080Z * [new tag] ciflow/trunk/139820 -> ciflow/trunk/139820 2025-01-24T02:40:39.3766560Z * [new tag] ciflow/trunk/139864 -> ciflow/trunk/139864 2025-01-24T02:40:39.3772680Z * [new tag] ciflow/trunk/139919 -> ciflow/trunk/139919 2025-01-24T02:40:39.3773690Z * [new tag] ciflow/trunk/139932 -> ciflow/trunk/139932 2025-01-24T02:40:39.3780590Z * [new tag] ciflow/trunk/139966 -> ciflow/trunk/139966 2025-01-24T02:40:39.3781840Z * [new tag] ciflow/trunk/139971 -> ciflow/trunk/139971 2025-01-24T02:40:39.3783260Z * [new tag] ciflow/trunk/139975 -> ciflow/trunk/139975 2025-01-24T02:40:39.3788400Z * [new tag] ciflow/trunk/139976 -> ciflow/trunk/139976 2025-01-24T02:40:39.3791470Z * [new tag] ciflow/trunk/139985 -> ciflow/trunk/139985 2025-01-24T02:40:39.3795920Z * [new tag] ciflow/trunk/140061 -> ciflow/trunk/140061 2025-01-24T02:40:39.3796750Z * [new tag] ciflow/trunk/140084 -> ciflow/trunk/140084 2025-01-24T02:40:39.3799350Z * [new tag] ciflow/trunk/140159 -> ciflow/trunk/140159 2025-01-24T02:40:39.3803720Z * [new tag] ciflow/trunk/140200 -> ciflow/trunk/140200 2025-01-24T02:40:39.3805260Z * [new tag] ciflow/trunk/140211 -> ciflow/trunk/140211 2025-01-24T02:40:39.3811630Z * [new tag] ciflow/trunk/140256 -> ciflow/trunk/140256 2025-01-24T02:40:39.3812520Z * [new tag] ciflow/trunk/140298 -> ciflow/trunk/140298 2025-01-24T02:40:39.3820440Z * [new tag] ciflow/trunk/140323 -> ciflow/trunk/140323 2025-01-24T02:40:39.3821320Z * [new tag] ciflow/trunk/140362 -> ciflow/trunk/140362 2025-01-24T02:40:39.3823010Z * [new tag] ciflow/trunk/140365 -> ciflow/trunk/140365 2025-01-24T02:40:39.3828060Z * [new tag] ciflow/trunk/140399 -> ciflow/trunk/140399 2025-01-24T02:40:39.3829660Z * [new tag] ciflow/trunk/140677 -> ciflow/trunk/140677 2025-01-24T02:40:39.3835760Z * [new tag] ciflow/trunk/140734 -> ciflow/trunk/140734 2025-01-24T02:40:39.3837330Z * [new tag] ciflow/trunk/140793 -> ciflow/trunk/140793 2025-01-24T02:40:39.3838240Z * [new tag] ciflow/trunk/140836 -> ciflow/trunk/140836 2025-01-24T02:40:39.3845220Z * [new tag] ciflow/trunk/140868 -> ciflow/trunk/140868 2025-01-24T02:40:39.3846680Z * [new tag] ciflow/trunk/140989 -> ciflow/trunk/140989 2025-01-24T02:40:39.3852910Z * [new tag] ciflow/trunk/141002 -> ciflow/trunk/141002 2025-01-24T02:40:39.3854430Z * [new tag] ciflow/trunk/141038 -> ciflow/trunk/141038 2025-01-24T02:40:39.3861170Z * [new tag] ciflow/trunk/141131 -> ciflow/trunk/141131 2025-01-24T02:40:39.3862140Z * [new tag] ciflow/trunk/141136 -> ciflow/trunk/141136 2025-01-24T02:40:39.3863680Z * [new tag] ciflow/trunk/141168 -> ciflow/trunk/141168 2025-01-24T02:40:39.3868610Z * [new tag] ciflow/trunk/141195 -> ciflow/trunk/141195 2025-01-24T02:40:39.3870820Z * [new tag] ciflow/trunk/141226 -> ciflow/trunk/141226 2025-01-24T02:40:39.3876650Z * [new tag] ciflow/trunk/141257 -> ciflow/trunk/141257 2025-01-24T02:40:39.3877470Z * [new tag] ciflow/trunk/141309 -> ciflow/trunk/141309 2025-01-24T02:40:39.3879150Z * [new tag] ciflow/trunk/141468 -> ciflow/trunk/141468 2025-01-24T02:40:39.3884820Z * [new tag] ciflow/trunk/141489 -> ciflow/trunk/141489 2025-01-24T02:40:39.3886250Z * [new tag] ciflow/trunk/141503 -> ciflow/trunk/141503 2025-01-24T02:40:39.3889130Z * [new tag] ciflow/trunk/141508 -> ciflow/trunk/141508 2025-01-24T02:40:39.3894370Z * [new tag] ciflow/trunk/141530 -> ciflow/trunk/141530 2025-01-24T02:40:39.3897700Z * [new tag] ciflow/trunk/141588 -> ciflow/trunk/141588 2025-01-24T02:40:39.3901480Z * [new tag] ciflow/trunk/141697 -> ciflow/trunk/141697 2025-01-24T02:40:39.3902880Z * [new tag] ciflow/trunk/141730 -> ciflow/trunk/141730 2025-01-24T02:40:39.3906690Z * [new tag] ciflow/trunk/141791 -> ciflow/trunk/141791 2025-01-24T02:40:39.3909680Z * [new tag] ciflow/trunk/141796 -> ciflow/trunk/141796 2025-01-24T02:40:39.3915010Z * [new tag] ciflow/trunk/141842 -> ciflow/trunk/141842 2025-01-24T02:40:39.3916420Z * [new tag] ciflow/trunk/141889 -> ciflow/trunk/141889 2025-01-24T02:40:39.3919200Z * [new tag] ciflow/trunk/141910 -> ciflow/trunk/141910 2025-01-24T02:40:39.3924760Z * [new tag] ciflow/trunk/141914 -> ciflow/trunk/141914 2025-01-24T02:40:39.3930900Z * [new tag] ciflow/trunk/141959 -> ciflow/trunk/141959 2025-01-24T02:40:39.3932220Z * [new tag] ciflow/trunk/141961 -> ciflow/trunk/141961 2025-01-24T02:40:39.3933920Z * [new tag] ciflow/trunk/142067 -> ciflow/trunk/142067 2025-01-24T02:40:39.3935500Z * [new tag] ciflow/trunk/142091 -> ciflow/trunk/142091 2025-01-24T02:40:39.3941160Z * [new tag] ciflow/trunk/142092 -> ciflow/trunk/142092 2025-01-24T02:40:39.3942600Z * [new tag] ciflow/trunk/142097 -> ciflow/trunk/142097 2025-01-24T02:40:39.3948800Z * [new tag] ciflow/trunk/142179 -> ciflow/trunk/142179 2025-01-24T02:40:39.3950770Z * [new tag] ciflow/trunk/142263 -> ciflow/trunk/142263 2025-01-24T02:40:39.3953360Z * [new tag] ciflow/trunk/142272 -> ciflow/trunk/142272 2025-01-24T02:40:39.3957520Z * [new tag] ciflow/trunk/142273 -> ciflow/trunk/142273 2025-01-24T02:40:39.3959920Z * [new tag] ciflow/trunk/142346 -> ciflow/trunk/142346 2025-01-24T02:40:39.3967480Z * [new tag] ciflow/trunk/142350 -> ciflow/trunk/142350 2025-01-24T02:40:39.3968920Z * [new tag] ciflow/trunk/142372 -> ciflow/trunk/142372 2025-01-24T02:40:39.3970470Z * [new tag] ciflow/trunk/142477 -> ciflow/trunk/142477 2025-01-24T02:40:39.3974850Z * [new tag] ciflow/trunk/142821 -> ciflow/trunk/142821 2025-01-24T02:40:39.3976710Z * [new tag] ciflow/trunk/142848 -> ciflow/trunk/142848 2025-01-24T02:40:39.3979900Z * [new tag] ciflow/trunk/142859 -> ciflow/trunk/142859 2025-01-24T02:40:39.3983820Z * [new tag] ciflow/trunk/142861 -> ciflow/trunk/142861 2025-01-24T02:40:39.3985600Z * [new tag] ciflow/trunk/142865 -> ciflow/trunk/142865 2025-01-24T02:40:39.3988840Z * [new tag] ciflow/trunk/143082 -> ciflow/trunk/143082 2025-01-24T02:40:39.3993110Z * [new tag] ciflow/trunk/143093 -> ciflow/trunk/143093 2025-01-24T02:40:39.3997490Z * [new tag] ciflow/trunk/143168 -> ciflow/trunk/143168 2025-01-24T02:40:39.4000570Z * [new tag] ciflow/trunk/143220 -> ciflow/trunk/143220 2025-01-24T02:40:39.4002050Z * [new tag] ciflow/trunk/143261 -> ciflow/trunk/143261 2025-01-24T02:40:39.4007020Z * [new tag] ciflow/trunk/143303 -> ciflow/trunk/143303 2025-01-24T02:40:39.4008830Z * [new tag] ciflow/trunk/143313 -> ciflow/trunk/143313 2025-01-24T02:40:39.4015370Z * [new tag] ciflow/trunk/143347 -> ciflow/trunk/143347 2025-01-24T02:40:39.4023030Z * [new tag] ciflow/trunk/143360 -> ciflow/trunk/143360 2025-01-24T02:40:39.4024660Z * [new tag] ciflow/trunk/143378 -> ciflow/trunk/143378 2025-01-24T02:40:39.4026250Z * [new tag] ciflow/trunk/143402 -> ciflow/trunk/143402 2025-01-24T02:40:39.4032010Z * [new tag] ciflow/trunk/143416 -> ciflow/trunk/143416 2025-01-24T02:40:39.4032940Z * [new tag] ciflow/trunk/143417 -> ciflow/trunk/143417 2025-01-24T02:40:39.4039790Z * [new tag] ciflow/trunk/143451 -> ciflow/trunk/143451 2025-01-24T02:40:39.4040860Z * [new tag] ciflow/trunk/143475 -> ciflow/trunk/143475 2025-01-24T02:40:39.4047270Z * [new tag] ciflow/trunk/143622 -> ciflow/trunk/143622 2025-01-24T02:40:39.4048560Z * [new tag] ciflow/trunk/143630 -> ciflow/trunk/143630 2025-01-24T02:40:39.4050020Z * [new tag] ciflow/trunk/143671 -> ciflow/trunk/143671 2025-01-24T02:40:39.4055050Z * [new tag] ciflow/trunk/143712 -> ciflow/trunk/143712 2025-01-24T02:40:39.4056210Z * [new tag] ciflow/trunk/143733 -> ciflow/trunk/143733 2025-01-24T02:40:39.4062590Z * [new tag] ciflow/trunk/143806 -> ciflow/trunk/143806 2025-01-24T02:40:39.4063540Z * [new tag] ciflow/trunk/143822 -> ciflow/trunk/143822 2025-01-24T02:40:39.4070960Z * [new tag] ciflow/trunk/143833 -> ciflow/trunk/143833 2025-01-24T02:40:39.4072020Z * [new tag] ciflow/trunk/143879 -> ciflow/trunk/143879 2025-01-24T02:40:39.4073520Z * [new tag] ciflow/trunk/143880 -> ciflow/trunk/143880 2025-01-24T02:40:39.4079270Z * [new tag] ciflow/trunk/143894 -> ciflow/trunk/143894 2025-01-24T02:40:39.4080690Z * [new tag] ciflow/trunk/143896 -> ciflow/trunk/143896 2025-01-24T02:40:39.4086750Z * [new tag] ciflow/trunk/143961 -> ciflow/trunk/143961 2025-01-24T02:40:39.4087780Z * [new tag] ciflow/trunk/143966 -> ciflow/trunk/143966 2025-01-24T02:40:39.4089240Z * [new tag] ciflow/trunk/144011 -> ciflow/trunk/144011 2025-01-24T02:40:39.4094420Z * [new tag] ciflow/trunk/144017 -> ciflow/trunk/144017 2025-01-24T02:40:39.4096080Z * [new tag] ciflow/trunk/144019 -> ciflow/trunk/144019 2025-01-24T02:40:39.4102710Z * [new tag] ciflow/trunk/144020 -> ciflow/trunk/144020 2025-01-24T02:40:39.4103660Z * [new tag] ciflow/trunk/144046 -> ciflow/trunk/144046 2025-01-24T02:40:39.4105260Z * [new tag] ciflow/trunk/144115 -> ciflow/trunk/144115 2025-01-24T02:40:39.4112290Z * [new tag] ciflow/trunk/144120 -> ciflow/trunk/144120 2025-01-24T02:40:39.4113740Z * [new tag] ciflow/trunk/144138 -> ciflow/trunk/144138 2025-01-24T02:40:39.4119750Z * [new tag] ciflow/trunk/144172 -> ciflow/trunk/144172 2025-01-24T02:40:39.4128050Z * [new tag] ciflow/trunk/144177 -> ciflow/trunk/144177 2025-01-24T02:40:39.4129470Z * [new tag] ciflow/trunk/144268 -> ciflow/trunk/144268 2025-01-24T02:40:39.4130900Z * [new tag] ciflow/trunk/144341 -> ciflow/trunk/144341 2025-01-24T02:40:39.4136040Z * [new tag] ciflow/trunk/144354 -> ciflow/trunk/144354 2025-01-24T02:40:39.4137510Z * [new tag] ciflow/trunk/144368 -> ciflow/trunk/144368 2025-01-24T02:40:39.4144350Z * [new tag] ciflow/trunk/144378 -> ciflow/trunk/144378 2025-01-24T02:40:39.4145180Z * [new tag] ciflow/trunk/144441 -> ciflow/trunk/144441 2025-01-24T02:40:39.4146720Z * [new tag] ciflow/trunk/144452 -> ciflow/trunk/144452 2025-01-24T02:40:39.4152200Z * [new tag] ciflow/trunk/144468 -> ciflow/trunk/144468 2025-01-24T02:40:39.4153300Z * [new tag] ciflow/trunk/144485 -> ciflow/trunk/144485 2025-01-24T02:40:39.4160680Z * [new tag] ciflow/trunk/144492 -> ciflow/trunk/144492 2025-01-24T02:40:39.4162140Z * [new tag] ciflow/trunk/144498 -> ciflow/trunk/144498 2025-01-24T02:40:39.4163580Z * [new tag] ciflow/trunk/144508 -> ciflow/trunk/144508 2025-01-24T02:40:39.4168050Z * [new tag] ciflow/trunk/144513 -> ciflow/trunk/144513 2025-01-24T02:40:39.4169530Z * [new tag] ciflow/trunk/144590 -> ciflow/trunk/144590 2025-01-24T02:40:39.4176570Z * [new tag] ciflow/trunk/144616 -> ciflow/trunk/144616 2025-01-24T02:40:39.4177630Z * [new tag] ciflow/trunk/144642 -> ciflow/trunk/144642 2025-01-24T02:40:39.4179380Z * [new tag] ciflow/trunk/144644 -> ciflow/trunk/144644 2025-01-24T02:40:39.4184210Z * [new tag] ciflow/trunk/144646 -> ciflow/trunk/144646 2025-01-24T02:40:39.4185790Z * [new tag] ciflow/trunk/144664 -> ciflow/trunk/144664 2025-01-24T02:40:39.4192020Z * [new tag] ciflow/trunk/144695 -> ciflow/trunk/144695 2025-01-24T02:40:39.4193460Z * [new tag] ciflow/trunk/144700 -> ciflow/trunk/144700 2025-01-24T02:40:39.4200670Z * [new tag] ciflow/trunk/144707 -> ciflow/trunk/144707 2025-01-24T02:40:39.4202080Z * [new tag] ciflow/trunk/144708 -> ciflow/trunk/144708 2025-01-24T02:40:39.4203500Z * [new tag] ciflow/trunk/144721 -> ciflow/trunk/144721 2025-01-24T02:40:39.4209600Z * [new tag] ciflow/trunk/144733 -> ciflow/trunk/144733 2025-01-24T02:40:39.4211120Z * [new tag] ciflow/trunk/144763 -> ciflow/trunk/144763 2025-01-24T02:40:39.4218180Z * [new tag] ciflow/trunk/144771 -> ciflow/trunk/144771 2025-01-24T02:40:39.4219090Z * [new tag] ciflow/trunk/144773 -> ciflow/trunk/144773 2025-01-24T02:40:39.4225760Z * [new tag] ciflow/trunk/144829 -> ciflow/trunk/144829 2025-01-24T02:40:39.4226540Z * [new tag] ciflow/trunk/144865 -> ciflow/trunk/144865 2025-01-24T02:40:39.4228150Z * [new tag] ciflow/trunk/144880 -> ciflow/trunk/144880 2025-01-24T02:40:39.4233570Z * [new tag] ciflow/trunk/144894 -> ciflow/trunk/144894 2025-01-24T02:40:39.4235010Z * [new tag] ciflow/trunk/144940 -> ciflow/trunk/144940 2025-01-24T02:40:39.4241740Z * [new tag] ciflow/trunk/144953 -> ciflow/trunk/144953 2025-01-24T02:40:39.4242660Z * [new tag] ciflow/trunk/144956 -> ciflow/trunk/144956 2025-01-24T02:40:39.4247040Z * [new tag] ciflow/trunk/144975 -> ciflow/trunk/144975 2025-01-24T02:40:39.4248900Z * [new tag] ciflow/trunk/144985 -> ciflow/trunk/144985 2025-01-24T02:40:39.4250280Z * [new tag] ciflow/trunk/144994 -> ciflow/trunk/144994 2025-01-24T02:40:39.4257190Z * [new tag] ciflow/trunk/144999 -> ciflow/trunk/144999 2025-01-24T02:40:39.4258610Z * [new tag] ciflow/trunk/145031 -> ciflow/trunk/145031 2025-01-24T02:40:39.4259560Z * [new tag] ciflow/trunk/145047 -> ciflow/trunk/145047 2025-01-24T02:40:39.4264710Z * [new tag] ciflow/trunk/145060 -> ciflow/trunk/145060 2025-01-24T02:40:39.4265760Z * [new tag] ciflow/trunk/145061 -> ciflow/trunk/145061 2025-01-24T02:40:39.4273080Z * [new tag] ciflow/trunk/145083 -> ciflow/trunk/145083 2025-01-24T02:40:39.4274530Z * [new tag] ciflow/trunk/145116 -> ciflow/trunk/145116 2025-01-24T02:40:39.4280960Z * [new tag] ciflow/trunk/145119 -> ciflow/trunk/145119 2025-01-24T02:40:39.4281620Z * [new tag] ciflow/trunk/145120 -> ciflow/trunk/145120 2025-01-24T02:40:39.4283170Z * [new tag] ciflow/trunk/145128 -> ciflow/trunk/145128 2025-01-24T02:40:39.4288640Z * [new tag] ciflow/trunk/145130 -> ciflow/trunk/145130 2025-01-24T02:40:39.4290090Z * [new tag] ciflow/trunk/145132 -> ciflow/trunk/145132 2025-01-24T02:40:39.4296760Z * [new tag] ciflow/trunk/145136 -> ciflow/trunk/145136 2025-01-24T02:40:39.4298010Z * [new tag] ciflow/trunk/145148 -> ciflow/trunk/145148 2025-01-24T02:40:39.4299470Z * [new tag] ciflow/trunk/145153 -> ciflow/trunk/145153 2025-01-24T02:40:39.4304170Z * [new tag] ciflow/trunk/145156 -> ciflow/trunk/145156 2025-01-24T02:40:39.4305580Z * [new tag] ciflow/trunk/145204 -> ciflow/trunk/145204 2025-01-24T02:40:39.4311830Z * [new tag] ciflow/trunk/145206 -> ciflow/trunk/145206 2025-01-24T02:40:39.4313550Z * [new tag] ciflow/trunk/145224 -> ciflow/trunk/145224 2025-01-24T02:40:39.4319950Z * [new tag] ciflow/trunk/145227 -> ciflow/trunk/145227 2025-01-24T02:40:39.4321390Z * [new tag] ciflow/trunk/145241 -> ciflow/trunk/145241 2025-01-24T02:40:39.4322510Z * [new tag] ciflow/trunk/145245 -> ciflow/trunk/145245 2025-01-24T02:40:39.4327690Z * [new tag] ciflow/trunk/145250 -> ciflow/trunk/145250 2025-01-24T02:40:39.4328600Z * [new tag] ciflow/trunk/145254 -> ciflow/trunk/145254 2025-01-24T02:40:39.4335590Z * [new tag] ciflow/trunk/145269 -> ciflow/trunk/145269 2025-01-24T02:40:39.4337020Z * [new tag] ciflow/trunk/145288 -> ciflow/trunk/145288 2025-01-24T02:40:39.4343760Z * [new tag] ciflow/trunk/145303 -> ciflow/trunk/145303 2025-01-24T02:40:39.4345190Z * [new tag] ciflow/trunk/145307 -> ciflow/trunk/145307 2025-01-24T02:40:39.4346030Z * [new tag] ciflow/trunk/145311 -> ciflow/trunk/145311 2025-01-24T02:40:39.4349050Z * [new tag] ciflow/trunk/145318 -> ciflow/trunk/145318 2025-01-24T02:40:39.4349970Z * [new tag] ciflow/trunk/145321 -> ciflow/trunk/145321 2025-01-24T02:40:39.4354520Z * [new tag] ciflow/trunk/145323 -> ciflow/trunk/145323 2025-01-24T02:40:39.4355420Z * [new tag] ciflow/trunk/145331 -> ciflow/trunk/145331 2025-01-24T02:40:39.4358700Z * [new tag] ciflow/trunk/145373 -> ciflow/trunk/145373 2025-01-24T02:40:39.4362960Z * [new tag] ciflow/trunk/145375 -> ciflow/trunk/145375 2025-01-24T02:40:39.4367860Z * [new tag] ciflow/trunk/145391 -> ciflow/trunk/145391 2025-01-24T02:40:39.4370400Z * [new tag] ciflow/trunk/145399 -> ciflow/trunk/145399 2025-01-24T02:40:39.4371320Z * [new tag] ciflow/trunk/145407 -> ciflow/trunk/145407 2025-01-24T02:40:39.4377750Z * [new tag] ciflow/trunk/145412 -> ciflow/trunk/145412 2025-01-24T02:40:39.4378630Z * [new tag] ciflow/trunk/145417 -> ciflow/trunk/145417 2025-01-24T02:40:39.4385380Z * [new tag] ciflow/trunk/145421 -> ciflow/trunk/145421 2025-01-24T02:40:39.4386800Z * [new tag] ciflow/trunk/145435 -> ciflow/trunk/145435 2025-01-24T02:40:39.4393470Z * [new tag] ciflow/trunk/145436 -> ciflow/trunk/145436 2025-01-24T02:40:39.4394910Z * [new tag] ciflow/trunk/145443 -> ciflow/trunk/145443 2025-01-24T02:40:39.4396650Z * [new tag] ciflow/trunk/145448 -> ciflow/trunk/145448 2025-01-24T02:40:39.4401770Z * [new tag] ciflow/trunk/145449 -> ciflow/trunk/145449 2025-01-24T02:40:39.4403260Z * [new tag] ciflow/trunk/145450 -> ciflow/trunk/145450 2025-01-24T02:40:39.4409560Z * [new tag] ciflow/trunk/145462 -> ciflow/trunk/145462 2025-01-24T02:40:39.4410540Z * [new tag] ciflow/trunk/145465 -> ciflow/trunk/145465 2025-01-24T02:40:39.4412040Z * [new tag] ciflow/trunk/145490 -> ciflow/trunk/145490 2025-01-24T02:40:39.4417140Z * [new tag] ciflow/trunk/145494 -> ciflow/trunk/145494 2025-01-24T02:40:39.4418800Z * [new tag] ciflow/trunk/145495 -> ciflow/trunk/145495 2025-01-24T02:40:39.4425630Z * [new tag] ciflow/trunk/145502 -> ciflow/trunk/145502 2025-01-24T02:40:39.4427180Z * [new tag] ciflow/trunk/145506 -> ciflow/trunk/145506 2025-01-24T02:40:39.4433860Z * [new tag] ciflow/trunk/145509 -> ciflow/trunk/145509 2025-01-24T02:40:39.4434760Z * [new tag] ciflow/trunk/145513 -> ciflow/trunk/145513 2025-01-24T02:40:39.4436310Z * [new tag] ciflow/trunk/145517 -> ciflow/trunk/145517 2025-01-24T02:40:39.4441770Z * [new tag] ciflow/trunk/145519 -> ciflow/trunk/145519 2025-01-24T02:40:39.4442720Z * [new tag] ciflow/trunk/145530 -> ciflow/trunk/145530 2025-01-24T02:40:39.4449140Z * [new tag] ciflow/trunk/145531 -> ciflow/trunk/145531 2025-01-24T02:40:39.4450970Z * [new tag] ciflow/trunk/145533 -> ciflow/trunk/145533 2025-01-24T02:40:39.4451910Z * [new tag] ciflow/trunk/145539 -> ciflow/trunk/145539 2025-01-24T02:40:39.4459070Z * [new tag] ciflow/trunk/145542 -> ciflow/trunk/145542 2025-01-24T02:40:39.4460490Z * [new tag] ciflow/trunk/145545 -> ciflow/trunk/145545 2025-01-24T02:40:39.4467320Z * [new tag] ciflow/trunk/145547 -> ciflow/trunk/145547 2025-01-24T02:40:39.4468300Z * [new tag] ciflow/trunk/145549 -> ciflow/trunk/145549 2025-01-24T02:40:39.4475800Z * [new tag] ciflow/trunk/145550 -> ciflow/trunk/145550 2025-01-24T02:40:39.4477230Z * [new tag] ciflow/trunk/145551 -> ciflow/trunk/145551 2025-01-24T02:40:39.4483620Z * [new tag] ciflow/trunk/145552 -> ciflow/trunk/145552 2025-01-24T02:40:39.4485050Z * [new tag] ciflow/trunk/145553 -> ciflow/trunk/145553 2025-01-24T02:40:39.4491230Z * [new tag] ciflow/trunk/145554 -> ciflow/trunk/145554 2025-01-24T02:40:39.4492680Z * [new tag] ciflow/trunk/145558 -> ciflow/trunk/145558 2025-01-24T02:40:39.4493590Z * [new tag] ciflow/trunk/145559 -> ciflow/trunk/145559 2025-01-24T02:40:39.4499220Z * [new tag] ciflow/trunk/145576 -> ciflow/trunk/145576 2025-01-24T02:40:39.4500640Z * [new tag] ciflow/trunk/70978 -> ciflow/trunk/70978 2025-01-24T02:40:39.4507580Z * [new tag] ciflow/trunk/70979 -> ciflow/trunk/70979 2025-01-24T02:40:39.4509650Z * [new tag] ciflow/unstable/123 -> ciflow/unstable/123 2025-01-24T02:40:39.4511220Z * [new tag] ciflow/xpu/132945 -> ciflow/xpu/132945 2025-01-24T02:40:39.4515530Z * [new tag] ciflow/xpu/133307 -> ciflow/xpu/133307 2025-01-24T02:40:39.4517030Z * [new tag] ciflow/xpu/135189 -> ciflow/xpu/135189 2025-01-24T02:40:39.4523420Z * [new tag] ciflow/xpu/135337 -> ciflow/xpu/135337 2025-01-24T02:40:39.4525200Z * [new tag] ciflow/xpu/135465 -> ciflow/xpu/135465 2025-01-24T02:40:39.4526780Z * [new tag] ciflow/xpu/137566 -> ciflow/xpu/137566 2025-01-24T02:40:39.4530380Z * [new tag] ciflow/xpu/137570 -> ciflow/xpu/137570 2025-01-24T02:40:39.4533440Z * [new tag] ciflow/xpu/137580 -> ciflow/xpu/137580 2025-01-24T02:40:39.4539190Z * [new tag] ciflow/xpu/138889 -> ciflow/xpu/138889 2025-01-24T02:40:39.4542680Z * [new tag] ciflow/xpu/139171 -> ciflow/xpu/139171 2025-01-24T02:40:39.4548140Z * [new tag] ciflow/xpu/139469 -> ciflow/xpu/139469 2025-01-24T02:40:39.4549620Z * [new tag] ciflow/xpu/139971 -> ciflow/xpu/139971 2025-01-24T02:40:39.4555610Z * [new tag] ciflow/xpu/140362 -> ciflow/xpu/140362 2025-01-24T02:40:39.4557430Z * [new tag] ciflow/xpu/140365 -> ciflow/xpu/140365 2025-01-24T02:40:39.4564360Z * [new tag] ciflow/xpu/140372 -> ciflow/xpu/140372 2025-01-24T02:40:39.4565800Z * [new tag] ciflow/xpu/140389 -> ciflow/xpu/140389 2025-01-24T02:40:39.4567220Z * [new tag] ciflow/xpu/140677 -> ciflow/xpu/140677 2025-01-24T02:40:39.4571910Z * [new tag] ciflow/xpu/140686 -> ciflow/xpu/140686 2025-01-24T02:40:39.4573650Z * [new tag] ciflow/xpu/140972 -> ciflow/xpu/140972 2025-01-24T02:40:39.4579930Z * [new tag] ciflow/xpu/141318 -> ciflow/xpu/141318 2025-01-24T02:40:39.4581360Z * [new tag] ciflow/xpu/142040 -> ciflow/xpu/142040 2025-01-24T02:40:39.4587790Z * [new tag] ciflow/xpu/142067 -> ciflow/xpu/142067 2025-01-24T02:40:39.4589240Z * [new tag] ciflow/xpu/142097 -> ciflow/xpu/142097 2025-01-24T02:40:39.4590260Z * [new tag] ciflow/xpu/143597 -> ciflow/xpu/143597 2025-01-24T02:40:39.4595770Z * [new tag] ciflow/xpu/143784 -> ciflow/xpu/143784 2025-01-24T02:40:39.4597170Z * [new tag] ciflow/xpu/143833 -> ciflow/xpu/143833 2025-01-24T02:40:39.4603570Z * [new tag] ciflow/xpu/144046 -> ciflow/xpu/144046 2025-01-24T02:40:39.4604500Z * [new tag] ciflow/xpu/144368 -> ciflow/xpu/144368 2025-01-24T02:40:39.4605870Z * [new tag] ciflow/xpu/144378 -> ciflow/xpu/144378 2025-01-24T02:40:39.4611630Z * [new tag] ciflow/xpu/144385 -> ciflow/xpu/144385 2025-01-24T02:40:39.4613150Z * [new tag] ciflow/xpu/144452 -> ciflow/xpu/144452 2025-01-24T02:40:39.4619370Z * [new tag] ciflow/xpu/144473 -> ciflow/xpu/144473 2025-01-24T02:40:39.4620610Z * [new tag] ciflow/xpu/144644 -> ciflow/xpu/144644 2025-01-24T02:40:39.4627870Z * [new tag] ciflow/xpu/144664 -> ciflow/xpu/144664 2025-01-24T02:40:39.4629330Z * [new tag] ciflow/xpu/144722 -> ciflow/xpu/144722 2025-01-24T02:40:39.4630130Z * [new tag] ciflow/xpu/145060 -> ciflow/xpu/145060 2025-01-24T02:40:39.4636490Z * [new tag] ciflow/xpu/145083 -> ciflow/xpu/145083 2025-01-24T02:40:39.4637920Z * [new tag] ciflow/xpu/145248 -> ciflow/xpu/145248 2025-01-24T02:40:39.4644240Z * [new tag] ciflow/xpu/145490 -> ciflow/xpu/145490 2025-01-24T02:40:39.4645680Z * [new tag] cslpull75 -> cslpull75 2025-01-24T02:40:39.4647080Z * [new tag] cslpull76 -> cslpull76 2025-01-24T02:40:39.4651790Z * [new tag] cslpull77 -> cslpull77 2025-01-24T02:40:39.4654110Z * [new tag] cslpull78 -> cslpull78 2025-01-24T02:40:39.4659450Z * [new tag] cslpull79 -> cslpull79 2025-01-24T02:40:39.4661030Z * [new tag] cslpull80 -> cslpull80 2025-01-24T02:40:39.4661960Z * [new tag] cslpull81 -> cslpull81 2025-01-24T02:40:39.4668190Z * [new tag] cslpull82 -> cslpull82 2025-01-24T02:40:39.4669540Z * [new tag] cslpull83 -> cslpull83 2025-01-24T02:40:39.4676750Z * [new tag] cslpull84 -> cslpull84 2025-01-24T02:40:39.4678210Z * [new tag] cslpull85 -> cslpull85 2025-01-24T02:40:39.4684280Z * [new tag] cslpull86 -> cslpull86 2025-01-24T02:40:39.4685850Z * [new tag] cslpull87 -> cslpull87 2025-01-24T02:40:39.4687260Z * [new tag] cslpull88 -> cslpull88 2025-01-24T02:40:39.4692170Z * [new tag] cslpull89 -> cslpull89 2025-01-24T02:40:39.4693840Z * [new tag] cslpull90 -> cslpull90 2025-01-24T02:40:39.4700000Z * [new tag] cslpull91 -> cslpull91 2025-01-24T02:40:39.4701100Z * [new tag] cslpull92 -> cslpull92 2025-01-24T02:40:39.4702800Z * [new tag] flight_5 -> flight_5 2025-01-24T02:40:39.4708010Z * [new tag] flight_5.1 -> flight_5.1 2025-01-24T02:40:39.4709190Z * [new tag] flight_5.2 -> flight_5.2 2025-01-24T02:40:39.4716160Z * [new tag] flight_5.3 -> flight_5.3 2025-01-24T02:40:39.4717540Z * [new tag] forpull1 -> forpull1 2025-01-24T02:40:39.4724330Z * [new tag] malfet/tag-2ef5611 -> malfet/tag-2ef5611 2025-01-24T02:40:39.4725850Z * [new tag] malfet/tag-317b1a0 -> malfet/tag-317b1a0 2025-01-24T02:40:39.4726760Z * [new tag] malfet/tag-ec6f767 -> malfet/tag-ec6f767 2025-01-24T02:40:39.4732240Z * [new tag] nightly-binary -> nightly-binary 2025-01-24T02:40:39.4733590Z * [new tag] sqzhang_flight4_plus -> sqzhang_flight4_plus 2025-01-24T02:40:39.4740990Z * [new tag] sqzhang_flight_3 -> sqzhang_flight_3 2025-01-24T02:40:39.4742390Z * [new tag] v0.1.1 -> v0.1.1 2025-01-24T02:40:39.4744060Z * [new tag] v0.1.10 -> v0.1.10 2025-01-24T02:40:39.4745550Z * [new tag] v0.1.11 -> v0.1.11 2025-01-24T02:40:39.4746440Z * [new tag] v0.1.12 -> v0.1.12 2025-01-24T02:40:39.4748040Z * [new tag] v0.1.2 -> v0.1.2 2025-01-24T02:40:39.4751510Z * [new tag] v0.1.3 -> v0.1.3 2025-01-24T02:40:39.4755240Z * [new tag] v0.1.4 -> v0.1.4 2025-01-24T02:40:39.4756180Z * [new tag] v0.1.5 -> v0.1.5 2025-01-24T02:40:39.4760210Z * [new tag] v0.1.6 -> v0.1.6 2025-01-24T02:40:39.4763920Z * [new tag] v0.1.7 -> v0.1.7 2025-01-24T02:40:39.4765320Z * [new tag] v0.1.8 -> v0.1.8 2025-01-24T02:40:39.4770170Z * [new tag] v0.1.9 -> v0.1.9 2025-01-24T02:40:39.4773230Z * [new tag] v0.2.0 -> v0.2.0 2025-01-24T02:40:39.4777660Z * [new tag] v0.3.0 -> v0.3.0 2025-01-24T02:40:39.4779020Z * [new tag] v0.3.1 -> v0.3.1 2025-01-24T02:40:39.4782260Z * [new tag] v0.4.0 -> v0.4.0 2025-01-24T02:40:39.4786650Z * [new tag] v0.4.1 -> v0.4.1 2025-01-24T02:40:39.4790450Z * [new tag] v1.0.0 -> v1.0.0 2025-01-24T02:40:39.4799470Z * [new tag] v1.0.0a0 -> v1.0.0a0 2025-01-24T02:40:39.4803760Z * [new tag] v1.0.1 -> v1.0.1 2025-01-24T02:40:39.4807980Z * [new tag] v1.0rc0 -> v1.0rc0 2025-01-24T02:40:39.4809540Z * [new tag] v1.0rc1 -> v1.0rc1 2025-01-24T02:40:39.4812730Z * [new tag] v1.1.0 -> v1.1.0 2025-01-24T02:40:39.4817200Z * [new tag] v1.1.0a0 -> v1.1.0a0 2025-01-24T02:40:39.4818630Z * [new tag] v1.10.0 -> v1.10.0 2025-01-24T02:40:39.4822410Z * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 2025-01-24T02:40:39.4826830Z * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 2025-01-24T02:40:39.4832380Z * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 2025-01-24T02:40:39.4833910Z * [new tag] v1.10.1 -> v1.10.1 2025-01-24T02:40:39.4834680Z * [new tag] v1.10.1-rc1 -> v1.10.1-rc1 2025-01-24T02:40:39.4841720Z * [new tag] v1.10.2 -> v1.10.2 2025-01-24T02:40:39.4843290Z * [new tag] v1.10.2-rc1 -> v1.10.2-rc1 2025-01-24T02:40:39.4850010Z * [new tag] v1.11.0 -> v1.11.0 2025-01-24T02:40:39.4851480Z * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 2025-01-24T02:40:39.4857740Z * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 2025-01-24T02:40:39.4859210Z * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 2025-01-24T02:40:39.4860630Z * [new tag] v1.11.0-rc4 -> v1.11.0-rc4 2025-01-24T02:40:39.4865790Z * [new tag] v1.11.0-rc5 -> v1.11.0-rc5 2025-01-24T02:40:39.4866990Z * [new tag] v1.11.0-rc6 -> v1.11.0-rc6 2025-01-24T02:40:39.4873660Z * [new tag] v1.11.0-rc7 -> v1.11.0-rc7 2025-01-24T02:40:39.4875170Z * [new tag] v1.12.0 -> v1.12.0 2025-01-24T02:40:39.4876560Z * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 2025-01-24T02:40:39.4881170Z * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 2025-01-24T02:40:39.4883200Z * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 2025-01-24T02:40:39.4889300Z * [new tag] v1.12.0-rc4 -> v1.12.0-rc4 2025-01-24T02:40:39.4890810Z * [new tag] v1.12.0-rc5 -> v1.12.0-rc5 2025-01-24T02:40:39.4892010Z * [new tag] v1.12.0-rc6 -> v1.12.0-rc6 2025-01-24T02:40:39.4898400Z * [new tag] v1.12.0-rc7 -> v1.12.0-rc7 2025-01-24T02:40:39.4899790Z * [new tag] v1.12.0-rc8 -> v1.12.0-rc8 2025-01-24T02:40:39.4907100Z * [new tag] v1.12.1 -> v1.12.1 2025-01-24T02:40:39.4914770Z * [new tag] v1.12.1-rc1 -> v1.12.1-rc1 2025-01-24T02:40:39.4916140Z * [new tag] v1.12.1-rc2 -> v1.12.1-rc2 2025-01-24T02:40:39.4917570Z * [new tag] v1.12.1-rc3 -> v1.12.1-rc3 2025-01-24T02:40:39.4922640Z * [new tag] v1.12.1-rc4 -> v1.12.1-rc4 2025-01-24T02:40:39.4923520Z * [new tag] v1.12.1-rc5 -> v1.12.1-rc5 2025-01-24T02:40:39.4929670Z * [new tag] v1.13.0 -> v1.13.0 2025-01-24T02:40:39.4931030Z * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 2025-01-24T02:40:39.4932580Z * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 2025-01-24T02:40:39.4938010Z * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 2025-01-24T02:40:39.4945000Z * [new tag] v1.13.0-rc4 -> v1.13.0-rc4 2025-01-24T02:40:39.4947640Z * [new tag] v1.13.0-rc5 -> v1.13.0-rc5 2025-01-24T02:40:39.4952420Z * [new tag] v1.13.0-rc6 -> v1.13.0-rc6 2025-01-24T02:40:39.4954150Z * [new tag] v1.13.1 -> v1.13.1 2025-01-24T02:40:39.4955370Z * [new tag] v1.13.1-rc1 -> v1.13.1-rc1 2025-01-24T02:40:39.4961310Z * [new tag] v1.2.0 -> v1.2.0 2025-01-24T02:40:39.4962690Z * [new tag] v1.2.0a0 -> v1.2.0a0 2025-01-24T02:40:39.4969190Z * [new tag] v1.3.0 -> v1.3.0 2025-01-24T02:40:39.4970560Z * [new tag] v1.3.0a0 -> v1.3.0a0 2025-01-24T02:40:39.4977150Z * [new tag] v1.3.1 -> v1.3.1 2025-01-24T02:40:39.4978640Z * [new tag] v1.4.0 -> v1.4.0 2025-01-24T02:40:39.4980070Z * [new tag] v1.4.0a0 -> v1.4.0a0 2025-01-24T02:40:39.4984120Z * [new tag] v1.4.1 -> v1.4.1 2025-01-24T02:40:39.4985950Z * [new tag] v1.5.0 -> v1.5.0 2025-01-24T02:40:39.4992450Z * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 2025-01-24T02:40:39.4993770Z * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 2025-01-24T02:40:39.4999980Z * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 2025-01-24T02:40:39.5000910Z * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 2025-01-24T02:40:39.5002470Z * [new tag] v1.5.0-rc5 -> v1.5.0-rc5 2025-01-24T02:40:39.5008740Z * [new tag] v1.5.1 -> v1.5.1 2025-01-24T02:40:39.5010200Z * [new tag] v1.5.1-rc1 -> v1.5.1-rc1 2025-01-24T02:40:39.5015650Z * [new tag] v1.6.0 -> v1.6.0 2025-01-24T02:40:39.5017250Z * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 2025-01-24T02:40:39.5018690Z * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 2025-01-24T02:40:39.5025430Z * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 2025-01-24T02:40:39.5026810Z * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 2025-01-24T02:40:39.5032950Z * [new tag] v1.6.0-rc5 -> v1.6.0-rc5 2025-01-24T02:40:39.5034390Z * [new tag] v1.6.0-rc6 -> v1.6.0-rc6 2025-01-24T02:40:39.5040670Z * [new tag] v1.6.0-rc7 -> v1.6.0-rc7 2025-01-24T02:40:39.5042040Z * [new tag] v1.7.0 -> v1.7.0 2025-01-24T02:40:39.5043410Z * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 2025-01-24T02:40:39.5048700Z * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 2025-01-24T02:40:39.5050320Z * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 2025-01-24T02:40:39.5056800Z * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 2025-01-24T02:40:39.5057710Z * [new tag] v1.7.1 -> v1.7.1 2025-01-24T02:40:39.5059480Z * [new tag] v1.7.1-rc1 -> v1.7.1-rc1 2025-01-24T02:40:39.5065100Z * [new tag] v1.7.1-rc2 -> v1.7.1-rc2 2025-01-24T02:40:39.5066010Z * [new tag] v1.7.1-rc3 -> v1.7.1-rc3 2025-01-24T02:40:39.5072740Z * [new tag] v1.8.0 -> v1.8.0 2025-01-24T02:40:39.5074580Z * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 2025-01-24T02:40:39.5080790Z * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 2025-01-24T02:40:39.5082510Z * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 2025-01-24T02:40:39.5083900Z * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 2025-01-24T02:40:39.5088440Z * [new tag] v1.8.0-rc5 -> v1.8.0-rc5 2025-01-24T02:40:39.5089870Z * [new tag] v1.8.1 -> v1.8.1 2025-01-24T02:40:39.5096470Z * [new tag] v1.8.1-rc1 -> v1.8.1-rc1 2025-01-24T02:40:39.5097840Z * [new tag] v1.8.1-rc2 -> v1.8.1-rc2 2025-01-24T02:40:39.5099240Z * [new tag] v1.8.1-rc3 -> v1.8.1-rc3 2025-01-24T02:40:39.5104300Z * [new tag] v1.8.2 -> v1.8.2 2025-01-24T02:40:39.5105480Z * [new tag] v1.8.2-rc1 -> v1.8.2-rc1 2025-01-24T02:40:39.5112110Z * [new tag] v1.9.0 -> v1.9.0 2025-01-24T02:40:39.5113580Z * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 2025-01-24T02:40:39.5119350Z * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 2025-01-24T02:40:39.5120300Z * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 2025-01-24T02:40:39.5121760Z * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 2025-01-24T02:40:39.5131080Z * [new tag] v1.9.1 -> v1.9.1 2025-01-24T02:40:39.5132530Z * [new tag] v1.9.1-rc1 -> v1.9.1-rc1 2025-01-24T02:40:39.5134000Z * [new tag] v1.9.1-rc2 -> v1.9.1-rc2 2025-01-24T02:40:39.5136140Z * [new tag] v2.0.0 -> v2.0.0 2025-01-24T02:40:39.5137790Z * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 2025-01-24T02:40:39.5141090Z * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 2025-01-24T02:40:39.5144880Z * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 2025-01-24T02:40:39.5151190Z * [new tag] v2.0.0-rc4 -> v2.0.0-rc4 2025-01-24T02:40:39.5152880Z * [new tag] v2.0.0-rc5 -> v2.0.0-rc5 2025-01-24T02:40:39.5159260Z * [new tag] v2.0.0-rc6 -> v2.0.0-rc6 2025-01-24T02:40:39.5160640Z * [new tag] v2.0.1 -> v2.0.1 2025-01-24T02:40:39.5162090Z * [new tag] v2.0.1-rc1 -> v2.0.1-rc1 2025-01-24T02:40:39.5167060Z * [new tag] v2.0.1-rc2 -> v2.0.1-rc2 2025-01-24T02:40:39.5168930Z * [new tag] v2.0.1-rc3 -> v2.0.1-rc3 2025-01-24T02:40:39.5174380Z * [new tag] v2.0.1-rc4 -> v2.0.1-rc4 2025-01-24T02:40:39.5176840Z * [new tag] v2.1.0 -> v2.1.0 2025-01-24T02:40:39.5182270Z * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 2025-01-24T02:40:39.5183190Z * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 2025-01-24T02:40:39.5185200Z * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 2025-01-24T02:40:39.5191600Z * [new tag] v2.1.0-rc4 -> v2.1.0-rc4 2025-01-24T02:40:39.5193100Z * [new tag] v2.1.0-rc5 -> v2.1.0-rc5 2025-01-24T02:40:39.5199940Z * [new tag] v2.1.0-rc6 -> v2.1.0-rc6 2025-01-24T02:40:39.5201150Z * [new tag] v2.1.1 -> v2.1.1 2025-01-24T02:40:39.5207500Z * [new tag] v2.1.1-rc1 -> v2.1.1-rc1 2025-01-24T02:40:39.5208900Z * [new tag] v2.1.1-rc2 -> v2.1.1-rc2 2025-01-24T02:40:39.5210310Z * [new tag] v2.1.1-rc3 -> v2.1.1-rc3 2025-01-24T02:40:39.5215250Z * [new tag] v2.1.1-rc4 -> v2.1.1-rc4 2025-01-24T02:40:39.5221350Z * [new tag] v2.1.1-rc5 -> v2.1.1-rc5 2025-01-24T02:40:39.5222480Z * [new tag] v2.1.1-rc6 -> v2.1.1-rc6 2025-01-24T02:40:39.5224220Z * [new tag] v2.1.2 -> v2.1.2 2025-01-24T02:40:39.5225630Z * [new tag] v2.1.2-rc1 -> v2.1.2-rc1 2025-01-24T02:40:39.5230520Z * [new tag] v2.1.2-rc2 -> v2.1.2-rc2 2025-01-24T02:40:39.5232130Z * [new tag] v2.1.2-rc3 -> v2.1.2-rc3 2025-01-24T02:40:39.5237780Z * [new tag] v2.2.0 -> v2.2.0 2025-01-24T02:40:39.5240420Z * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 2025-01-24T02:40:39.5245690Z * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 2025-01-24T02:40:39.5247620Z * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 2025-01-24T02:40:39.5248570Z * [new tag] v2.2.0-rc4 -> v2.2.0-rc4 2025-01-24T02:40:39.5255330Z * [new tag] v2.2.0-rc5 -> v2.2.0-rc5 2025-01-24T02:40:39.5256760Z * [new tag] v2.2.0-rc6 -> v2.2.0-rc6 2025-01-24T02:40:39.5262970Z * [new tag] v2.2.0-rc7 -> v2.2.0-rc7 2025-01-24T02:40:39.5264050Z * [new tag] v2.2.0-rc8 -> v2.2.0-rc8 2025-01-24T02:40:39.5270730Z * [new tag] v2.2.1 -> v2.2.1 2025-01-24T02:40:39.5272110Z * [new tag] v2.2.1-rc1 -> v2.2.1-rc1 2025-01-24T02:40:39.5273060Z * [new tag] v2.2.1-rc2 -> v2.2.1-rc2 2025-01-24T02:40:39.5278960Z * [new tag] v2.2.1-rc3 -> v2.2.1-rc3 2025-01-24T02:40:39.5280740Z * [new tag] v2.2.2 -> v2.2.2 2025-01-24T02:40:39.5287000Z * [new tag] v2.2.2-rc1 -> v2.2.2-rc1 2025-01-24T02:40:39.5287850Z * [new tag] v2.2.2-rc2 -> v2.2.2-rc2 2025-01-24T02:40:39.5289350Z * [new tag] v2.2.2-rc3 -> v2.2.2-rc3 2025-01-24T02:40:39.5294980Z * [new tag] v2.3.0 -> v2.3.0 2025-01-24T02:40:39.5295910Z * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 2025-01-24T02:40:39.5302670Z * [new tag] v2.3.0-rc10 -> v2.3.0-rc10 2025-01-24T02:40:39.5304570Z * [new tag] v2.3.0-rc11 -> v2.3.0-rc11 2025-01-24T02:40:39.5305560Z * [new tag] v2.3.0-rc12 -> v2.3.0-rc12 2025-01-24T02:40:39.5310280Z * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 2025-01-24T02:40:39.5312170Z * [new tag] v2.3.0-rc3 -> v2.3.0-rc3 2025-01-24T02:40:39.5318030Z * [new tag] v2.3.0-rc4 -> v2.3.0-rc4 2025-01-24T02:40:39.5320010Z * [new tag] v2.3.0-rc5 -> v2.3.0-rc5 2025-01-24T02:40:39.5325280Z * [new tag] v2.3.0-rc6 -> v2.3.0-rc6 2025-01-24T02:40:39.5326730Z * [new tag] v2.3.0-rc7 -> v2.3.0-rc7 2025-01-24T02:40:39.5328330Z * [new tag] v2.3.0-rc8 -> v2.3.0-rc8 2025-01-24T02:40:39.5334490Z * [new tag] v2.3.0-rc9 -> v2.3.0-rc9 2025-01-24T02:40:39.5336230Z * [new tag] v2.3.1 -> v2.3.1 2025-01-24T02:40:39.5342420Z * [new tag] v2.3.1-rc1 -> v2.3.1-rc1 2025-01-24T02:40:39.5350840Z * [new tag] v2.3.1-rc2 -> v2.3.1-rc2 2025-01-24T02:40:39.5352340Z * [new tag] v2.3.1-rc3 -> v2.3.1-rc3 2025-01-24T02:40:39.5358150Z * [new tag] v2.4.0 -> v2.4.0 2025-01-24T02:40:39.5360760Z * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 2025-01-24T02:40:39.5366360Z * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 2025-01-24T02:40:39.5367530Z * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 2025-01-24T02:40:39.5369160Z * [new tag] v2.4.0-rc4 -> v2.4.0-rc4 2025-01-24T02:40:39.5374580Z * [new tag] v2.4.0-rc5 -> v2.4.0-rc5 2025-01-24T02:40:39.5376020Z * [new tag] v2.4.0-rc6 -> v2.4.0-rc6 2025-01-24T02:40:39.5381670Z * [new tag] v2.4.0-rc7 -> v2.4.0-rc7 2025-01-24T02:40:39.5384030Z * [new tag] v2.4.0-rc8 -> v2.4.0-rc8 2025-01-24T02:40:39.5390240Z * [new tag] v2.4.0-rc9 -> v2.4.0-rc9 2025-01-24T02:40:39.5391690Z * [new tag] v2.4.1 -> v2.4.1 2025-01-24T02:40:39.5392640Z * [new tag] v2.4.1-rc1 -> v2.4.1-rc1 2025-01-24T02:40:39.5398150Z * [new tag] v2.4.1-rc2 -> v2.4.1-rc2 2025-01-24T02:40:39.5399530Z * [new tag] v2.4.1-rc3 -> v2.4.1-rc3 2025-01-24T02:40:39.5405350Z * [new tag] v2.5.0 -> v2.5.0 2025-01-24T02:40:39.5407070Z * [new tag] v2.5.0-rc1 -> v2.5.0-rc1 2025-01-24T02:40:39.5413460Z * [new tag] v2.5.0-rc10 -> v2.5.0-rc10 2025-01-24T02:40:39.5414470Z * [new tag] v2.5.0-rc2 -> v2.5.0-rc2 2025-01-24T02:40:39.5416130Z * [new tag] v2.5.0-rc3 -> v2.5.0-rc3 2025-01-24T02:40:39.5422330Z * [new tag] v2.5.0-rc4 -> v2.5.0-rc4 2025-01-24T02:40:39.5423780Z * [new tag] v2.5.0-rc5 -> v2.5.0-rc5 2025-01-24T02:40:39.5430490Z * [new tag] v2.5.0-rc6 -> v2.5.0-rc6 2025-01-24T02:40:39.5431890Z * [new tag] v2.5.0-rc7 -> v2.5.0-rc7 2025-01-24T02:40:39.5438000Z * [new tag] v2.5.0-rc8 -> v2.5.0-rc8 2025-01-24T02:40:39.5439440Z * [new tag] v2.5.0-rc9 -> v2.5.0-rc9 2025-01-24T02:40:39.5440800Z * [new tag] v2.5.1 -> v2.5.1 2025-01-24T02:40:39.5445900Z * [new tag] v2.5.1-rc1 -> v2.5.1-rc1 2025-01-24T02:40:39.5446920Z * [new tag] v2.6.0-rc1 -> v2.6.0-rc1 2025-01-24T02:40:39.5453340Z * [new tag] v2.6.0-rc2 -> v2.6.0-rc2 2025-01-24T02:40:39.5454720Z * [new tag] v2.6.0-rc3 -> v2.6.0-rc3 2025-01-24T02:40:39.5456100Z * [new tag] v2.6.0-rc4 -> v2.6.0-rc4 2025-01-24T02:40:39.5461680Z * [new tag] v2.6.0-rc5 -> v2.6.0-rc5 2025-01-24T02:40:39.5463060Z * [new tag] v2.6.0-rc6 -> v2.6.0-rc6 2025-01-24T02:40:39.5468730Z * [new tag] v2.6.0-rc7 -> v2.6.0-rc7 2025-01-24T02:40:39.5470990Z * [new tag] whc_flight_1 -> whc_flight_1 2025-01-24T02:40:39.5476570Z * [new tag] whc_flight_2 -> whc_flight_2 2025-01-24T02:40:39.5477720Z * [new tag] whc_flight_4 -> whc_flight_4 2025-01-24T02:40:39.6715560Z [command]/usr/bin/git rev-parse --verify --quiet d087145b9259b4cfbcb758dc0bca6a6e5d75d08f^{object} 2025-01-24T02:40:39.6933160Z d087145b9259b4cfbcb758dc0bca6a6e5d75d08f 2025-01-24T02:40:39.6937380Z ##[endgroup] 2025-01-24T02:40:39.6937710Z ##[group]Determining the checkout info 2025-01-24T02:40:39.6938090Z ##[endgroup] 2025-01-24T02:40:39.6941050Z [command]/usr/bin/git sparse-checkout disable 2025-01-24T02:40:39.7034770Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-01-24T02:40:39.7091740Z ##[group]Checking out the ref 2025-01-24T02:40:39.7094120Z [command]/usr/bin/git checkout --progress --force d087145b9259b4cfbcb758dc0bca6a6e5d75d08f 2025-01-24T02:40:40.7764320Z Updating files: 20% (3732/18011) 2025-01-24T02:40:40.8249390Z Updating files: 21% (3783/18011) 2025-01-24T02:40:40.8861230Z Updating files: 22% (3963/18011) 2025-01-24T02:40:40.9464690Z Updating files: 23% (4143/18011) 2025-01-24T02:40:41.0072690Z Updating files: 24% (4323/18011) 2025-01-24T02:40:41.0683170Z Updating files: 25% (4503/18011) 2025-01-24T02:40:41.4935550Z Updating files: 26% (4683/18011) 2025-01-24T02:40:41.5925560Z Updating files: 27% (4863/18011) 2025-01-24T02:40:41.6340320Z Updating files: 28% (5044/18011) 2025-01-24T02:40:41.6845840Z Updating files: 29% (5224/18011) 2025-01-24T02:40:41.7399760Z Updating files: 30% (5404/18011) 2025-01-24T02:40:41.7455200Z Updating files: 31% (5584/18011) 2025-01-24T02:40:41.8205130Z Updating files: 31% (5597/18011) 2025-01-24T02:40:41.8767090Z Updating files: 32% (5764/18011) 2025-01-24T02:40:41.9358220Z Updating files: 33% (5944/18011) 2025-01-24T02:40:41.9884630Z Updating files: 34% (6124/18011) 2025-01-24T02:40:42.0311540Z Updating files: 35% (6304/18011) 2025-01-24T02:40:42.0944710Z Updating files: 36% (6484/18011) 2025-01-24T02:40:42.1602330Z Updating files: 37% (6665/18011) 2025-01-24T02:40:42.2131400Z Updating files: 38% (6845/18011) 2025-01-24T02:40:42.2532050Z Updating files: 39% (7025/18011) 2025-01-24T02:40:42.2703250Z Updating files: 40% (7205/18011) 2025-01-24T02:40:42.2760410Z Updating files: 41% (7385/18011) 2025-01-24T02:40:42.2820160Z Updating files: 42% (7565/18011) 2025-01-24T02:40:42.2879760Z Updating files: 43% (7745/18011) 2025-01-24T02:40:42.2937990Z Updating files: 44% (7925/18011) 2025-01-24T02:40:42.2998260Z Updating files: 45% (8105/18011) 2025-01-24T02:40:42.3060440Z Updating files: 46% (8286/18011) 2025-01-24T02:40:42.3120990Z Updating files: 47% (8466/18011) 2025-01-24T02:40:42.3178570Z Updating files: 48% (8646/18011) 2025-01-24T02:40:42.3237980Z Updating files: 49% (8826/18011) 2025-01-24T02:40:42.3298910Z Updating files: 50% (9006/18011) 2025-01-24T02:40:42.3361070Z Updating files: 51% (9186/18011) 2025-01-24T02:40:42.3422970Z Updating files: 52% (9366/18011) 2025-01-24T02:40:42.3484180Z Updating files: 53% (9546/18011) 2025-01-24T02:40:42.3547390Z Updating files: 54% (9726/18011) 2025-01-24T02:40:42.3610500Z Updating files: 55% (9907/18011) 2025-01-24T02:40:42.3674180Z Updating files: 56% (10087/18011) 2025-01-24T02:40:42.3735050Z Updating files: 57% (10267/18011) 2025-01-24T02:40:42.3797650Z Updating files: 58% (10447/18011) 2025-01-24T02:40:42.3862320Z Updating files: 59% (10627/18011) 2025-01-24T02:40:42.3928010Z Updating files: 60% (10807/18011) 2025-01-24T02:40:42.3992310Z Updating files: 61% (10987/18011) 2025-01-24T02:40:42.4057240Z Updating files: 62% (11167/18011) 2025-01-24T02:40:42.4119160Z Updating files: 63% (11347/18011) 2025-01-24T02:40:42.4182070Z Updating files: 64% (11528/18011) 2025-01-24T02:40:42.4245970Z Updating files: 65% (11708/18011) 2025-01-24T02:40:42.4309090Z Updating files: 66% (11888/18011) 2025-01-24T02:40:42.4369590Z Updating files: 67% (12068/18011) 2025-01-24T02:40:42.4426320Z Updating files: 68% (12248/18011) 2025-01-24T02:40:42.4485920Z Updating files: 69% (12428/18011) 2025-01-24T02:40:42.4601170Z Updating files: 70% (12608/18011) 2025-01-24T02:40:42.4809840Z Updating files: 71% (12788/18011) 2025-01-24T02:40:42.4930200Z Updating files: 72% (12968/18011) 2025-01-24T02:40:42.7503300Z Updating files: 73% (13149/18011) 2025-01-24T02:40:42.8213090Z Updating files: 73% (13168/18011) 2025-01-24T02:40:42.8843900Z Updating files: 74% (13329/18011) 2025-01-24T02:40:42.9105480Z Updating files: 75% (13509/18011) 2025-01-24T02:40:42.9542080Z Updating files: 76% (13689/18011) 2025-01-24T02:40:43.0031170Z Updating files: 77% (13869/18011) 2025-01-24T02:40:43.0583650Z Updating files: 78% (14049/18011) 2025-01-24T02:40:43.1049420Z Updating files: 79% (14229/18011) 2025-01-24T02:40:43.1581480Z Updating files: 80% (14409/18011) 2025-01-24T02:40:43.1982160Z Updating files: 81% (14589/18011) 2025-01-24T02:40:43.2450220Z Updating files: 82% (14770/18011) 2025-01-24T02:40:43.2994910Z Updating files: 83% (14950/18011) 2025-01-24T02:40:43.3578330Z Updating files: 84% (15130/18011) 2025-01-24T02:40:43.4157170Z Updating files: 85% (15310/18011) 2025-01-24T02:40:43.4708880Z Updating files: 86% (15490/18011) 2025-01-24T02:40:43.5296680Z Updating files: 87% (15670/18011) 2025-01-24T02:40:43.5877450Z Updating files: 88% (15850/18011) 2025-01-24T02:40:43.6440360Z Updating files: 89% (16030/18011) 2025-01-24T02:40:43.6957060Z Updating files: 90% (16210/18011) 2025-01-24T02:40:43.7451050Z Updating files: 91% (16391/18011) 2025-01-24T02:40:43.7533800Z Updating files: 91% (16546/18011) 2025-01-24T02:40:43.8079560Z Updating files: 92% (16571/18011) 2025-01-24T02:40:43.8610810Z Updating files: 93% (16751/18011) 2025-01-24T02:40:43.9127800Z Updating files: 94% (16931/18011) 2025-01-24T02:40:43.9595700Z Updating files: 95% (17111/18011) 2025-01-24T02:40:44.0129270Z Updating files: 96% (17291/18011) 2025-01-24T02:40:44.0655440Z Updating files: 97% (17471/18011) 2025-01-24T02:40:44.1101500Z Updating files: 98% (17651/18011) 2025-01-24T02:40:44.1632690Z Updating files: 99% (17831/18011) 2025-01-24T02:40:44.1632960Z Updating files: 100% (18011/18011) 2025-01-24T02:40:44.1633240Z Updating files: 100% (18011/18011), done. 2025-01-24T02:40:44.1830100Z Note: switching to 'd087145b9259b4cfbcb758dc0bca6a6e5d75d08f'. 2025-01-24T02:40:44.1830450Z 2025-01-24T02:40:44.1830700Z You are in 'detached HEAD' state. You can look around, make experimental 2025-01-24T02:40:44.1831210Z changes and commit them, and you can discard any commits you make in this 2025-01-24T02:40:44.1831710Z state without impacting any branches by switching back to a branch. 2025-01-24T02:40:44.1832030Z 2025-01-24T02:40:44.1832240Z If you want to create a new branch to retain commits you create, you may 2025-01-24T02:40:44.1832760Z do so (now or later) by using -c with the switch command. Example: 2025-01-24T02:40:44.1833050Z 2025-01-24T02:40:44.1833170Z git switch -c 2025-01-24T02:40:44.1833510Z 2025-01-24T02:40:44.1833590Z Or undo this operation with: 2025-01-24T02:40:44.1833740Z 2025-01-24T02:40:44.1833810Z git switch - 2025-01-24T02:40:44.1833920Z 2025-01-24T02:40:44.1834140Z Turn off this advice by setting config variable advice.detachedHead to false 2025-01-24T02:40:44.1834460Z 2025-01-24T02:40:44.1834680Z HEAD is now at d087145b925 Add accuracy issue support in AOTI Minifier (#145539) 2025-01-24T02:40:44.1852830Z ##[endgroup] 2025-01-24T02:40:44.1853180Z ##[group]Setting up auth for fetching submodules 2025-01-24T02:40:44.1857270Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-01-24T02:40:44.1968520Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-01-24T02:40:44.2027480Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-01-24T02:40:44.2086760Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-01-24T02:40:44.2142280Z ##[endgroup] 2025-01-24T02:40:44.2142610Z ##[group]Fetching submodules 2025-01-24T02:40:44.2144460Z [command]/usr/bin/git submodule sync --recursive 2025-01-24T02:40:44.2641510Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --recursive 2025-01-24T02:40:44.3145190Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2025-01-24T02:40:44.3167940Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2025-01-24T02:40:44.3187960Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2025-01-24T02:40:44.3210020Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2025-01-24T02:40:44.3232780Z Submodule 'third_party/NVTX' (https://github.com/NVIDIA/NVTX.git) registered for path 'third_party/NVTX' 2025-01-24T02:40:44.3256040Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2025-01-24T02:40:44.3278130Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2025-01-24T02:40:44.3300770Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2025-01-24T02:40:44.3323050Z Submodule 'third_party/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/composable_kernel' 2025-01-24T02:40:44.3344230Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2025-01-24T02:40:44.3365400Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2025-01-24T02:40:44.3387560Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2025-01-24T02:40:44.3409050Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2025-01-24T02:40:44.3430240Z Submodule 'third_party/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'third_party/eigen' 2025-01-24T02:40:44.3451340Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2025-01-24T02:40:44.3472780Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2025-01-24T02:40:44.3494400Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2025-01-24T02:40:44.3513540Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2025-01-24T02:40:44.3534870Z Submodule 'third_party/gloo' (https://github.com/facebookincubator/gloo) registered for path 'third_party/gloo' 2025-01-24T02:40:44.3557000Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2025-01-24T02:40:44.3578780Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2025-01-24T02:40:44.3600510Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2025-01-24T02:40:44.3621570Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2025-01-24T02:40:44.3642980Z Submodule 'third_party/kleidiai' (https://github.com/ARM-software/kleidiai.git) registered for path 'third_party/kleidiai' 2025-01-24T02:40:44.3664210Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2025-01-24T02:40:44.3685720Z Submodule 'third_party/nccl/nccl' (https://github.com/NVIDIA/nccl) registered for path 'third_party/nccl/nccl' 2025-01-24T02:40:44.3707160Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2025-01-24T02:40:44.3729000Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2025-01-24T02:40:44.3750590Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2025-01-24T02:40:44.3772000Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2025-01-24T02:40:44.3793890Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2025-01-24T02:40:44.3815780Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2025-01-24T02:40:44.3835810Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2025-01-24T02:40:44.3857350Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2025-01-24T02:40:44.3878720Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2025-01-24T02:40:44.3900840Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2025-01-24T02:40:44.3922550Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2025-01-24T02:40:44.3993710Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/android/libs/fbjni'... 2025-01-24T02:40:44.6350480Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/FP16'... 2025-01-24T02:40:44.8306870Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/FXdiv'... 2025-01-24T02:40:45.0508950Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/NNPACK'... 2025-01-24T02:40:45.2694680Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/NVTX'... 2025-01-24T02:40:45.5896630Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2025-01-24T02:40:46.9068600Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2025-01-24T02:40:53.1839820Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/benchmark'... 2025-01-24T02:40:53.5893220Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/composable_kernel'... 2025-01-24T02:40:55.1144070Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2025-01-24T02:40:55.5407000Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2025-01-24T02:40:56.0543770Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2025-01-24T02:40:56.8471670Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/cutlass'... 2025-01-24T02:40:58.7230450Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/eigen'... 2025-01-24T02:41:01.9167740Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fbgemm'... 2025-01-24T02:41:03.1998740Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2025-01-24T02:41:04.4592410Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fmt'... 2025-01-24T02:41:05.3165170Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2025-01-24T02:41:05.7234100Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/gloo'... 2025-01-24T02:41:06.0852440Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/googletest'... 2025-01-24T02:41:06.7800000Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/ideep'... 2025-01-24T02:41:07.0755220Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/ittapi'... 2025-01-24T02:41:07.3750980Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto'... 2025-01-24T02:41:08.3648880Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kleidiai'... 2025-01-24T02:41:08.7398200Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/mimalloc'... 2025-01-24T02:41:09.2869590Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/nccl/nccl'... 2025-01-24T02:41:09.6189050Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/nlohmann'... 2025-01-24T02:41:12.9149620Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx'... 2025-01-24T02:41:14.6620630Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2025-01-24T02:41:17.2366920Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/pocketfft'... 2025-01-24T02:41:17.4512580Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/protobuf'... 2025-01-24T02:41:23.4411810Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/psimd'... 2025-01-24T02:41:23.6372030Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2025-01-24T02:41:23.9096740Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/pybind11'... 2025-01-24T02:41:24.8353590Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2025-01-24T02:41:25.1599380Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/sleef'... 2025-01-24T02:41:25.6871850Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2025-01-24T02:41:26.0715490Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-01-24T02:41:26.0916170Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-01-24T02:41:26.1091790Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-01-24T02:41:26.1449880Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-01-24T02:41:26.1941480Z Submodule path 'third_party/NVTX': checked out 'e170594ac7cf1dac584da473d4ca9301087090c1' 2025-01-24T02:41:26.2364500Z Submodule path 'third_party/VulkanMemoryAllocator': checked out 'a6bfc237255a6bac1513f7c1ebde6d8aed6b5191' 2025-01-24T02:41:29.3343830Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-01-24T02:41:29.3832800Z Submodule path 'third_party/benchmark': checked out '0d98dba29d66e93259db7daa53a9327df767a415' 2025-01-24T02:41:31.1271570Z Submodule path 'third_party/composable_kernel': checked out '50ee4267e27b875d149e642f4cebd47be1dc3b57' 2025-01-24T02:41:31.4901080Z Submodule path 'third_party/cpp-httplib': checked out '3b6597bba913d51161383657829b7e644e59c006' 2025-01-24T02:41:31.7014470Z Submodule path 'third_party/cpuinfo': checked out '1e83a2fdd3102f65c6f1fb602c1b320486218a99' 2025-01-24T02:41:31.7678690Z Submodule path 'third_party/cudnn_frontend': checked out 'ee971b18ee428ff55b444ac93876cfbd377d304f' 2025-01-24T02:41:34.4314700Z Submodule path 'third_party/cutlass': checked out 'bf9da7b76c766d7ee7d536afc77880a4ef1f1156' 2025-01-24T02:41:35.5316260Z Submodule path 'third_party/eigen': checked out '3147391d946bb4b6c68edd901f2add6ac1f31f8c' 2025-01-24T02:41:35.7328000Z Submodule path 'third_party/fbgemm': checked out 'dbc3157bf256f1339b3fa1fef2be89ac4078be0e' 2025-01-24T02:41:35.7511470Z Submodule 'third_party/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/third_party/asmjit' 2025-01-24T02:41:35.7636920Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/third_party/cpuinfo' 2025-01-24T02:41:35.7680410Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/fbgemm/third_party/cutlass' 2025-01-24T02:41:35.7786290Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/third_party/googletest' 2025-01-24T02:41:35.7920670Z Submodule 'third_party/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/third_party/hipify_torch' 2025-01-24T02:41:35.8039900Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/asmjit'... 2025-01-24T02:41:36.7236050Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/cpuinfo'... 2025-01-24T02:41:37.2486660Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/cutlass'... 2025-01-24T02:41:39.1300360Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/googletest'... 2025-01-24T02:41:39.8472710Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/hipify_torch'... 2025-01-24T02:41:40.1692650Z Submodule path 'third_party/fbgemm/third_party/asmjit': checked out 'd3fbf7c9bc7c1d1365a94a45614b91c5a3706b81' 2025-01-24T02:41:40.2579000Z Submodule path 'third_party/fbgemm/third_party/cpuinfo': checked out 'ed8b86a253800bafdb7b25c5c399f91bff9cb1f3' 2025-01-24T02:41:41.2257180Z Submodule path 'third_party/fbgemm/third_party/cutlass': checked out 'fc9ebc645b63f3a6bc80aaefde5c063fb72110d6' 2025-01-24T02:41:41.2906000Z Submodule path 'third_party/fbgemm/third_party/googletest': checked out 'cbf019de22c8dd37b2108da35b2748fd702d1796' 2025-01-24T02:41:41.3203960Z Submodule path 'third_party/fbgemm/third_party/hipify_torch': checked out '23f53b025b466d8ec3c45d52290d3442f7fbe6b1' 2025-01-24T02:41:41.8395080Z Submodule path 'third_party/flatbuffers': checked out '01834de25e4bf3975a9a00e816292b1ad0fe184b' 2025-01-24T02:41:41.8807160Z Submodule path 'third_party/fmt': checked out 'e3ddede6c4ee818825c4e5a6dfa1d384860c27d9' 2025-01-24T02:41:41.9207560Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-01-24T02:41:42.0011250Z Submodule path 'third_party/gloo': checked out '5354032ea08eadd7fc4456477f7f7c6308818509' 2025-01-24T02:41:42.0759140Z Submodule path 'third_party/googletest': checked out 'b514bdc898e2951020cbdca1304b75f5950d1f59' 2025-01-24T02:41:42.1123130Z Submodule path 'third_party/ideep': checked out 'e026f3b0318087fe19e2b062e8edf55bfe7a522c' 2025-01-24T02:41:42.1165510Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2025-01-24T02:41:42.1229440Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2025-01-24T02:41:49.1716320Z Submodule path 'third_party/ideep/mkl-dnn': checked out '66f0cb9eb66affd2da3bf5f8d897376f04aae6af' 2025-01-24T02:41:49.2147930Z Submodule path 'third_party/ittapi': checked out '5b8a7d7422611c3a0d799fb5fc5dd4abfae35b42' 2025-01-24T02:41:49.5998260Z Submodule path 'third_party/kineto': checked out 'bc1616a65cfe552516ce62f81ead48e45c85e18c' 2025-01-24T02:41:49.6555520Z Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' 2025-01-24T02:41:49.6965360Z Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' 2025-01-24T02:41:49.7001150Z Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' 2025-01-24T02:41:49.7251470Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2025-01-24T02:41:50.4356240Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2025-01-24T02:41:51.3219240Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2025-01-24T02:41:52.1125560Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-01-24T02:41:52.1168700Z Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-01-24T02:41:52.1188620Z Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-01-24T02:41:52.1208740Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-01-24T02:41:52.1229420Z Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-01-24T02:41:52.1245790Z Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-01-24T02:41:52.1267610Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-01-24T02:41:52.1288170Z Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-01-24T02:41:52.1309700Z Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-01-24T02:41:52.1377420Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2025-01-24T02:41:53.3083000Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2025-01-24T02:41:53.7491320Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2025-01-24T02:41:54.6359850Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2025-01-24T02:41:54.8810690Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2025-01-24T02:41:55.3171600Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2025-01-24T02:41:56.0781230Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2025-01-24T02:41:59.3887360Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2025-01-24T02:41:59.7227060Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-01-24T02:41:59.7524680Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-01-24T02:41:59.7901570Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-01-24T02:41:59.8118980Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-01-24T02:41:59.8160730Z Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-01-24T02:41:59.8224830Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2025-01-24T02:42:00.0735800Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-01-24T02:42:00.0989650Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-01-24T02:42:00.1435520Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-01-24T02:42:00.2547500Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-01-24T02:42:00.2821310Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-01-24T02:42:00.3175260Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-01-24T02:42:00.3741850Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-01-24T02:42:00.4087770Z Submodule path 'third_party/kleidiai': checked out '202603f38a9df9d2ded89f12b41ded621c71d4ea' 2025-01-24T02:42:00.4531690Z Submodule path 'third_party/mimalloc': checked out 'b66e3214d8a104669c2ec05ae91ebc26a8f5ab78' 2025-01-24T02:42:00.4891710Z Submodule path 'third_party/nccl/nccl': checked out 'ab2b89c4c339bd7f816fbc114a4b05d386b66290' 2025-01-24T02:42:00.6106660Z Submodule path 'third_party/nlohmann': checked out '87cda1d6646592ac5866dc703c8e1839046a6806' 2025-01-24T02:42:03.1210370Z Submodule path 'third_party/onnx': checked out 'b8baa8446686496da4cc8fda09f2b6fe65c2a02c' 2025-01-24T02:42:03.1400930Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2025-01-24T02:42:03.1461710Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2025-01-24T02:42:04.0332270Z Submodule path 'third_party/onnx/third_party/pybind11': checked out '3e9dfa2866941655c56877882565e7577de6fc7b' 2025-01-24T02:42:04.1369280Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-01-24T02:42:04.1411890Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-01-24T02:42:04.1429050Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2025-01-24T02:42:04.1449030Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-01-24T02:42:04.1467270Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-01-24T02:42:04.1484410Z Submodule 'third_party/opentelemetry-proto' (https://github.com/open-telemetry/opentelemetry-proto) registered for path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-01-24T02:42:04.1496730Z Submodule 'third_party/opentracing-cpp' (https://github.com/opentracing/opentracing-cpp.git) registered for path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-01-24T02:42:04.1513470Z Submodule 'third_party/prometheus-cpp' (https://github.com/jupp0r/prometheus-cpp) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-01-24T02:42:04.1533000Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-01-24T02:42:04.1596310Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2025-01-24T02:42:04.6269850Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2025-01-24T02:42:05.3498680Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2025-01-24T02:42:05.6575540Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2025-01-24T02:42:08.9210350Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2025-01-24T02:42:09.1988510Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2025-01-24T02:42:09.4050830Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2025-01-24T02:42:09.7315320Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2025-01-24T02:42:14.4813530Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-01-24T02:42:14.5267050Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-01-24T02:42:14.5500780Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-01-24T02:42:14.6762190Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-01-24T02:42:14.7014470Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-01-24T02:42:14.7254740Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-01-24T02:42:14.7681330Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-01-24T02:42:14.7725230Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-01-24T02:42:14.7744900Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-01-24T02:42:14.7812490Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2025-01-24T02:42:15.9475630Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2025-01-24T02:42:16.9067540Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-01-24T02:42:16.9544560Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-01-24T02:42:20.6824530Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-01-24T02:42:20.7259340Z Submodule path 'third_party/pocketfft': checked out '9d3ab05a7fffbc71a492bc6a17be034e83e8f0fe' 2025-01-24T02:42:21.7425650Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-01-24T02:42:21.7586540Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2025-01-24T02:42:21.7606050Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2025-01-24T02:42:21.7671310Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2025-01-24T02:42:22.1598930Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2025-01-24T02:42:22.9122730Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-01-24T02:42:22.9821750Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-01-24T02:42:23.0038980Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-01-24T02:42:23.0239760Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-01-24T02:42:23.0681750Z Submodule path 'third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-01-24T02:42:23.1020530Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-01-24T02:42:23.1468250Z Submodule path 'third_party/sleef': checked out '56e1f79cb140fb9326d612d0be06b5250565cade' 2025-01-24T02:42:23.1866490Z Submodule path 'third_party/tensorpipe': checked out '52791a2fd214b2a9dc5759d36725909c1daa7f2e' 2025-01-24T02:42:23.1911510Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2025-01-24T02:42:23.1932400Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2025-01-24T02:42:23.1952540Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2025-01-24T02:42:23.1973480Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2025-01-24T02:42:23.2040010Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2025-01-24T02:42:23.9163410Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2025-01-24T02:42:24.1529680Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2025-01-24T02:42:25.6069310Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2025-01-24T02:42:26.4899990Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-01-24T02:42:26.5153100Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-01-24T02:42:26.5795680Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '1dff88e5161cba5c59276d2070d2e304e4dcb242' 2025-01-24T02:42:26.6150540Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-01-24T02:42:26.6193430Z Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-01-24T02:42:26.6257230Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2025-01-24T02:42:26.8179530Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-01-24T02:42:26.8251080Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-01-24T02:42:26.8934180Z Entering 'android/libs/fbjni' 2025-01-24T02:42:26.9020610Z Entering 'third_party/FP16' 2025-01-24T02:42:26.9106850Z Entering 'third_party/FXdiv' 2025-01-24T02:42:26.9189160Z Entering 'third_party/NNPACK' 2025-01-24T02:42:26.9271270Z Entering 'third_party/NVTX' 2025-01-24T02:42:26.9352680Z Entering 'third_party/VulkanMemoryAllocator' 2025-01-24T02:42:26.9433980Z Entering 'third_party/XNNPACK' 2025-01-24T02:42:26.9519300Z Entering 'third_party/benchmark' 2025-01-24T02:42:26.9601220Z Entering 'third_party/composable_kernel' 2025-01-24T02:42:26.9682570Z Entering 'third_party/cpp-httplib' 2025-01-24T02:42:26.9762480Z Entering 'third_party/cpuinfo' 2025-01-24T02:42:26.9843000Z Entering 'third_party/cudnn_frontend' 2025-01-24T02:42:26.9924390Z Entering 'third_party/cutlass' 2025-01-24T02:42:27.0009990Z Entering 'third_party/eigen' 2025-01-24T02:42:27.0094830Z Entering 'third_party/fbgemm' 2025-01-24T02:42:27.0177100Z Entering 'third_party/fbgemm/third_party/asmjit' 2025-01-24T02:42:27.0259100Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2025-01-24T02:42:27.0340720Z Entering 'third_party/fbgemm/third_party/cutlass' 2025-01-24T02:42:27.0423990Z Entering 'third_party/fbgemm/third_party/googletest' 2025-01-24T02:42:27.0505110Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2025-01-24T02:42:27.0586890Z Entering 'third_party/flatbuffers' 2025-01-24T02:42:27.0670800Z Entering 'third_party/fmt' 2025-01-24T02:42:27.0754930Z Entering 'third_party/gemmlowp/gemmlowp' 2025-01-24T02:42:27.0836770Z Entering 'third_party/gloo' 2025-01-24T02:42:27.0916990Z Entering 'third_party/googletest' 2025-01-24T02:42:27.0999240Z Entering 'third_party/ideep' 2025-01-24T02:42:27.1077800Z Entering 'third_party/ideep/mkl-dnn' 2025-01-24T02:42:27.1161020Z Entering 'third_party/ittapi' 2025-01-24T02:42:27.1241590Z Entering 'third_party/kineto' 2025-01-24T02:42:27.1320190Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-01-24T02:42:27.1398500Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-01-24T02:42:27.1477760Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-01-24T02:42:27.1557430Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-01-24T02:42:27.1638920Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-01-24T02:42:27.1718720Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-01-24T02:42:27.1802720Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-01-24T02:42:27.1884380Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-01-24T02:42:27.1966430Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-01-24T02:42:27.2048540Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-01-24T02:42:27.2130530Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-01-24T02:42:27.2211620Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-01-24T02:42:27.2294420Z Entering 'third_party/kleidiai' 2025-01-24T02:42:27.2377350Z Entering 'third_party/mimalloc' 2025-01-24T02:42:27.2458920Z Entering 'third_party/nccl/nccl' 2025-01-24T02:42:27.2541040Z Entering 'third_party/nlohmann' 2025-01-24T02:42:27.2622670Z Entering 'third_party/onnx' 2025-01-24T02:42:27.2708130Z Entering 'third_party/onnx/third_party/pybind11' 2025-01-24T02:42:27.2793960Z Entering 'third_party/opentelemetry-cpp' 2025-01-24T02:42:27.2877440Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-01-24T02:42:27.2958030Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-01-24T02:42:27.3039260Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-01-24T02:42:27.3120420Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-01-24T02:42:27.3201950Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-01-24T02:42:27.3282090Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-01-24T02:42:27.3362270Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-01-24T02:42:27.3444130Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-01-24T02:42:27.3526840Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-01-24T02:42:27.3609050Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-01-24T02:42:27.3698310Z Entering 'third_party/pocketfft' 2025-01-24T02:42:27.3780300Z Entering 'third_party/protobuf' 2025-01-24T02:42:27.3858210Z Entering 'third_party/protobuf/third_party/benchmark' 2025-01-24T02:42:27.3937670Z Entering 'third_party/protobuf/third_party/googletest' 2025-01-24T02:42:27.4017820Z Entering 'third_party/psimd' 2025-01-24T02:42:27.4097040Z Entering 'third_party/pthreadpool' 2025-01-24T02:42:27.4176660Z Entering 'third_party/pybind11' 2025-01-24T02:42:27.4255810Z Entering 'third_party/python-peachpy' 2025-01-24T02:42:27.4338500Z Entering 'third_party/sleef' 2025-01-24T02:42:27.4418890Z Entering 'third_party/tensorpipe' 2025-01-24T02:42:27.4497850Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-01-24T02:42:27.4578130Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-01-24T02:42:27.4658820Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-01-24T02:42:27.4738790Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-01-24T02:42:27.4818390Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-01-24T02:42:27.4910120Z ##[endgroup] 2025-01-24T02:42:27.4910490Z ##[group]Persisting credentials for submodules 2025-01-24T02:42:27.4913740Z [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-01-24T02:42:27.5395380Z Entering 'android/libs/fbjni' 2025-01-24T02:42:27.5501720Z Entering 'third_party/FP16' 2025-01-24T02:42:27.5597040Z Entering 'third_party/FXdiv' 2025-01-24T02:42:27.5692600Z Entering 'third_party/NNPACK' 2025-01-24T02:42:27.5790620Z Entering 'third_party/NVTX' 2025-01-24T02:42:27.5889930Z Entering 'third_party/VulkanMemoryAllocator' 2025-01-24T02:42:27.5989750Z Entering 'third_party/XNNPACK' 2025-01-24T02:42:27.6093770Z Entering 'third_party/benchmark' 2025-01-24T02:42:27.6194800Z Entering 'third_party/composable_kernel' 2025-01-24T02:42:27.6293760Z Entering 'third_party/cpp-httplib' 2025-01-24T02:42:27.6392750Z Entering 'third_party/cpuinfo' 2025-01-24T02:42:27.6489430Z Entering 'third_party/cudnn_frontend' 2025-01-24T02:42:27.6590790Z Entering 'third_party/cutlass' 2025-01-24T02:42:27.6687250Z Entering 'third_party/eigen' 2025-01-24T02:42:27.6787740Z Entering 'third_party/fbgemm' 2025-01-24T02:42:27.6885960Z Entering 'third_party/fbgemm/third_party/asmjit' 2025-01-24T02:42:27.6984700Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2025-01-24T02:42:27.7084090Z Entering 'third_party/fbgemm/third_party/cutlass' 2025-01-24T02:42:27.7187080Z Entering 'third_party/fbgemm/third_party/googletest' 2025-01-24T02:42:27.7287540Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2025-01-24T02:42:27.7388130Z Entering 'third_party/flatbuffers' 2025-01-24T02:42:27.7487640Z Entering 'third_party/fmt' 2025-01-24T02:42:27.7586720Z Entering 'third_party/gemmlowp/gemmlowp' 2025-01-24T02:42:27.7684720Z Entering 'third_party/gloo' 2025-01-24T02:42:27.7782080Z Entering 'third_party/googletest' 2025-01-24T02:42:27.7880090Z Entering 'third_party/ideep' 2025-01-24T02:42:27.7976920Z Entering 'third_party/ideep/mkl-dnn' 2025-01-24T02:42:27.8079150Z Entering 'third_party/ittapi' 2025-01-24T02:42:27.8179040Z Entering 'third_party/kineto' 2025-01-24T02:42:27.8278200Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-01-24T02:42:27.8375170Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-01-24T02:42:27.8474500Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-01-24T02:42:27.8574140Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-01-24T02:42:27.8675720Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-01-24T02:42:27.8773020Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-01-24T02:42:27.8874830Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-01-24T02:42:27.8976340Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-01-24T02:42:27.9076920Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-01-24T02:42:27.9180250Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-01-24T02:42:27.9281030Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-01-24T02:42:27.9379520Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-01-24T02:42:27.9479100Z Entering 'third_party/kleidiai' 2025-01-24T02:42:27.9578990Z Entering 'third_party/mimalloc' 2025-01-24T02:42:27.9679010Z Entering 'third_party/nccl/nccl' 2025-01-24T02:42:27.9777930Z Entering 'third_party/nlohmann' 2025-01-24T02:42:27.9878070Z Entering 'third_party/onnx' 2025-01-24T02:42:27.9981770Z Entering 'third_party/onnx/third_party/pybind11' 2025-01-24T02:42:28.0085850Z Entering 'third_party/opentelemetry-cpp' 2025-01-24T02:42:28.0186130Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-01-24T02:42:28.0283660Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-01-24T02:42:28.0381880Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-01-24T02:42:28.0479750Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-01-24T02:42:28.0577880Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-01-24T02:42:28.0675760Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-01-24T02:42:28.0774000Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-01-24T02:42:28.0869840Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-01-24T02:42:28.0970080Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-01-24T02:42:28.1069100Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-01-24T02:42:28.1177080Z Entering 'third_party/pocketfft' 2025-01-24T02:42:28.1277310Z Entering 'third_party/protobuf' 2025-01-24T02:42:28.1374270Z Entering 'third_party/protobuf/third_party/benchmark' 2025-01-24T02:42:28.1472110Z Entering 'third_party/protobuf/third_party/googletest' 2025-01-24T02:42:28.1571850Z Entering 'third_party/psimd' 2025-01-24T02:42:28.1670630Z Entering 'third_party/pthreadpool' 2025-01-24T02:42:28.1767930Z Entering 'third_party/pybind11' 2025-01-24T02:42:28.1866390Z Entering 'third_party/python-peachpy' 2025-01-24T02:42:28.1964600Z Entering 'third_party/sleef' 2025-01-24T02:42:28.2060740Z Entering 'third_party/tensorpipe' 2025-01-24T02:42:28.2155950Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-01-24T02:42:28.2252210Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-01-24T02:42:28.2347950Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-01-24T02:42:28.2443880Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-01-24T02:42:28.2538070Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-01-24T02:42:28.2647060Z [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-01-24T02:42:28.3126640Z Entering 'android/libs/fbjni' 2025-01-24T02:42:28.3223070Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-01-24T02:42:28.3256620Z Entering 'third_party/FP16' 2025-01-24T02:42:28.3352140Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-01-24T02:42:28.3386080Z Entering 'third_party/FXdiv' 2025-01-24T02:42:28.3482130Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-01-24T02:42:28.3515750Z Entering 'third_party/NNPACK' 2025-01-24T02:42:28.3611060Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-01-24T02:42:28.3643790Z Entering 'third_party/NVTX' 2025-01-24T02:42:28.3739970Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-01-24T02:42:28.3773620Z Entering 'third_party/VulkanMemoryAllocator' 2025-01-24T02:42:28.3868460Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-01-24T02:42:28.3900940Z Entering 'third_party/XNNPACK' 2025-01-24T02:42:28.3995750Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-01-24T02:42:28.4034070Z Entering 'third_party/benchmark' 2025-01-24T02:42:28.4131690Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-01-24T02:42:28.4165130Z Entering 'third_party/composable_kernel' 2025-01-24T02:42:28.4261990Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-01-24T02:42:28.4297330Z Entering 'third_party/cpp-httplib' 2025-01-24T02:42:28.4395410Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-01-24T02:42:28.4428980Z Entering 'third_party/cpuinfo' 2025-01-24T02:42:28.4524200Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-01-24T02:42:28.4557030Z Entering 'third_party/cudnn_frontend' 2025-01-24T02:42:28.4652970Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-01-24T02:42:28.4687010Z Entering 'third_party/cutlass' 2025-01-24T02:42:28.4784070Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-01-24T02:42:28.4820280Z Entering 'third_party/eigen' 2025-01-24T02:42:28.4918540Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/eigen/config remote.origin.url 2025-01-24T02:42:28.4952740Z Entering 'third_party/fbgemm' 2025-01-24T02:42:28.5046950Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-01-24T02:42:28.5078480Z Entering 'third_party/fbgemm/third_party/asmjit' 2025-01-24T02:42:28.5174800Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/asmjit/config remote.origin.url 2025-01-24T02:42:28.5208110Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2025-01-24T02:42:28.5305350Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/cpuinfo/config remote.origin.url 2025-01-24T02:42:28.5338560Z Entering 'third_party/fbgemm/third_party/cutlass' 2025-01-24T02:42:28.5434830Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/cutlass/config remote.origin.url 2025-01-24T02:42:28.5469720Z Entering 'third_party/fbgemm/third_party/googletest' 2025-01-24T02:42:28.5565270Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/googletest/config remote.origin.url 2025-01-24T02:42:28.5597740Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2025-01-24T02:42:28.5692020Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/hipify_torch/config remote.origin.url 2025-01-24T02:42:28.5727790Z Entering 'third_party/flatbuffers' 2025-01-24T02:42:28.5825200Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-01-24T02:42:28.5859300Z Entering 'third_party/fmt' 2025-01-24T02:42:28.5956650Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-01-24T02:42:28.5990360Z Entering 'third_party/gemmlowp/gemmlowp' 2025-01-24T02:42:28.6086360Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-01-24T02:42:28.6120090Z Entering 'third_party/gloo' 2025-01-24T02:42:28.6217030Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-01-24T02:42:28.6250210Z Entering 'third_party/googletest' 2025-01-24T02:42:28.6345030Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-01-24T02:42:28.6378630Z Entering 'third_party/ideep' 2025-01-24T02:42:28.6474530Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-01-24T02:42:28.6506990Z Entering 'third_party/ideep/mkl-dnn' 2025-01-24T02:42:28.6604620Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-01-24T02:42:28.6641140Z Entering 'third_party/ittapi' 2025-01-24T02:42:28.6738270Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-01-24T02:42:28.6771500Z Entering 'third_party/kineto' 2025-01-24T02:42:28.6867660Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-01-24T02:42:28.6899640Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-01-24T02:42:28.6995070Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-01-24T02:42:28.7026440Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-01-24T02:42:28.7123200Z 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-01-24T02:42:28.7156330Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-01-24T02:42:28.7256870Z 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-01-24T02:42:28.7289800Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-01-24T02:42:28.7386750Z 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-01-24T02:42:28.7420980Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-01-24T02:42:28.7517520Z 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-01-24T02:42:28.7549750Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-01-24T02:42:28.7644790Z 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-01-24T02:42:28.7679370Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-01-24T02:42:28.7775960Z 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-01-24T02:42:28.7809810Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-01-24T02:42:28.7907190Z 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-01-24T02:42:28.7940840Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-01-24T02:42:28.8038990Z 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-01-24T02:42:28.8072960Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-01-24T02:42:28.8170890Z 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-01-24T02:42:28.8205880Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-01-24T02:42:28.8304550Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-01-24T02:42:28.8337670Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-01-24T02:42:28.8431590Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-01-24T02:42:28.8467080Z Entering 'third_party/kleidiai' 2025-01-24T02:42:28.8565850Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-01-24T02:42:28.8599490Z Entering 'third_party/mimalloc' 2025-01-24T02:42:28.8695870Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-01-24T02:42:28.8730630Z Entering 'third_party/nccl/nccl' 2025-01-24T02:42:28.8828430Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/nccl/nccl/config remote.origin.url 2025-01-24T02:42:28.8862020Z Entering 'third_party/nlohmann' 2025-01-24T02:42:28.8959540Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-01-24T02:42:28.8993810Z Entering 'third_party/onnx' 2025-01-24T02:42:28.9090760Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-01-24T02:42:28.9128570Z Entering 'third_party/onnx/third_party/pybind11' 2025-01-24T02:42:28.9228390Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-01-24T02:42:28.9264570Z Entering 'third_party/opentelemetry-cpp' 2025-01-24T02:42:28.9363490Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-01-24T02:42:28.9396360Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-01-24T02:42:28.9493740Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-01-24T02:42:28.9526770Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-01-24T02:42:28.9620760Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-01-24T02:42:28.9653750Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-01-24T02:42:28.9749030Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-01-24T02:42:28.9782950Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-01-24T02:42:28.9880770Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-01-24T02:42:28.9914860Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-01-24T02:42:29.0012980Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-01-24T02:42:29.0046220Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-01-24T02:42:29.0144000Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-01-24T02:42:29.0177080Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-01-24T02:42:29.0274690Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-01-24T02:42:29.0306600Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-01-24T02:42:29.0402100Z 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-01-24T02:42:29.0435950Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-01-24T02:42:29.0536520Z 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-01-24T02:42:29.0572460Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-01-24T02:42:29.0669750Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-01-24T02:42:29.0711970Z Entering 'third_party/pocketfft' 2025-01-24T02:42:29.0810880Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-01-24T02:42:29.0843530Z Entering 'third_party/protobuf' 2025-01-24T02:42:29.0941120Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-01-24T02:42:29.0974740Z Entering 'third_party/protobuf/third_party/benchmark' 2025-01-24T02:42:29.1071450Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-01-24T02:42:29.1105000Z Entering 'third_party/protobuf/third_party/googletest' 2025-01-24T02:42:29.1201010Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-01-24T02:42:29.1236170Z Entering 'third_party/psimd' 2025-01-24T02:42:29.1333590Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-01-24T02:42:29.1366730Z Entering 'third_party/pthreadpool' 2025-01-24T02:42:29.1463220Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-01-24T02:42:29.1496310Z Entering 'third_party/pybind11' 2025-01-24T02:42:29.1591270Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-01-24T02:42:29.1625460Z Entering 'third_party/python-peachpy' 2025-01-24T02:42:29.1723320Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-01-24T02:42:29.1757190Z Entering 'third_party/sleef' 2025-01-24T02:42:29.1852870Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-01-24T02:42:29.1886210Z Entering 'third_party/tensorpipe' 2025-01-24T02:42:29.1983300Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-01-24T02:42:29.2014690Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-01-24T02:42:29.2110200Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-01-24T02:42:29.2143700Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-01-24T02:42:29.2240040Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-01-24T02:42:29.2273710Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-01-24T02:42:29.2369140Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-01-24T02:42:29.2403180Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-01-24T02:42:29.2500820Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-01-24T02:42:29.2532700Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-01-24T02:42:29.2630050Z 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-01-24T02:42:29.2824090Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-01-24T02:42:29.3322610Z Entering 'android/libs/fbjni' 2025-01-24T02:42:29.3406560Z Entering 'third_party/FP16' 2025-01-24T02:42:29.3488440Z Entering 'third_party/FXdiv' 2025-01-24T02:42:29.3570300Z Entering 'third_party/NNPACK' 2025-01-24T02:42:29.3651160Z Entering 'third_party/NVTX' 2025-01-24T02:42:29.3730880Z Entering 'third_party/VulkanMemoryAllocator' 2025-01-24T02:42:29.3810980Z Entering 'third_party/XNNPACK' 2025-01-24T02:42:29.3896700Z Entering 'third_party/benchmark' 2025-01-24T02:42:29.3979620Z Entering 'third_party/composable_kernel' 2025-01-24T02:42:29.4060000Z Entering 'third_party/cpp-httplib' 2025-01-24T02:42:29.4139410Z Entering 'third_party/cpuinfo' 2025-01-24T02:42:29.4217700Z Entering 'third_party/cudnn_frontend' 2025-01-24T02:42:29.4296900Z Entering 'third_party/cutlass' 2025-01-24T02:42:29.4381490Z Entering 'third_party/eigen' 2025-01-24T02:42:29.4465750Z Entering 'third_party/fbgemm' 2025-01-24T02:42:29.4545400Z Entering 'third_party/fbgemm/third_party/asmjit' 2025-01-24T02:42:29.4626050Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2025-01-24T02:42:29.4705170Z Entering 'third_party/fbgemm/third_party/cutlass' 2025-01-24T02:42:29.4787810Z Entering 'third_party/fbgemm/third_party/googletest' 2025-01-24T02:42:29.4867550Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2025-01-24T02:42:29.4950040Z Entering 'third_party/flatbuffers' 2025-01-24T02:42:29.5031350Z Entering 'third_party/fmt' 2025-01-24T02:42:29.5112940Z Entering 'third_party/gemmlowp/gemmlowp' 2025-01-24T02:42:29.5193370Z Entering 'third_party/gloo' 2025-01-24T02:42:29.5274360Z Entering 'third_party/googletest' 2025-01-24T02:42:29.5355240Z Entering 'third_party/ideep' 2025-01-24T02:42:29.5436870Z Entering 'third_party/ideep/mkl-dnn' 2025-01-24T02:42:29.5520420Z Entering 'third_party/ittapi' 2025-01-24T02:42:29.5600330Z Entering 'third_party/kineto' 2025-01-24T02:42:29.5678330Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-01-24T02:42:29.5756920Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-01-24T02:42:29.5838310Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-01-24T02:42:29.5919890Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-01-24T02:42:29.6000110Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-01-24T02:42:29.6079600Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-01-24T02:42:29.6161870Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-01-24T02:42:29.6243190Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-01-24T02:42:29.6325030Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-01-24T02:42:29.6404420Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-01-24T02:42:29.6486810Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-01-24T02:42:29.6568470Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-01-24T02:42:29.6650730Z Entering 'third_party/kleidiai' 2025-01-24T02:42:29.6733800Z Entering 'third_party/mimalloc' 2025-01-24T02:42:29.6815340Z Entering 'third_party/nccl/nccl' 2025-01-24T02:42:29.6896870Z Entering 'third_party/nlohmann' 2025-01-24T02:42:29.6978430Z Entering 'third_party/onnx' 2025-01-24T02:42:29.7064780Z Entering 'third_party/onnx/third_party/pybind11' 2025-01-24T02:42:29.7149150Z Entering 'third_party/opentelemetry-cpp' 2025-01-24T02:42:29.7229220Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-01-24T02:42:29.7309810Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-01-24T02:42:29.7389300Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-01-24T02:42:29.7470780Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-01-24T02:42:29.7552720Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-01-24T02:42:29.7631810Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-01-24T02:42:29.7710520Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-01-24T02:42:29.7787260Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-01-24T02:42:29.7867770Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-01-24T02:42:29.7948570Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-01-24T02:42:29.8035390Z Entering 'third_party/pocketfft' 2025-01-24T02:42:29.8116590Z Entering 'third_party/protobuf' 2025-01-24T02:42:29.8195300Z Entering 'third_party/protobuf/third_party/benchmark' 2025-01-24T02:42:29.8274850Z Entering 'third_party/protobuf/third_party/googletest' 2025-01-24T02:42:29.8357130Z Entering 'third_party/psimd' 2025-01-24T02:42:29.8439850Z Entering 'third_party/pthreadpool' 2025-01-24T02:42:29.8520170Z Entering 'third_party/pybind11' 2025-01-24T02:42:29.8600350Z Entering 'third_party/python-peachpy' 2025-01-24T02:42:29.8680740Z Entering 'third_party/sleef' 2025-01-24T02:42:29.8761670Z Entering 'third_party/tensorpipe' 2025-01-24T02:42:29.8842270Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-01-24T02:42:29.8922560Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-01-24T02:42:29.9001690Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-01-24T02:42:29.9082320Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-01-24T02:42:29.9160080Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-01-24T02:42:29.9252510Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-01-24T02:42:29.9735740Z Entering 'android/libs/fbjni' 2025-01-24T02:42:29.9821060Z Entering 'third_party/FP16' 2025-01-24T02:42:29.9900080Z Entering 'third_party/FXdiv' 2025-01-24T02:42:29.9981930Z Entering 'third_party/NNPACK' 2025-01-24T02:42:30.0063400Z Entering 'third_party/NVTX' 2025-01-24T02:42:30.0144020Z Entering 'third_party/VulkanMemoryAllocator' 2025-01-24T02:42:30.0222700Z Entering 'third_party/XNNPACK' 2025-01-24T02:42:30.0308420Z Entering 'third_party/benchmark' 2025-01-24T02:42:30.0388840Z Entering 'third_party/composable_kernel' 2025-01-24T02:42:30.0473320Z Entering 'third_party/cpp-httplib' 2025-01-24T02:42:30.0552080Z Entering 'third_party/cpuinfo' 2025-01-24T02:42:30.0633030Z Entering 'third_party/cudnn_frontend' 2025-01-24T02:42:30.0711720Z Entering 'third_party/cutlass' 2025-01-24T02:42:30.0795060Z Entering 'third_party/eigen' 2025-01-24T02:42:30.0874590Z Entering 'third_party/fbgemm' 2025-01-24T02:42:30.0953460Z Entering 'third_party/fbgemm/third_party/asmjit' 2025-01-24T02:42:30.1032300Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2025-01-24T02:42:30.1113220Z Entering 'third_party/fbgemm/third_party/cutlass' 2025-01-24T02:42:30.1193920Z Entering 'third_party/fbgemm/third_party/googletest' 2025-01-24T02:42:30.1273270Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2025-01-24T02:42:30.1354030Z Entering 'third_party/flatbuffers' 2025-01-24T02:42:30.1436860Z Entering 'third_party/fmt' 2025-01-24T02:42:30.1516710Z Entering 'third_party/gemmlowp/gemmlowp' 2025-01-24T02:42:30.1595630Z Entering 'third_party/gloo' 2025-01-24T02:42:30.1674460Z Entering 'third_party/googletest' 2025-01-24T02:42:30.1756200Z Entering 'third_party/ideep' 2025-01-24T02:42:30.1835360Z Entering 'third_party/ideep/mkl-dnn' 2025-01-24T02:42:30.1920220Z Entering 'third_party/ittapi' 2025-01-24T02:42:30.2001450Z Entering 'third_party/kineto' 2025-01-24T02:42:30.2078680Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-01-24T02:42:30.2158110Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-01-24T02:42:30.2239850Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-01-24T02:42:30.2321470Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-01-24T02:42:30.2403150Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-01-24T02:42:30.2482620Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-01-24T02:42:30.2563930Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-01-24T02:42:30.2646050Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-01-24T02:42:30.2726920Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-01-24T02:42:30.2809150Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-01-24T02:42:30.2890730Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-01-24T02:42:30.2971910Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-01-24T02:42:30.3052970Z Entering 'third_party/kleidiai' 2025-01-24T02:42:30.3135110Z Entering 'third_party/mimalloc' 2025-01-24T02:42:30.3215590Z Entering 'third_party/nccl/nccl' 2025-01-24T02:42:30.3296440Z Entering 'third_party/nlohmann' 2025-01-24T02:42:30.3375300Z Entering 'third_party/onnx' 2025-01-24T02:42:30.3461100Z Entering 'third_party/onnx/third_party/pybind11' 2025-01-24T02:42:30.3544240Z Entering 'third_party/opentelemetry-cpp' 2025-01-24T02:42:30.3624140Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-01-24T02:42:30.3703180Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-01-24T02:42:30.3783180Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-01-24T02:42:30.3862480Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-01-24T02:42:30.3944300Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-01-24T02:42:30.4023030Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-01-24T02:42:30.4102550Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-01-24T02:42:30.4182510Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-01-24T02:42:30.4263870Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-01-24T02:42:30.4346850Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-01-24T02:42:30.4434900Z Entering 'third_party/pocketfft' 2025-01-24T02:42:30.4516200Z Entering 'third_party/protobuf' 2025-01-24T02:42:30.4595150Z Entering 'third_party/protobuf/third_party/benchmark' 2025-01-24T02:42:30.4673710Z Entering 'third_party/protobuf/third_party/googletest' 2025-01-24T02:42:30.4754790Z Entering 'third_party/psimd' 2025-01-24T02:42:30.4834870Z Entering 'third_party/pthreadpool' 2025-01-24T02:42:30.4913980Z Entering 'third_party/pybind11' 2025-01-24T02:42:30.4992660Z Entering 'third_party/python-peachpy' 2025-01-24T02:42:30.5073740Z Entering 'third_party/sleef' 2025-01-24T02:42:30.5153790Z Entering 'third_party/tensorpipe' 2025-01-24T02:42:30.5231530Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-01-24T02:42:30.5310630Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-01-24T02:42:30.5389460Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-01-24T02:42:30.5468600Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-01-24T02:42:30.5546380Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-01-24T02:42:30.5636000Z ##[endgroup] 2025-01-24T02:42:30.5874670Z [command]/usr/bin/git log -1 --format=%H 2025-01-24T02:42:30.6089140Z d087145b9259b4cfbcb758dc0bca6a6e5d75d08f 2025-01-24T02:42:30.6778850Z ##[group]Run if [ -n "${XCODE_VERSION}" ]; then 2025-01-24T02:42:30.6779360Z if [ -n "${XCODE_VERSION}" ]; then 2025-01-24T02:42:30.6780080Z  echo "DEVELOPER_DIR=/Applications/Xcode_${XCODE_VERSION}.app/Contents/Developer" >> "${GITHUB_ENV}" 2025-01-24T02:42:30.6780720Z fi 2025-01-24T02:42:30.7121710Z shell: /bin/bash -e {0} 2025-01-24T02:42:30.7121910Z env: 2025-01-24T02:42:30.7122080Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:42:30.7122320Z SCCACHE_USE_GHA: false 2025-01-24T02:42:30.7122510Z XCODE_VERSION: 2025-01-24T02:42:30.7122660Z ##[endgroup] 2025-01-24T02:42:30.7687740Z ##[group]Run pytorch/test-infra/.github/actions/setup-miniconda@main 2025-01-24T02:42:30.7688100Z with: 2025-01-24T02:42:30.7688240Z python-version: 3.9.12 2025-01-24T02:42:30.7688560Z environment-file: .github/requirements/conda-env-macOS-ARM64 2025-01-24T02:42:30.7688990Z pip-requirements-file: .github/requirements/pip-requirements-macOS.txt 2025-01-24T02:42:30.7689340Z miniconda-version: 24.7.1-0 2025-01-24T02:42:30.7689640Z default-packages: cmake=3.22 ninja=1.10 pkg-config=0.29 wheel=0.37 2025-01-24T02:42:30.7689940Z env: 2025-01-24T02:42:30.7690090Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:42:30.7690320Z SCCACHE_USE_GHA: false 2025-01-24T02:42:30.7690490Z ##[endgroup] 2025-01-24T02:42:30.7705890Z ##[group]Run echo "today=$(/bin/date -u '+%Y%m%d')d" >> "${GITHUB_OUTPUT}" 2025-01-24T02:42:30.7706340Z echo "today=$(/bin/date -u '+%Y%m%d')d" >> "${GITHUB_OUTPUT}" 2025-01-24T02:42:30.7707070Z echo "default_packages_checksum=$(echo -n cmake=3.22 ninja=1.10 pkg-config=0.29 wheel=0.37 | md5sum | awk '{print $1}' )" >> "${GITHUB_OUTPUT}" 2025-01-24T02:42:30.7723490Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-01-24T02:42:30.7723820Z env: 2025-01-24T02:42:30.7723990Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:42:30.7724230Z SCCACHE_USE_GHA: false 2025-01-24T02:42:30.7724510Z ##[endgroup] 2025-01-24T02:42:30.8213920Z /Users/ec2-user/runner/_work/_temp/47f43953-66a7-424e-96a8-93ea5186cb3d.sh: line 2: md5sum: command not found 2025-01-24T02:42:30.8259880Z ##[group]Run actions/cache@v3 2025-01-24T02:42:30.8260130Z with: 2025-01-24T02:42:30.8260350Z path: /Users/ec2-user/runner/_work/_temp/miniconda 2025-01-24T02:42:30.8260700Z key: miniconda-24.7.1-0-macOS-ARM64-3.9.12--20250124d 2025-01-24T02:42:30.8261010Z enableCrossOsArchive: false 2025-01-24T02:42:30.8261240Z fail-on-cache-miss: false 2025-01-24T02:42:30.8261440Z lookup-only: false 2025-01-24T02:42:30.8261620Z env: 2025-01-24T02:42:30.8261840Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:42:30.8262080Z SCCACHE_USE_GHA: false 2025-01-24T02:42:30.8262280Z ##[endgroup] 2025-01-24T02:42:32.0614020Z Received 281018368 of 320755518 (87.6%), 268.0 MBs/sec 2025-01-24T02:42:32.9605760Z Cache Size: ~306 MB (320755518 B) 2025-01-24T02:42:32.9704320Z [command]/usr/bin/tar -xf /Users/ec2-user/runner/_work/_temp/50f7fdc8-f00b-4f05-bbac-30b61e1684e8/cache.tzst -P -C /Users/ec2-user/runner/_work/pytorch/pytorch --use-compress-program unzstd 2025-01-24T02:42:33.0637800Z Received 320755518 of 320755518 (100.0%), 152.7 MBs/sec 2025-01-24T02:42:43.2282150Z Cache restored successfully 2025-01-24T02:42:43.2393340Z Cache restored from key: miniconda-24.7.1-0-macOS-ARM64-3.9.12--20250124d 2025-01-24T02:42:43.2629230Z ##[group]Run set -x 2025-01-24T02:42:43.2629450Z set -x 2025-01-24T02:42:43.2629640Z  2025-01-24T02:42:43.2629880Z MINICONDA_INSTALL_PATH="${RUNNER_TEMP}/miniconda" 2025-01-24T02:42:43.2630340Z echo "${MINICONDA_INSTALL_PATH}/bin" >> $GITHUB_PATH 2025-01-24T02:42:43.2630800Z # NB: GITHUB_PATH has a lower priority than PATH, so also set the path 2025-01-24T02:42:43.2631250Z # here to make sure that the correct conda is used 2025-01-24T02:42:43.2631710Z { 2025-01-24T02:42:43.2639370Z  echo "PATH=${MINICONDA_INSTALL_PATH}/bin:${PATH}" 2025-01-24T02:42:43.2639770Z  echo "CONDA_EXE=${MINICONDA_INSTALL_PATH}/bin/conda"; 2025-01-24T02:42:43.2640090Z } >> "${GITHUB_ENV}" 2025-01-24T02:42:43.2759820Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-01-24T02:42:43.2760120Z env: 2025-01-24T02:42:43.2760300Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:42:43.2760560Z SCCACHE_USE_GHA: false 2025-01-24T02:42:43.2760750Z ##[endgroup] 2025-01-24T02:42:43.3167200Z + MINICONDA_INSTALL_PATH=/Users/ec2-user/runner/_work/_temp/miniconda 2025-01-24T02:42:43.3167790Z + echo /Users/ec2-user/runner/_work/_temp/miniconda/bin 2025-01-24T02:42:43.3169730Z + echo PATH=/Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:42:43.3170970Z + echo CONDA_EXE=/Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:42:43.4859310Z ##[group]Run actions/cache@v3 2025-01-24T02:42:43.4859600Z with: 2025-01-24T02:42:43.4859860Z path: /Users/ec2-user/runner/_work/_temp/conda-python-3.9.12 2025-01-24T02:42:43.4860780Z key: miniconda-env-macOS-ARM64-3.9.12--20250124d-df4fea1f0320691e2ceb8626578a181fee2e2aab8244c248a366f57a0ba49f19-1e6dd9adfba445a270b4cff461819503ae49e15d12e5e871673c1d40e1e85ded 2025-01-24T02:42:43.4861580Z enableCrossOsArchive: false 2025-01-24T02:42:43.4861840Z fail-on-cache-miss: false 2025-01-24T02:42:43.4862060Z lookup-only: false 2025-01-24T02:42:43.4862240Z env: 2025-01-24T02:42:43.4862700Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:42:43.4862950Z SCCACHE_USE_GHA: false 2025-01-24T02:42:43.4863800Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:42:43.4864820Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:42:43.4865320Z ##[endgroup] 2025-01-24T02:42:45.0770670Z Received 241017456 of 241017456 (100.0%), 229.6 MBs/sec 2025-01-24T02:42:45.4031480Z Cache Size: ~230 MB (241017456 B) 2025-01-24T02:42:45.4053560Z [command]/usr/bin/tar -xf /Users/ec2-user/runner/_work/_temp/bf7e0c76-f797-456c-b21c-7a211dd95092/cache.tzst -P -C /Users/ec2-user/runner/_work/pytorch/pytorch --use-compress-program unzstd 2025-01-24T02:42:58.6311460Z Cache restored successfully 2025-01-24T02:42:58.7498360Z Cache restored from key: miniconda-env-macOS-ARM64-3.9.12--20250124d-df4fea1f0320691e2ceb8626578a181fee2e2aab8244c248a366f57a0ba49f19-1e6dd9adfba445a270b4cff461819503ae49e15d12e5e871673c1d40e1e85ded 2025-01-24T02:42:58.7564350Z ##[group]Run set -x 2025-01-24T02:42:58.7564600Z set -x 2025-01-24T02:42:58.7564770Z  2025-01-24T02:42:58.7565090Z # Print the conda we are using here in case we need debugging information 2025-01-24T02:42:58.7565560Z CONDA_RUNTIME=$(which conda) 2025-01-24T02:42:58.7565830Z "${CONDA_RUNTIME}" --version 2025-01-24T02:42:58.7566080Z  2025-01-24T02:42:58.7566480Z # https://docs.conda.io/projects/conda-build/en/stable/user-guide/environment-variables.html 2025-01-24T02:42:58.7567070Z CONDA_PREFIX="${RUNNER_TEMP}/conda_environment_${GITHUB_RUN_ID}" 2025-01-24T02:42:58.7567450Z "${CONDA_RUNTIME}" create \ 2025-01-24T02:42:58.7567710Z  --yes --quiet \ 2025-01-24T02:42:58.7567960Z  --prefix "${CONDA_PREFIX}" \ 2025-01-24T02:42:58.7568250Z  --clone "${CONDA_BASE_ENV}" 2025-01-24T02:42:58.7568480Z  2025-01-24T02:42:58.7568640Z set +e 2025-01-24T02:42:58.7569000Z # NB: Cloning sometimes doesn't copied pip dependencies (untracked files) over. If this 2025-01-24T02:42:58.7569650Z # happens, let's attempt to install the pip requirements directly on top of the cloned 2025-01-24T02:42:58.7570480Z # environment. This is to make sure that no dependency is missing. 2025-01-24T02:42:58.7571070Z UNTRACKED_FILES_COUNT=$("${CONDA_RUNTIME}" package -p "${CONDA_PREFIX}" -u | grep -v "^#" | wc -l | xargs) 2025-01-24T02:42:58.7571530Z set -e 2025-01-24T02:42:58.7571700Z  2025-01-24T02:42:58.7572030Z if [[ -z "${UNTRACKED_FILES_COUNT}" ]] || [[ "${UNTRACKED_FILES_COUNT}" == "0" ]]; then 2025-01-24T02:42:58.7572480Z  if [[ -f "${PIP_REQUIREMENTS_FILE}" ]]; then 2025-01-24T02:42:58.7572960Z  # NB: Force reinstall and don't use the cache, as the installation would still fail 2025-01-24T02:42:58.7573660Z  # when reporting that all requirements have been satisfied 2025-01-24T02:42:58.7574450Z  "${CONDA_RUNTIME}" run -p "${CONDA_PREFIX}" --no-capture-output python3 -mpip install --ignore-installed --no-cache-dir -r "${PIP_REQUIREMENTS_FILE}" 2025-01-24T02:42:58.7575130Z  elif [[ -n "${PIP_REQUIREMENTS_FILE}" ]]; then 2025-01-24T02:42:58.7575710Z  echo "::warning::Specified pip requirements file (${PIP_REQUIREMENTS_FILE}) not found, not going to include it" 2025-01-24T02:42:58.7576200Z  fi 2025-01-24T02:42:58.7576380Z fi 2025-01-24T02:42:58.7576550Z  2025-01-24T02:42:58.7576920Z # Keep exporting CONDA_PREFIX under CONDA_ENV because the latter could be used elsewhere 2025-01-24T02:42:58.7577440Z echo "CONDA_ENV=${CONDA_PREFIX}" >> "${GITHUB_ENV}" 2025-01-24T02:42:58.7577750Z  2025-01-24T02:42:58.7578000Z echo "CONDA_PREFIX=${CONDA_PREFIX}" >> "${GITHUB_ENV}" 2025-01-24T02:42:58.7578530Z echo "CONDA_RUN=${CONDA_RUNTIME} run -p ${CONDA_PREFIX} --no-capture-output" >> "${GITHUB_ENV}" 2025-01-24T02:42:58.7579040Z if [[ "${PYTHON_VERSION}" == "3.11" ]]; then 2025-01-24T02:42:58.7579490Z  # TODO: Remove me, when more packages will be available on default channel 2025-01-24T02:42:58.7580150Z  echo "CONDA_INSTALL=${CONDA_RUNTIME} install --yes --quiet -p ${CONDA_PREFIX} -c pytorch-nightly" >> "${GITHUB_ENV}" 2025-01-24T02:42:58.7580640Z else 2025-01-24T02:42:58.7581000Z  echo "CONDA_INSTALL=${CONDA_RUNTIME} install --yes --quiet -p ${CONDA_PREFIX}" >> "${GITHUB_ENV}" 2025-01-24T02:42:58.7581420Z fi 2025-01-24T02:42:58.7665140Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-01-24T02:42:58.7665450Z env: 2025-01-24T02:42:58.7665630Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:42:58.7665960Z SCCACHE_USE_GHA: false 2025-01-24T02:42:58.7666840Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:42:58.7667850Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:42:58.7668200Z PYTHON_VERSION: 3.9.12 2025-01-24T02:42:58.7668530Z CONDA_BASE_ENV: /Users/ec2-user/runner/_work/_temp/conda-python-3.9.12 2025-01-24T02:42:58.7669000Z PIP_REQUIREMENTS_FILE: .github/requirements/pip-requirements-macOS.txt 2025-01-24T02:42:58.7669360Z ##[endgroup] 2025-01-24T02:42:58.8086740Z ++ which conda 2025-01-24T02:42:58.8118620Z + CONDA_RUNTIME=/Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:42:58.8119190Z + /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda --version 2025-01-24T02:43:02.4225700Z conda 24.7.1 2025-01-24T02:43:02.4521690Z + CONDA_PREFIX=/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:02.4523410Z + /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda create --yes --quiet --prefix /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 --clone /Users/ec2-user/runner/_work/_temp/conda-python-3.9.12 2025-01-24T02:43:10.7298310Z Source: /Users/ec2-user/runner/_work/_temp/conda-python-3.9.12 2025-01-24T02:43:10.7299270Z Destination: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:10.7299670Z Packages: 59 2025-01-24T02:43:10.7299870Z Files: 17049 2025-01-24T02:43:10.9204080Z Preparing transaction: ...working... done 2025-01-24T02:43:15.1308090Z Verifying transaction: ...working... done 2025-01-24T02:43:18.9031130Z Executing transaction: ...working... done 2025-01-24T02:43:18.9999980Z + set +e 2025-01-24T02:43:19.0008310Z ++ /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda package -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 -u 2025-01-24T02:43:19.0009360Z ++ grep -v '^#' 2025-01-24T02:43:19.0009570Z ++ wc -l 2025-01-24T02:43:19.0009820Z ++ xargs 2025-01-24T02:43:19.7457550Z + UNTRACKED_FILES_COUNT=17049 2025-01-24T02:43:19.7458350Z + set -e 2025-01-24T02:43:19.7458600Z + [[ -z 17049 ]] 2025-01-24T02:43:19.7458800Z + [[ 17049 == \0 ]] 2025-01-24T02:43:19.7459220Z + echo CONDA_ENV=/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:19.7459860Z + echo CONDA_PREFIX=/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:19.7469260Z + echo 'CONDA_RUN=/Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 --no-capture-output' 2025-01-24T02:43:19.7478240Z + [[ 3.9.12 == \3\.\1\1 ]] 2025-01-24T02:43:19.7479090Z + echo 'CONDA_INSTALL=/Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145' 2025-01-24T02:43:19.7515150Z ##[group]Run CONDA_RUNTIME=$(which conda) 2025-01-24T02:43:19.7524890Z CONDA_RUNTIME=$(which conda) 2025-01-24T02:43:19.7525150Z  2025-01-24T02:43:19.7525350Z set -euxo pipefail 2025-01-24T02:43:19.7525700Z "${CONDA_RUNTIME}" config --set channel_priority false 2025-01-24T02:43:19.8082970Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-01-24T02:43:19.8083280Z env: 2025-01-24T02:43:19.8083450Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:43:19.8083700Z SCCACHE_USE_GHA: false 2025-01-24T02:43:19.8084530Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:43:19.8085520Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:43:19.8085970Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:19.8086450Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:19.8087210Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 --no-capture-output 2025-01-24T02:43:19.8088250Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:19.8088880Z ##[endgroup] 2025-01-24T02:43:19.8508060Z + /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda config --set channel_priority false 2025-01-24T02:43:20.0414230Z ##[group]Run nick-fields/retry@v3.0.0 2025-01-24T02:43:20.0414480Z with: 2025-01-24T02:43:20.0414630Z timeout_minutes: 5 2025-01-24T02:43:20.0414820Z max_attempts: 3 2025-01-24T02:43:20.0415000Z retry_wait_seconds: 90 2025-01-24T02:43:20.0418470Z 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}"0 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-01-24T02:43:20.0422220Z polling_interval_seconds: 1 2025-01-24T02:43:20.0422430Z warning_on_retry: true 2025-01-24T02:43:20.0422630Z continue_on_error: false 2025-01-24T02:43:20.0422810Z env: 2025-01-24T02:43:20.0422970Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:43:20.0423200Z SCCACHE_USE_GHA: false 2025-01-24T02:43:20.0424020Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:43:20.0424960Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:43:20.0425400Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:20.0425890Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:20.0426640Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 --no-capture-output 2025-01-24T02:43:20.0427660Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:20.0428260Z ##[endgroup] 2025-01-24T02:43:20.1309580Z + DOWNLOAD_SCCACHE=0 2025-01-24T02:43:20.1309910Z + SCCACHE_VERSION=0.4.1 2025-01-24T02:43:20.1317610Z + LOCAL_PATH=/usr/local/bin 2025-01-24T02:43:20.1318110Z + '[' '!' -f /usr/local/bin/sccache ']' 2025-01-24T02:43:20.1352020Z ++ /usr/local/bin/sccache --version 2025-01-24T02:43:20.1352410Z ++ cut '-d ' -f2 2025-01-24T02:43:20.1958130Z + LOCAL_VERSION=0.4.1 2025-01-24T02:43:20.1958750Z + '[' 0.4.1 '!=' 0.4.1 ']' 2025-01-24T02:43:20.1959030Z + '[' 0 == 1 ']' 2025-01-24T02:43:20.1959220Z + [[ false == \t\r\u\e ]] 2025-01-24T02:43:20.1959590Z + echo SCCACHE_BUCKET=ossci-compiler-cache-circleci-v2 2025-01-24T02:43:20.1959970Z + echo SCCACHE_S3_KEY_PREFIX=trunk 2025-01-24T02:43:20.1960820Z + echo /usr/local/bin 2025-01-24T02:43:21.1337420Z Command completed after 1 attempt(s). 2025-01-24T02:43:21.1590140Z Prepare all required actions 2025-01-24T02:43:21.1683910Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-01-24T02:43:21.1684730Z with: 2025-01-24T02:43:21.1686110Z github-token: *** 2025-01-24T02:43:21.1686640Z env: 2025-01-24T02:43:21.1687140Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:43:21.1687890Z SCCACHE_USE_GHA: false 2025-01-24T02:43:21.1690450Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:43:21.1693320Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:43:21.1694680Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:21.1696150Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:21.1698400Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 --no-capture-output 2025-01-24T02:43:21.1700950Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:21.1702510Z SCCACHE_S3_KEY_PREFIX: trunk 2025-01-24T02:43:21.1703380Z ##[endgroup] 2025-01-24T02:43:21.1733970Z ##[group]Run set -eux 2025-01-24T02:43:21.1734520Z set -eux 2025-01-24T02:43:21.1735460Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-01-24T02:43:21.1941620Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-01-24T02:43:21.1942240Z env: 2025-01-24T02:43:21.1942700Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:43:21.1943190Z SCCACHE_USE_GHA: false 2025-01-24T02:43:21.1944900Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:43:21.1947210Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:43:21.1948300Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:21.1949510Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:21.1951070Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 --no-capture-output 2025-01-24T02:43:21.1953170Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:21.1954660Z SCCACHE_S3_KEY_PREFIX: trunk 2025-01-24T02:43:21.1955430Z GITHUB_TOKEN: *** 2025-01-24T02:43:21.1955890Z ##[endgroup] 2025-01-24T02:43:21.2445220Z + python3 .github/scripts/get_workflow_job_id.py 12940918145 i-0e9e21dfc8da289f4 2025-01-24T02:43:23.2421180Z setting job-id=36096136053 2025-01-24T02:43:23.2521940Z setting job-name=macos-py3-arm64 / build 2025-01-24T02:43:23.2979070Z Prepare all required actions 2025-01-24T02:43:23.2979690Z Getting action download info 2025-01-24T02:43:23.4399380Z ##[group]Run ./.github/actions/filter-test-configs 2025-01-24T02:43:23.4400060Z with: 2025-01-24T02:43:23.4400780Z github-token: *** 2025-01-24T02:43:23.4402440Z 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" }, ]} 2025-01-24T02:43:23.4404220Z job-name: macos-py3-arm64 / build 2025-01-24T02:43:23.4404690Z env: 2025-01-24T02:43:23.4405030Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:43:23.4405530Z SCCACHE_USE_GHA: false 2025-01-24T02:43:23.4407310Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:43:23.4409300Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:43:23.4410250Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:23.4411300Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:23.4412920Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 --no-capture-output 2025-01-24T02:43:23.4415110Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:23.4416440Z SCCACHE_S3_KEY_PREFIX: trunk 2025-01-24T02:43:23.4416880Z ##[endgroup] 2025-01-24T02:43:23.4471680Z ##[group]Run nick-fields/retry@v3.0.0 2025-01-24T02:43:23.4472290Z with: 2025-01-24T02:43:23.4472570Z shell: bash 2025-01-24T02:43:23.4472910Z timeout_minutes: 10 2025-01-24T02:43:23.4473290Z max_attempts: 5 2025-01-24T02:43:23.4473630Z retry_wait_seconds: 30 2025-01-24T02:43:23.4474980Z 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-01-24T02:43:23.4476700Z polling_interval_seconds: 1 2025-01-24T02:43:23.4477140Z warning_on_retry: true 2025-01-24T02:43:23.4477530Z continue_on_error: false 2025-01-24T02:43:23.4477930Z env: 2025-01-24T02:43:23.4478240Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:43:23.4478830Z SCCACHE_USE_GHA: false 2025-01-24T02:43:23.4480370Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:43:23.4482170Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:43:23.4483050Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:23.4483990Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:23.4485420Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 --no-capture-output 2025-01-24T02:43:23.4487340Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:23.4488520Z SCCACHE_S3_KEY_PREFIX: trunk 2025-01-24T02:43:23.4489170Z GITHUB_TOKEN: *** 2025-01-24T02:43:23.4489510Z ##[endgroup] 2025-01-24T02:43:23.5451090Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2025-01-24T02:43:24.8211100Z Collecting requests==2.27.1 2025-01-24T02:43:24.8405510Z Using cached requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-01-24T02:43:24.8440300Z Requirement already satisfied: pyyaml==6.0.1 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (6.0.1) 2025-01-24T02:43:24.8445680Z Requirement already satisfied: urllib3<1.27,>=1.21.1 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from requests==2.27.1) (1.26.20) 2025-01-24T02:43:24.8447460Z Requirement already satisfied: certifi>=2017.4.17 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from requests==2.27.1) (2024.12.14) 2025-01-24T02:43:24.8450710Z Requirement already satisfied: charset-normalizer~=2.0.0 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from requests==2.27.1) (2.0.12) 2025-01-24T02:43:24.8453450Z Requirement already satisfied: idna<4,>=2.5 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from requests==2.27.1) (3.10) 2025-01-24T02:43:24.8599270Z Using cached requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-01-24T02:43:25.2307740Z Installing collected packages: requests 2025-01-24T02:43:25.2308140Z Attempting uninstall: requests 2025-01-24T02:43:25.2312240Z Found existing installation: requests 2.32.3 2025-01-24T02:43:25.2359070Z Uninstalling requests-2.32.3: 2025-01-24T02:43:25.2365520Z Successfully uninstalled requests-2.32.3 2025-01-24T02:43:25.2839070Z ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. 2025-01-24T02:43:25.2840040Z datasets 3.2.0 requires requests>=2.32.2, but you have requests 2.27.1 which is incompatible. 2025-01-24T02:43:25.2840550Z Successfully installed requests-2.27.1 2025-01-24T02:43:25.5484490Z Command completed after 1 attempt(s). 2025-01-24T02:43:25.5713720Z ##[group]Run set -x 2025-01-24T02:43:25.5714430Z set -x 2025-01-24T02:43:25.5715070Z  2025-01-24T02:43:25.5716240Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-01-24T02:43:25.5717770Z # in runner workspace 2025-01-24T02:43:25.5718900Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-01-24T02:43:25.5840800Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-01-24T02:43:25.5842410Z env: 2025-01-24T02:43:25.5843070Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:43:25.5844020Z SCCACHE_USE_GHA: false 2025-01-24T02:43:25.5847070Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:43:25.5849940Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:43:25.5851310Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:25.5852790Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:25.5855110Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 --no-capture-output 2025-01-24T02:43:25.5858200Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:25.5860130Z SCCACHE_S3_KEY_PREFIX: trunk 2025-01-24T02:43:25.5860750Z ##[endgroup] 2025-01-24T02:43:25.6594700Z + python3 /Users/ec2-user/runner/_work/pytorch/pytorch/./.github/actions/filter-test-configs/../../scripts/parse_ref.py 2025-01-24T02:43:25.6785060Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-01-24T02:43:25.6785390Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-01-24T02:43:25.6785680Z echo "Job name: ${JOB_NAME}" 2025-01-24T02:43:25.6785910Z  2025-01-24T02:43:25.6786230Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-01-24T02:43:25.6786660Z # in runner workspace 2025-01-24T02:43:25.6787210Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-01-24T02:43:25.6787630Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-01-24T02:43:25.6787900Z  --job-name "${JOB_NAME}" \ 2025-01-24T02:43:25.6788200Z  --test-matrix "{ include: [ 2025-01-24T02:43:25.6788580Z  { config: "default", shard: 1, num_shards: 3, runner: "macos-m1-stable" }, 2025-01-24T02:43:25.6789080Z  { config: "default", shard: 2, num_shards: 3, runner: "macos-m1-stable" }, 2025-01-24T02:43:25.6789580Z  { config: "default", shard: 3, num_shards: 3, runner: "macos-m1-stable" }, 2025-01-24T02:43:25.6789920Z ]} 2025-01-24T02:43:25.6790070Z " \ 2025-01-24T02:43:25.6790260Z  --selected-test-configs "" \ 2025-01-24T02:43:25.6790540Z  --pr-number "${PR_NUMBER}" \ 2025-01-24T02:43:25.6790790Z  --tag "${TAG}" \ 2025-01-24T02:43:25.6791040Z  --event-name "${EVENT_NAME}" \ 2025-01-24T02:43:25.6791310Z  --schedule "${SCHEDULE}" \ 2025-01-24T02:43:25.6791570Z  --branch "${HEAD_BRANCH}" 2025-01-24T02:43:25.6810810Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-01-24T02:43:25.6811100Z env: 2025-01-24T02:43:25.6811300Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:43:25.6811550Z SCCACHE_USE_GHA: false 2025-01-24T02:43:25.6812400Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:43:25.6813360Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:43:25.6813850Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:25.6814330Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:25.6815090Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 --no-capture-output 2025-01-24T02:43:25.6816200Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:25.6816970Z SCCACHE_S3_KEY_PREFIX: trunk 2025-01-24T02:43:25.6817420Z GITHUB_TOKEN: *** 2025-01-24T02:43:25.6817620Z JOB_NAME: macos-py3-arm64 / build 2025-01-24T02:43:25.6817850Z PR_NUMBER: 2025-01-24T02:43:25.6818010Z TAG: ciflow/trunk/145539 2025-01-24T02:43:25.6818210Z EVENT_NAME: push 2025-01-24T02:43:25.6818380Z SCHEDULE: 2025-01-24T02:43:25.6818530Z HEAD_BRANCH: 2025-01-24T02:43:25.6818690Z ##[endgroup] 2025-01-24T02:43:25.7221080Z Workflow: trunk 2025-01-24T02:43:25.7221630Z Job name: macos-py3-arm64 / build 2025-01-24T02:43:26.0044470Z INFO:root:Found no test-config label on the PR, so all test configs are included 2025-01-24T02:43:26.1812230Z ##[group]Run echo "Filtered matrix:" 2025-01-24T02:43:26.1812520Z echo "Filtered matrix:" 2025-01-24T02:43:26.1813380Z 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"}]}" 2025-01-24T02:43:26.1814320Z  2025-01-24T02:43:26.1814480Z echo 2025-01-24T02:43:26.1814700Z echo "Is the current job unstable? False" 2025-01-24T02:43:26.1814980Z  2025-01-24T02:43:26.1815140Z echo 2025-01-24T02:43:26.1815340Z echo "Is keep-going label set? False" 2025-01-24T02:43:26.1815680Z  2025-01-24T02:43:26.1815840Z echo 2025-01-24T02:43:26.1816020Z echo "Renabled issues? " 2025-01-24T02:43:26.1835400Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-01-24T02:43:26.1835720Z env: 2025-01-24T02:43:26.1835880Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:43:26.1836300Z SCCACHE_USE_GHA: false 2025-01-24T02:43:26.1837130Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:43:26.1838120Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:43:26.1838570Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:26.1839070Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:26.1839840Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 --no-capture-output 2025-01-24T02:43:26.1840890Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:26.1841570Z SCCACHE_S3_KEY_PREFIX: trunk 2025-01-24T02:43:26.1841800Z ##[endgroup] 2025-01-24T02:43:26.2247380Z Filtered matrix: 2025-01-24T02:43:26.2248710Z {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}]} 2025-01-24T02:43:26.2249610Z 2025-01-24T02:43:26.2249750Z Is the current job unstable? False 2025-01-24T02:43:26.2249930Z 2025-01-24T02:43:26.2250080Z Is keep-going label set? False 2025-01-24T02:43:26.2250270Z 2025-01-24T02:43:26.2250340Z Renabled issues? 2025-01-24T02:43:26.2299300Z ##[group]Run echo "CMAKE_PREFIX_PATH=${CONDA_PREFIX:-"$(dirname "$(which conda)")/../"}" >> "${GITHUB_ENV}" 2025-01-24T02:43:26.2300070Z echo "CMAKE_PREFIX_PATH=${CONDA_PREFIX:-"$(dirname "$(which conda)")/../"}" >> "${GITHUB_ENV}" 2025-01-24T02:43:26.2300490Z  2025-01-24T02:43:26.2300680Z if [[ -n "$CONDA_ENV" ]]; then 2025-01-24T02:43:26.2300970Z  # Use binaries under conda environment 2025-01-24T02:43:26.2301290Z  export PATH="$CONDA_ENV/bin":$PATH 2025-01-24T02:43:26.2301530Z fi 2025-01-24T02:43:26.2301700Z  2025-01-24T02:43:26.2302190Z # NB: Same trick as Linux, there is no need to initialize sccache with the risk of getting 2025-01-24T02:43:26.2302790Z # it hangs or timeout at initialization. The cache will be started automatically 2025-01-24T02:43:26.2303230Z export SKIP_SCCACHE_INITIALIZATION=1 2025-01-24T02:43:26.2303590Z ${CONDA_RUN} .ci/pytorch/macos-build.sh 2025-01-24T02:43:26.2322600Z shell: /bin/bash -e {0} 2025-01-24T02:43:26.2322840Z env: 2025-01-24T02:43:26.2323020Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:43:26.2323280Z SCCACHE_USE_GHA: false 2025-01-24T02:43:26.2324120Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:43:26.2325080Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:43:26.2325560Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:26.2326110Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:26.2326870Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 --no-capture-output 2025-01-24T02:43:26.2327880Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:43:26.2328500Z SCCACHE_S3_KEY_PREFIX: trunk 2025-01-24T02:43:26.2328720Z OUR_GITHUB_JOB_ID: 36096136053 2025-01-24T02:43:26.2328930Z ##[endgroup] 2025-01-24T02:43:26.6668360Z +++ [[ macos-py3-arm64 == *rocm* ]] 2025-01-24T02:43:26.6668850Z +++ BUILD_TEST_LIBTORCH=0 2025-01-24T02:43:26.6671930Z ++ sysctl -a 2025-01-24T02:43:26.6673350Z ++ grep machdep.cpu 2025-01-24T02:43:26.6825760Z machdep.cpu.cores_per_package: 8 2025-01-24T02:43:26.6826110Z machdep.cpu.core_count: 8 2025-01-24T02:43:26.6826440Z machdep.cpu.logical_per_package: 8 2025-01-24T02:43:26.6826750Z machdep.cpu.thread_count: 8 2025-01-24T02:43:26.6827090Z machdep.cpu.brand_string: Apple M1 2025-01-24T02:43:26.6827410Z ++ export MACOSX_DEPLOYMENT_TARGET=11.1 2025-01-24T02:43:26.6827720Z ++ MACOSX_DEPLOYMENT_TARGET=11.1 2025-01-24T02:43:26.6828020Z ++ export CXX=clang++ 2025-01-24T02:43:26.6828250Z ++ CXX=clang++ 2025-01-24T02:43:26.6828450Z ++ export CC=clang 2025-01-24T02:43:26.6828680Z ++ CC=clang 2025-01-24T02:43:26.6831850Z ++ dirname .ci/pytorch/macos-build.sh 2025-01-24T02:43:26.6842210Z + source .ci/pytorch/common-build.sh 2025-01-24T02:43:26.6843450Z ++ [[ macos-py3-arm64 != *win-* ]] 2025-01-24T02:43:26.6848660Z ++++ dirname .ci/pytorch/common-build.sh 2025-01-24T02:43:26.6861350Z +++ cd .ci/pytorch 2025-01-24T02:43:26.6861630Z +++ pwd -P 2025-01-24T02:43:26.6863620Z ++ script_dir=/Users/ec2-user/runner/_work/pytorch/pytorch/.ci/pytorch 2025-01-24T02:43:26.6864130Z ++ [[ macos-py3-arm64 == *-pch* ]] 2025-01-24T02:43:26.6864440Z ++ which sccache 2025-01-24T02:43:26.6876490Z ++ sccache --stop-server 2025-01-24T02:43:26.6996840Z ++ true 2025-01-24T02:43:26.6997200Z ++ rm -f /Users/ec2-user/sccache_error.log 2025-01-24T02:43:26.7029620Z ++ trap_add sccache_epilogue EXIT 2025-01-24T02:43:26.7029930Z ++ trap_add_cmd=sccache_epilogue 2025-01-24T02:43:26.7030180Z ++ shift 2025-01-24T02:43:26.7030970Z ++ for trap_add_name in '"$@"' 2025-01-24T02:43:26.7035590Z ++++ trap -p EXIT 2025-01-24T02:43:26.7036810Z +++ eval 'extract_trap_cmd ' 2025-01-24T02:43:26.7037070Z ++++ extract_trap_cmd 2025-01-24T02:43:26.7037360Z ++++ printf '%s\n' '' 2025-01-24T02:43:26.7037620Z +++ printf '%s\n' sccache_epilogue 2025-01-24T02:43:26.7038650Z ++ trap -- ' 2025-01-24T02:43:26.7038970Z sccache_epilogue' EXIT 2025-01-24T02:43:26.7039220Z ++ [[ -n 1 ]] 2025-01-24T02:43:26.7039630Z ++ echo 'Skipping sccache server initialization, setting environment variables' 2025-01-24T02:43:26.7040100Z ++ export SCCACHE_IDLE_TIMEOUT=0 2025-01-24T02:43:26.7040580Z ++ SCCACHE_IDLE_TIMEOUT=0 2025-01-24T02:43:26.7040980Z ++ export SCCACHE_ERROR_LOG=/Users/ec2-user/sccache_error.log 2025-01-24T02:43:26.7041440Z ++ SCCACHE_ERROR_LOG=/Users/ec2-user/sccache_error.log 2025-01-24T02:43:26.7049970Z ++ export RUST_LOG=sccache::server=error 2025-01-24T02:43:26.7050390Z Skipping sccache server initialization, setting environment variables 2025-01-24T02:43:26.7050780Z ++ RUST_LOG=sccache::server=error 2025-01-24T02:43:26.7051080Z ++ sccache --zero-stats 2025-01-24T02:43:26.7305390Z Compile requests 0 2025-01-24T02:43:26.7305710Z Compile requests executed 0 2025-01-24T02:43:26.7306010Z Cache hits 0 2025-01-24T02:43:26.7306290Z Cache misses 0 2025-01-24T02:43:26.7306580Z Cache timeouts 0 2025-01-24T02:43:26.7306850Z Cache read errors 0 2025-01-24T02:43:26.7307150Z Forced recaches 0 2025-01-24T02:43:26.7307420Z Cache write errors 0 2025-01-24T02:43:26.7307730Z Compilation failures 0 2025-01-24T02:43:26.7308010Z Cache errors 0 2025-01-24T02:43:26.7308480Z Non-cacheable compilations 0 2025-01-24T02:43:26.7317360Z Non-cacheable calls 0 2025-01-24T02:43:26.7317680Z Non-compilation calls 0 2025-01-24T02:43:26.7317980Z Unsupported compiler calls 0 2025-01-24T02:43:26.7318300Z Average cache write 0.000 s 2025-01-24T02:43:26.7318590Z Average compiler 0.000 s 2025-01-24T02:43:26.7318880Z Average cache read hit 0.000 s 2025-01-24T02:43:26.7319160Z Failed distributed compilations 0 2025-01-24T02:43:26.7319630Z Cache location Local disk: "/Users/ec2-user/Library/Caches/Mozilla.sccache" 2025-01-24T02:43:26.7320030Z Version (client) 0.4.1 2025-01-24T02:43:26.7320280Z ++ which ccache 2025-01-24T02:43:26.7322500Z + '[' -z true ']' 2025-01-24T02:43:26.7322720Z + which sccache 2025-01-24T02:43:26.7337590Z ++ mktemp -d 2025-01-24T02:43:26.7380890Z + tmp_dir=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd 2025-01-24T02:43:26.7381360Z + trap 'rm -rfv ${tmp_dir}' EXIT 2025-01-24T02:43:26.7381830Z + write_sccache_stub /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang++ 2025-01-24T02:43:26.7382490Z + output=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang++ 2025-01-24T02:43:26.7385020Z ++ basename /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang++ 2025-01-24T02:43:26.7397970Z + binary=clang++ 2025-01-24T02:43:26.7401510Z ++ which clang++ 2025-01-24T02:43:26.7413810Z ++ which clang++ 2025-01-24T02:43:26.7423630Z + 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-01-24T02:43:26.7424730Z + chmod a+x /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang++ 2025-01-24T02:43:26.7462590Z + write_sccache_stub /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang 2025-01-24T02:43:26.7463240Z + output=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang 2025-01-24T02:43:26.7465380Z ++ basename /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang 2025-01-24T02:43:26.7475720Z + binary=clang 2025-01-24T02:43:26.7478620Z ++ which clang 2025-01-24T02:43:26.7491590Z ++ which clang 2025-01-24T02:43:26.7501530Z + 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-01-24T02:43:26.7502650Z + chmod a+x /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang 2025-01-24T02:43:26.7517500Z + export PATH=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd:/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin:/usr/local/bin:/Users/ec2-user/runner/_work/_temp/miniconda/bin:/Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:43:26.7521030Z + PATH=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd:/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin:/usr/local/bin:/Users/ec2-user/runner/_work/_temp/miniconda/bin:/Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:43:26.7522650Z + print_cmake_info 2025-01-24T02:43:26.7522840Z ++ which cmake 2025-01-24T02:43:26.7528910Z + CMAKE_EXEC=/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/cmake 2025-01-24T02:43:26.7529550Z /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/cmake 2025-01-24T02:43:26.7530130Z + echo /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/cmake 2025-01-24T02:43:26.7531830Z ++ dirname /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/cmake 2025-01-24T02:43:26.7541390Z + CONDA_INSTALLATION_DIR=/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin 2025-01-24T02:43:26.7542030Z + ls -la /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/../lib 2025-01-24T02:43:26.7609250Z total 180888 2025-01-24T02:43:26.7609780Z drwxr-xr-x 234 ec2-user staff 7488 Jan 24 02:43 . 2025-01-24T02:43:26.7610270Z drwxr-xr-x 13 ec2-user staff 416 Jan 24 02:43 .. 2025-01-24T02:43:26.7610730Z -rw-r--r-- 3 ec2-user staff 154497 May 3 2024 Tk.icns 2025-01-24T02:43:26.7611180Z -rw-r--r-- 3 ec2-user staff 53684 May 3 2024 Tk.tiff 2025-01-24T02:43:26.7611620Z drwxr-xr-x 3 ec2-user staff 96 Jan 24 02:43 clang 2025-01-24T02:43:26.7612060Z drwxr-xr-x 8 ec2-user staff 256 Jan 24 02:43 cmake 2025-01-24T02:43:26.7612510Z drwxr-xr-x 4 ec2-user staff 128 Jan 24 02:43 engines-1.1 2025-01-24T02:43:26.7612970Z drwxr-xr-x 9 ec2-user staff 288 Jan 24 02:43 itcl4.2.4 2025-01-24T02:43:26.7613410Z drwxr-xr-x 3 ec2-user staff 96 Jan 24 02:43 krb5 2025-01-24T02:43:26.7613900Z -rwxr-xr-x 2 ec2-user staff 619376 Dec 17 08:16 libLerc.4.dylib 2025-01-24T02:43:26.7614460Z lrwxr-xr-x 1 ec2-user staff 15 Jan 24 02:43 libLerc.dylib -> libLerc.4.dylib 2025-01-24T02:43:26.7615090Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libblas.dylib -> libopenblas.dylib 2025-01-24T02:43:26.7615650Z -rwxr-xr-x 3 ec2-user staff 125200 Apr 30 2024 libbz2.1.0.8.dylib 2025-01-24T02:43:26.7616190Z -rw-r--r-- 3 ec2-user staff 202304 Apr 30 2024 libbz2.a 2025-01-24T02:43:26.7616710Z lrwxr-xr-x 1 ec2-user staff 18 Jan 24 02:43 libbz2.dylib -> libbz2.1.0.8.dylib 2025-01-24T02:43:26.7617260Z -rwxr-xr-x 3 ec2-user staff 1010816 Sep 8 2022 libc++.1.0.dylib 2025-01-24T02:43:26.7617810Z lrwxr-xr-x 1 ec2-user staff 16 Jan 24 02:43 libc++.1.dylib -> libc++.1.0.dylib 2025-01-24T02:43:26.7618320Z -rw-r--r-- 3 ec2-user staff 1393600 Sep 8 2022 libc++.a 2025-01-24T02:43:26.7619180Z lrwxr-xr-x 1 ec2-user staff 16 Jan 24 02:43 libc++.dylib -> libc++.1.0.dylib 2025-01-24T02:43:26.7619770Z -rw-r--r-- 3 ec2-user staff 7208 Sep 8 2022 libc++experimental.a 2025-01-24T02:43:26.7620330Z -rwxr-xr-x 3 ec2-user staff 127888 Sep 5 2023 libcares.2.6.1.dylib 2025-01-24T02:43:26.7620970Z lrwxr-xr-x 1 ec2-user staff 20 Jan 24 02:43 libcares.2.dylib -> libcares.2.6.1.dylib 2025-01-24T02:43:26.7621630Z lrwxr-xr-x 1 ec2-user staff 20 Jan 24 02:43 libcares.dylib -> libcares.2.6.1.dylib 2025-01-24T02:43:26.7622250Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libcblas.dylib -> libopenblas.dylib 2025-01-24T02:43:26.7623030Z -rwxr-xr-x 3 ec2-user staff 67456 Apr 30 2024 libcharset.1.dylib 2025-01-24T02:43:26.7623550Z -rw-r--r-- 3 ec2-user staff 2848 Apr 30 2024 libcharset.a 2025-01-24T02:43:26.7624120Z lrwxr-xr-x 1 ec2-user staff 18 Jan 24 02:43 libcharset.dylib -> libcharset.1.dylib 2025-01-24T02:43:26.7624750Z -rwxr-xr-x 2 ec2-user staff 69344 Jun 16 2023 libcom_err.3.0.dylib 2025-01-24T02:43:26.7625360Z lrwxr-xr-x 1 ec2-user staff 20 Jan 24 02:43 libcom_err.3.dylib -> libcom_err.3.0.dylib 2025-01-24T02:43:26.7626080Z lrwxr-xr-x 1 ec2-user staff 20 Jan 24 02:43 libcom_err.dylib -> libcom_err.3.0.dylib 2025-01-24T02:43:26.7626670Z -rwxr-xr-x 1 ec2-user staff 2275056 Jan 24 02:43 libcrypto.1.1.dylib 2025-01-24T02:43:26.7627160Z + export CMAKE_EXEC 2025-01-24T02:43:26.7627780Z + install_name_tool -add_rpath @executable_path/../lib /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/cmake 2025-01-24T02:43:26.7628480Z -rw-r--r--@ 1 ec2-user staff 3968520 Jan 24 02:43 libcrypto.a 2025-01-24T02:43:26.7629060Z lrwxr-xr-x 1 ec2-user staff 19 Jan 24 02:43 libcrypto.dylib -> libcrypto.1.1.dylib 2025-01-24T02:43:26.7629630Z -rwxr-xr-x 1 ec2-user staff 678112 Jan 24 02:43 libcurl.4.dylib 2025-01-24T02:43:26.7630180Z lrwxr-xr-x 1 ec2-user staff 15 Jan 24 02:43 libcurl.dylib -> libcurl.4.dylib 2025-01-24T02:43:26.7630750Z -rwxr-xr-x 2 ec2-user staff 120736 Dec 17 08:15 libdeflate.0.dylib 2025-01-24T02:43:26.7631340Z lrwxr-xr-x 1 ec2-user staff 18 Jan 24 02:43 libdeflate.dylib -> libdeflate.0.dylib 2025-01-24T02:43:26.7631910Z -rwxr-xr-x 3 ec2-user staff 229728 Dec 19 2023 libedit.0.dylib 2025-01-24T02:43:26.7632460Z -rw-r--r-- 3 ec2-user staff 287296 Dec 19 2023 libedit.a 2025-01-24T02:43:26.7633010Z lrwxr-xr-x 1 ec2-user staff 15 Jan 24 02:43 libedit.dylib -> libedit.0.dylib 2025-01-24T02:43:26.7633550Z -rwxr-xr-x 3 ec2-user staff 92016 Aug 14 2021 libev.4.dylib 2025-01-24T02:43:26.7634120Z lrwxr-xr-x 1 ec2-user staff 13 Jan 24 02:43 libev.dylib -> libev.4.dylib 2025-01-24T02:43:26.7634680Z -rwxr-xr-x 2 ec2-user staff 199040 Dec 11 22:54 libexpat.1.10.0.dylib 2025-01-24T02:43:26.7635300Z lrwxr-xr-x 1 ec2-user staff 21 Jan 24 02:43 libexpat.1.dylib -> libexpat.1.10.0.dylib 2025-01-24T02:43:26.7635860Z -rw-r--r-- 2 ec2-user staff 193952 Dec 11 22:54 libexpat.a 2025-01-24T02:43:26.7636430Z lrwxr-xr-x 1 ec2-user staff 21 Jan 24 02:43 libexpat.dylib -> libexpat.1.10.0.dylib 2025-01-24T02:43:26.7637050Z lrwxr-xr-x 1 ec2-user staff 14 Jan 24 02:43 libffi.7.dylib -> libffi.8.dylib 2025-01-24T02:43:26.7637610Z -rwxr-xr-x 3 ec2-user staff 120624 Apr 30 2024 libffi.8.dylib 2025-01-24T02:43:26.7638080Z -rw-r--r-- 3 ec2-user staff 54584 Apr 30 2024 libffi.a 2025-01-24T02:43:26.7638670Z lrwxr-xr-x 1 ec2-user staff 14 Jan 24 02:43 libffi.dylib -> libffi.8.dylib 2025-01-24T02:43:26.7639280Z lrwxr-xr-x 1 ec2-user staff 16 Jan 24 02:43 libform.6.dylib -> libformw.6.dylib 2025-01-24T02:43:26.7639880Z lrwxr-xr-x 1 ec2-user staff 10 Jan 24 02:43 libform.a -> libformw.a 2025-01-24T02:43:26.7640450Z lrwxr-xr-x 1 ec2-user staff 16 Jan 24 02:43 libform.dylib -> libformw.6.dylib 2025-01-24T02:43:26.7641200Z -rwxr-xr-x 3 ec2-user staff 113712 Jan 26 2023 libformw.6.dylib 2025-01-24T02:43:26.7641700Z -rw-r--r-- 3 ec2-user staff 100944 Jan 26 2023 libformw.a 2025-01-24T02:43:26.7642250Z lrwxr-xr-x 1 ec2-user staff 16 Jan 24 02:43 libformw.dylib -> libformw.6.dylib 2025-01-24T02:43:26.7642820Z -rwxr-xr-x 2 ec2-user staff 735296 Oct 26 2022 libfreetype.6.dylib 2025-01-24T02:43:26.7643320Z -rw-r--r-- 2 ec2-user staff 882072 Oct 26 2022 libfreetype.a 2025-01-24T02:43:26.7643890Z lrwxr-xr-x 1 ec2-user staff 19 Jan 24 02:43 libfreetype.dylib -> libfreetype.6.dylib 2025-01-24T02:43:26.7644440Z -rw-r--r-- 2 ec2-user staff 143664 Oct 11 2022 libgcc_s.1.1.dylib 2025-01-24T02:43:26.7645110Z -rwxr-xr-x 2 ec2-user staff 3717456 Oct 11 2022 libgfortran.5.dylib 2025-01-24T02:43:26.7645700Z lrwxr-xr-x 1 ec2-user staff 19 Jan 24 02:43 libgfortran.dylib -> libgfortran.5.dylib 2025-01-24T02:43:26.7646300Z -rwxr-xr-x 2 ec2-user staff 105872 Oct 11 14:18 libgif.7.2.0.dylib 2025-01-24T02:43:26.7646870Z lrwxr-xr-x 1 ec2-user staff 18 Jan 24 02:43 libgif.7.dylib -> libgif.7.2.0.dylib 2025-01-24T02:43:26.7647480Z lrwxr-xr-x 1 ec2-user staff 18 Jan 24 02:43 libgif.dylib -> libgif.7.2.0.dylib 2025-01-24T02:43:26.7648070Z lrwxr-xr-x 1 ec2-user staff 12 Jan 24 02:43 libgomp.1.dylib -> libomp.dylib 2025-01-24T02:43:26.7648650Z lrwxr-xr-x 1 ec2-user staff 12 Jan 24 02:43 libgomp.dylib -> libomp.dylib 2025-01-24T02:43:26.7649210Z -rwxr-xr-x 1 ec2-user staff 333152 Jan 24 02:43 libgssapi_krb5.2.2.dylib 2025-01-24T02:43:26.7649860Z lrwxr-xr-x 1 ec2-user staff 24 Jan 24 02:43 libgssapi_krb5.2.dylib -> libgssapi_krb5.2.2.dylib 2025-01-24T02:43:26.7650540Z lrwxr-xr-x 1 ec2-user staff 24 Jan 24 02:43 libgssapi_krb5.dylib -> libgssapi_krb5.2.2.dylib 2025-01-24T02:43:26.7651190Z -rwxr-xr-x 2 ec2-user staff 153488 Jun 16 2023 libgssrpc.4.2.dylib 2025-01-24T02:43:26.7651770Z lrwxr-xr-x 1 ec2-user staff 19 Jan 24 02:43 libgssrpc.4.dylib -> libgssrpc.4.2.dylib 2025-01-24T02:43:26.7652410Z lrwxr-xr-x 1 ec2-user staff 19 Jan 24 02:43 libgssrpc.dylib -> libgssrpc.4.2.dylib 2025-01-24T02:43:26.7653010Z -rwxr-xr-x 3 ec2-user staff 91184 Oct 24 2022 libhistory.8.2.dylib 2025-01-24T02:43:26.7653630Z lrwxr-xr-x 1 ec2-user staff 20 Jan 24 02:43 libhistory.8.dylib -> libhistory.8.2.dylib 2025-01-24T02:43:26.7654190Z -rw-r--r-- 3 ec2-user staff 48392 Oct 24 2022 libhistory.a 2025-01-24T02:43:26.7654760Z lrwxr-xr-x 1 ec2-user staff 20 Jan 24 02:43 libhistory.dylib -> libhistory.8.2.dylib 2025-01-24T02:43:26.7655330Z -rwxr-xr-x 3 ec2-user staff 1015200 Apr 30 2024 libiconv.2.dylib 2025-01-24T02:43:26.7655800Z -rw-r--r-- 3 ec2-user staff 980096 Apr 30 2024 libiconv.a 2025-01-24T02:43:26.7656330Z lrwxr-xr-x 1 ec2-user staff 16 Jan 24 02:43 libiconv.dylib -> libiconv.2.dylib 2025-01-24T02:43:26.7656900Z lrwxr-xr-x 1 ec2-user staff 12 Jan 24 02:43 libiomp5.dylib -> libomp.dylib 2025-01-24T02:43:26.7657490Z -rwxr-xr-x 2 ec2-user staff 284352 Aug 5 15:44 libjpeg.9.dylib 2025-01-24T02:43:26.7657950Z -rw-r--r-- 2 ec2-user staff 303552 Aug 5 15:44 libjpeg.a 2025-01-24T02:43:26.7658480Z lrwxr-xr-x 1 ec2-user staff 15 Jan 24 02:43 libjpeg.dylib -> libjpeg.9.dylib 2025-01-24T02:43:26.7659030Z -rwxr-xr-x 2 ec2-user staff 113520 Jun 16 2023 libk5crypto.3.1.dylib 2025-01-24T02:43:26.7659660Z lrwxr-xr-x 1 ec2-user staff 21 Jan 24 02:43 libk5crypto.3.dylib -> libk5crypto.3.1.dylib 2025-01-24T02:43:26.7660320Z lrwxr-xr-x 1 ec2-user staff 21 Jan 24 02:43 libk5crypto.dylib -> libk5crypto.3.1.dylib 2025-01-24T02:43:26.7661030Z lrwxr-xr-x 1 ec2-user staff 27 Jan 24 02:43 libkadm5clnt.dylib -> libkadm5clnt_mit.12.0.dylib 2025-01-24T02:43:26.7661680Z -rwxr-xr-x 1 ec2-user staff 134880 Jan 24 02:43 libkadm5clnt_mit.12.0.dylib 2025-01-24T02:43:26.7662570Z lrwxr-xr-x 1 ec2-user staff 27 Jan 24 02:43 libkadm5clnt_mit.12.dylib -> libkadm5clnt_mit.12.0.dylib 2025-01-24T02:43:26.7663310Z lrwxr-xr-x 1 ec2-user staff 27 Jan 24 02:43 libkadm5clnt_mit.dylib -> libkadm5clnt_mit.12.0.dylib 2025-01-24T02:43:26.7664020Z lrwxr-xr-x 1 ec2-user staff 26 Jan 24 02:43 libkadm5srv.dylib -> libkadm5srv_mit.12.0.dylib 2025-01-24T02:43:26.7664690Z -rwxr-xr-x 1 ec2-user staff 154944 Jan 24 02:43 libkadm5srv_mit.12.0.dylib 2025-01-24T02:43:26.7665390Z lrwxr-xr-x 1 ec2-user staff 26 Jan 24 02:43 libkadm5srv_mit.12.dylib -> libkadm5srv_mit.12.0.dylib 2025-01-24T02:43:26.7673940Z lrwxr-xr-x 1 ec2-user staff 26 Jan 24 02:43 libkadm5srv_mit.dylib -> libkadm5srv_mit.12.0.dylib 2025-01-24T02:43:26.7674800Z -rwxr-xr-x 1 ec2-user staff 132336 Jan 24 02:43 libkdb5.10.0.dylib 2025-01-24T02:43:26.7675400Z lrwxr-xr-x 1 ec2-user staff 18 Jan 24 02:43 libkdb5.10.dylib -> libkdb5.10.0.dylib 2025-01-24T02:43:26.7676030Z lrwxr-xr-x 1 ec2-user staff 18 Jan 24 02:43 libkdb5.dylib -> libkdb5.10.0.dylib 2025-01-24T02:43:26.7676590Z -rwxr-xr-x 2 ec2-user staff 71216 Jun 16 2023 libkrad.0.0.dylib 2025-01-24T02:43:26.7677150Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libkrad.0.dylib -> libkrad.0.0.dylib 2025-01-24T02:43:26.7677730Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libkrad.dylib -> libkrad.0.0.dylib 2025-01-24T02:43:26.7678270Z -rwxr-xr-x 1 ec2-user staff 826304 Jan 24 02:43 libkrb5.3.3.dylib 2025-01-24T02:43:26.7678800Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libkrb5.3.dylib -> libkrb5.3.3.dylib 2025-01-24T02:43:26.7679380Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libkrb5.dylib -> libkrb5.3.3.dylib 2025-01-24T02:43:26.7679930Z -rwxr-xr-x 2 ec2-user staff 93744 Jun 16 2023 libkrb5support.1.1.dylib 2025-01-24T02:43:26.7680550Z lrwxr-xr-x 1 ec2-user staff 24 Jan 24 02:43 libkrb5support.1.dylib -> libkrb5support.1.1.dylib 2025-01-24T02:43:26.7681240Z lrwxr-xr-x 1 ec2-user staff 24 Jan 24 02:43 libkrb5support.dylib -> libkrb5support.1.1.dylib 2025-01-24T02:43:26.7681870Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 liblapack.dylib -> libopenblas.dylib 2025-01-24T02:43:26.7682390Z -rwxr-xr-x 2 ec2-user staff 416320 Dec 17 09:42 liblcms2.2.dylib 2025-01-24T02:43:26.7682920Z lrwxr-xr-x 1 ec2-user staff 16 Jan 24 02:43 liblcms2.dylib -> liblcms2.2.dylib 2025-01-24T02:43:26.7683540Z -rwxr-xr-x 3 ec2-user staff 225328 Apr 30 2024 liblz4.1.9.4.dylib 2025-01-24T02:43:26.7684100Z lrwxr-xr-x 1 ec2-user staff 18 Jan 24 02:43 liblz4.1.dylib -> liblz4.1.9.4.dylib 2025-01-24T02:43:26.7684690Z lrwxr-xr-x 1 ec2-user staff 18 Jan 24 02:43 liblz4.dylib -> liblz4.1.9.4.dylib 2025-01-24T02:43:26.7685210Z -rwxr-xr-x 3 ec2-user staff 217520 Apr 30 2024 liblzma.5.dylib 2025-01-24T02:43:26.7685660Z -rw-r--r-- 3 ec2-user staff 264344 Apr 30 2024 liblzma.a 2025-01-24T02:43:26.7686170Z lrwxr-xr-x 1 ec2-user staff 15 Jan 24 02:43 liblzma.dylib -> liblzma.5.dylib 2025-01-24T02:43:26.7686740Z lrwxr-xr-x 1 ec2-user staff 16 Jan 24 02:43 libmenu.6.dylib -> libmenuw.6.dylib 2025-01-24T02:43:26.7687290Z lrwxr-xr-x 1 ec2-user staff 10 Jan 24 02:43 libmenu.a -> libmenuw.a 2025-01-24T02:43:26.7687830Z lrwxr-xr-x 1 ec2-user staff 16 Jan 24 02:43 libmenu.dylib -> libmenuw.6.dylib 2025-01-24T02:43:26.7688350Z -rwxr-xr-x 3 ec2-user staff 73008 Jan 26 2023 libmenuw.6.dylib 2025-01-24T02:43:26.7688810Z -rw-r--r-- 3 ec2-user staff 43824 Jan 26 2023 libmenuw.a 2025-01-24T02:43:26.7689320Z lrwxr-xr-x 1 ec2-user staff 16 Jan 24 02:43 libmenuw.dylib -> libmenuw.6.dylib 2025-01-24T02:43:26.7689900Z lrwxr-xr-x 1 ec2-user staff 15 Jan 24 02:43 libncurses++.a -> libncurses++w.a 2025-01-24T02:43:26.7690420Z -rw-r--r-- 3 ec2-user staff 108432 Jan 26 2023 libncurses++w.a 2025-01-24T02:43:26.7691240Z lrwxr-xr-x 1 ec2-user staff 19 Jan 24 02:43 libncurses.6.dylib -> libncursesw.6.dylib 2025-01-24T02:43:26.7691860Z lrwxr-xr-x 1 ec2-user staff 13 Jan 24 02:43 libncurses.a -> libncursesw.a 2025-01-24T02:43:26.7692460Z lrwxr-xr-x 1 ec2-user staff 19 Jan 24 02:43 libncurses.dylib -> libncursesw.6.dylib 2025-01-24T02:43:26.7693040Z -rwxr-xr-x 1 ec2-user staff 252048 Jan 24 02:43 libncursesw.6.dylib 2025-01-24T02:43:26.7693540Z -rw-r--r-- 3 ec2-user staff 302192 Jan 26 2023 libncursesw.a 2025-01-24T02:43:26.7694100Z lrwxr-xr-x 1 ec2-user staff 19 Jan 24 02:43 libncursesw.dylib -> libncursesw.6.dylib 2025-01-24T02:43:26.7694760Z -rwxr-xr-x 2 ec2-user staff 211216 Jun 16 2023 libnghttp2.14.dylib 2025-01-24T02:43:26.7695320Z lrwxr-xr-x 1 ec2-user staff 19 Jan 24 02:43 libnghttp2.dylib -> libnghttp2.14.dylib 2025-01-24T02:43:26.7695850Z -rwxr-xr-x 2 ec2-user staff 763440 Sep 8 2022 libomp.dylib 2025-01-24T02:43:26.7696440Z lrwxr-xr-x 1 ec2-user staff 26 Jan 24 02:43 libopenblas.0.dylib -> libopenblasp-r0.3.21.dylib 2025-01-24T02:43:26.7697020Z -rwxr-xr-x 2 ec2-user staff 23144528 Oct 4 2022 libopenblas.dylib 2025-01-24T02:43:26.7697530Z -rwxr-xr-x 2 ec2-user staff 23144560 Oct 4 2022 libopenblasp-r0.3.21.dylib 2025-01-24T02:43:26.7698050Z -rwxr-xr-x 2 ec2-user staff 392240 Aug 5 15:44 libopenjp2.2.5.2.dylib 2025-01-24T02:43:26.7698620Z lrwxr-xr-x 1 ec2-user staff 22 Jan 24 02:43 libopenjp2.7.dylib -> libopenjp2.2.5.2.dylib 2025-01-24T02:43:26.7699140Z -rw-r--r-- 2 ec2-user staff 431472 Aug 5 15:44 libopenjp2.a 2025-01-24T02:43:26.7699670Z lrwxr-xr-x 1 ec2-user staff 22 Jan 24 02:43 libopenjp2.dylib -> libopenjp2.2.5.2.dylib 2025-01-24T02:43:26.7700310Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libpanel.6.dylib -> libpanelw.6.dylib 2025-01-24T02:43:26.7700890Z lrwxr-xr-x 1 ec2-user staff 11 Jan 24 02:43 libpanel.a -> libpanelw.a 2025-01-24T02:43:26.7701450Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libpanel.dylib -> libpanelw.6.dylib 2025-01-24T02:43:26.7701980Z -rwxr-xr-x 3 ec2-user staff 68352 Jan 26 2023 libpanelw.6.dylib 2025-01-24T02:43:26.7702430Z -rw-r--r-- 3 ec2-user staff 15856 Jan 26 2023 libpanelw.a 2025-01-24T02:43:26.7702930Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libpanelw.dylib -> libpanelw.6.dylib 2025-01-24T02:43:26.7703460Z lrwxr-xr-x 1 ec2-user staff 10 Jan 24 02:43 libpng.a -> libpng16.a 2025-01-24T02:43:26.7703980Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libpng.dylib -> libpng16.16.dylib 2025-01-24T02:43:26.7704480Z -rwxr-xr-x 2 ec2-user staff 258784 Mar 3 2023 libpng16.16.dylib 2025-01-24T02:43:26.7704920Z -rw-r--r-- 2 ec2-user staff 294888 Mar 3 2023 libpng16.a 2025-01-24T02:43:26.7705420Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libpng16.dylib -> libpng16.16.dylib 2025-01-24T02:43:26.7705930Z -rwxr-xr-x 1 ec2-user staff 4022992 Jan 24 02:43 libpython3.9.dylib 2025-01-24T02:43:26.7706410Z -rwxr-xr-x 2 ec2-user staff 371952 Oct 11 2022 libquadmath.0.dylib 2025-01-24T02:43:26.7706950Z lrwxr-xr-x 1 ec2-user staff 19 Jan 24 02:43 libquadmath.dylib -> libquadmath.0.dylib 2025-01-24T02:43:26.7707540Z -rwxr-xr-x 3 ec2-user staff 327920 Oct 24 2022 libreadline.8.2.dylib 2025-01-24T02:43:26.7708130Z lrwxr-xr-x 1 ec2-user staff 21 Jan 24 02:43 libreadline.8.dylib -> libreadline.8.2.dylib 2025-01-24T02:43:26.7708680Z -rw-r--r-- 3 ec2-user staff 509560 Oct 24 2022 libreadline.a 2025-01-24T02:43:26.7709220Z lrwxr-xr-x 1 ec2-user staff 21 Jan 24 02:43 libreadline.dylib -> libreadline.8.2.dylib 2025-01-24T02:43:26.7709780Z -rw-r--r-- 2 ec2-user staff 247856 Aug 20 2021 librhash.0.dylib 2025-01-24T02:43:26.7710270Z -rw-r--r-- 2 ec2-user staff 235000 Aug 20 2021 librhash.a 2025-01-24T02:43:26.7710770Z lrwxr-xr-x 1 ec2-user staff 16 Jan 24 02:43 librhash.dylib -> librhash.0.dylib 2025-01-24T02:43:26.7711420Z -rwxr-xr-x 2 ec2-user staff 68560 Oct 17 10:14 libsharpyuv.0.0.1.dylib 2025-01-24T02:43:26.7712010Z lrwxr-xr-x 1 ec2-user staff 23 Jan 24 02:43 libsharpyuv.0.dylib -> libsharpyuv.0.0.1.dylib 2025-01-24T02:43:26.7712640Z lrwxr-xr-x 1 ec2-user staff 23 Jan 24 02:43 libsharpyuv.dylib -> libsharpyuv.0.0.1.dylib 2025-01-24T02:43:26.7713190Z -rwxr-xr-x 3 ec2-user staff 1594192 Apr 30 2024 libsqlite3.0.dylib 2025-01-24T02:43:26.7713720Z lrwxr-xr-x 1 ec2-user staff 18 Jan 24 02:43 libsqlite3.dylib -> libsqlite3.0.dylib 2025-01-24T02:43:26.7714250Z -rwxr-xr-x 2 ec2-user staff 284496 Jun 16 2023 libssh2.1.0.1.dylib 2025-01-24T02:43:26.7714850Z lrwxr-xr-x 1 ec2-user staff 19 Jan 24 02:43 libssh2.1.dylib -> libssh2.1.0.1.dylib 2025-01-24T02:43:26.7715380Z -rw-r--r-- 2 ec2-user staff 342368 Jun 16 2023 libssh2.a 2025-01-24T02:43:26.7715900Z lrwxr-xr-x 1 ec2-user staff 19 Jan 24 02:43 libssh2.dylib -> libssh2.1.0.1.dylib 2025-01-24T02:43:26.7716440Z -rwxr-xr-x 2 ec2-user staff 541728 Sep 11 2023 libssl.1.1.dylib 2025-01-24T02:43:26.7716890Z -rw-r--r-- 2 ec2-user staff 773744 Sep 11 2023 libssl.a 2025-01-24T02:43:26.7717380Z lrwxr-xr-x 1 ec2-user staff 16 Jan 24 02:43 libssl.dylib -> libssl.1.1.dylib 2025-01-24T02:43:26.7717890Z -rwxr-xr-x 1 ec2-user staff 1628848 Jan 24 02:43 libtcl8.6.dylib 2025-01-24T02:43:26.7718360Z -rwxr-xr-x 3 ec2-user staff 5856 May 3 2024 libtclstub8.6.a 2025-01-24T02:43:26.7718890Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libtiff.5.dylib -> ./libtiff.6.dylib 2025-01-24T02:43:26.7719420Z -rwxr-xr-x 2 ec2-user staff 545440 Dec 17 08:56 libtiff.6.dylib 2025-01-24T02:43:26.7719870Z -rw-r--r-- 2 ec2-user staff 733272 Dec 17 08:56 libtiff.a 2025-01-24T02:43:26.7720370Z lrwxr-xr-x 1 ec2-user staff 15 Jan 24 02:43 libtiff.dylib -> libtiff.6.dylib 2025-01-24T02:43:26.7720890Z -rwxr-xr-x 2 ec2-user staff 70992 Dec 17 08:56 libtiffxx.6.dylib 2025-01-24T02:43:26.7725680Z -rw-r--r-- 2 ec2-user staff 10840 Dec 17 08:56 libtiffxx.a 2025-01-24T02:43:26.7726270Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libtiffxx.dylib -> libtiffxx.6.dylib 2025-01-24T02:43:26.7726880Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libtinfo.6.dylib -> libtinfow.6.dylib 2025-01-24T02:43:26.7727440Z lrwxr-xr-x 1 ec2-user staff 11 Jan 24 02:43 libtinfo.a -> libtinfow.a 2025-01-24T02:43:26.7727990Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libtinfo.dylib -> libtinfow.6.dylib 2025-01-24T02:43:26.7728520Z -rwxr-xr-x 1 ec2-user staff 255072 Jan 24 02:43 libtinfow.6.dylib 2025-01-24T02:43:26.7728990Z -rw-r--r--@ 1 ec2-user staff 345456 Jan 24 02:43 libtinfow.a 2025-01-24T02:43:26.7729500Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libtinfow.dylib -> libtinfow.6.dylib 2025-01-24T02:43:26.7730020Z -rwxr-xr-x 3 ec2-user staff 1590336 May 3 2024 libtk8.6.dylib 2025-01-24T02:43:26.7730490Z -rwxr-xr-x 3 ec2-user staff 4728 May 3 2024 libtkstub8.6.a 2025-01-24T02:43:26.7730950Z -rwxr-xr-x 2 ec2-user staff 266832 Aug 19 2021 libuv.1.dylib 2025-01-24T02:43:26.7731390Z -rw-r--r-- 2 ec2-user staff 1047680 Aug 19 2021 libuv.a 2025-01-24T02:43:26.7731870Z lrwxr-xr-x 1 ec2-user staff 13 Jan 24 02:43 libuv.dylib -> libuv.1.dylib 2025-01-24T02:43:26.7732380Z -rwxr-xr-x 2 ec2-user staff 88752 Jun 16 2023 libverto.0.0.dylib 2025-01-24T02:43:26.7732920Z lrwxr-xr-x 1 ec2-user staff 18 Jan 24 02:43 libverto.0.dylib -> libverto.0.0.dylib 2025-01-24T02:43:26.7733510Z lrwxr-xr-x 1 ec2-user staff 18 Jan 24 02:43 libverto.dylib -> libverto.0.0.dylib 2025-01-24T02:43:26.7734040Z -rwxr-xr-x 2 ec2-user staff 497488 Oct 17 10:14 libwebp.7.1.8.dylib 2025-01-24T02:43:26.7734590Z lrwxr-xr-x 1 ec2-user staff 19 Jan 24 02:43 libwebp.7.dylib -> libwebp.7.1.8.dylib 2025-01-24T02:43:26.7735370Z lrwxr-xr-x 1 ec2-user staff 19 Jan 24 02:43 libwebp.dylib -> libwebp.7.1.8.dylib 2025-01-24T02:43:26.7735940Z -rwxr-xr-x 2 ec2-user staff 267456 Oct 17 10:13 libwebpdecoder.3.1.8.dylib 2025-01-24T02:43:26.7736570Z lrwxr-xr-x 1 ec2-user staff 26 Jan 24 02:43 libwebpdecoder.3.dylib -> libwebpdecoder.3.1.8.dylib 2025-01-24T02:43:26.7737270Z lrwxr-xr-x 1 ec2-user staff 26 Jan 24 02:43 libwebpdecoder.dylib -> libwebpdecoder.3.1.8.dylib 2025-01-24T02:43:26.7737870Z -rwxr-xr-x 2 ec2-user staff 69216 Oct 17 10:13 libwebpdemux.2.0.14.dylib 2025-01-24T02:43:26.7738480Z lrwxr-xr-x 1 ec2-user staff 25 Jan 24 02:43 libwebpdemux.2.dylib -> libwebpdemux.2.0.14.dylib 2025-01-24T02:43:26.7739410Z lrwxr-xr-x 1 ec2-user staff 25 Jan 24 02:43 libwebpdemux.dylib -> libwebpdemux.2.0.14.dylib 2025-01-24T02:43:26.7740000Z -rwxr-xr-x 2 ec2-user staff 88896 Oct 17 10:13 libwebpmux.3.0.13.dylib 2025-01-24T02:43:26.7740590Z lrwxr-xr-x 1 ec2-user staff 23 Jan 24 02:43 libwebpmux.3.dylib -> libwebpmux.3.0.13.dylib 2025-01-24T02:43:26.7741230Z lrwxr-xr-x 1 ec2-user staff 23 Jan 24 02:43 libwebpmux.dylib -> libwebpmux.3.0.13.dylib 2025-01-24T02:43:26.7741780Z -rwxr-xr-x 2 ec2-user staff 156864 Aug 16 2021 libyaml-0.2.dylib 2025-01-24T02:43:26.7742240Z -rw-r--r-- 2 ec2-user staff 142944 Aug 16 2021 libyaml.a 2025-01-24T02:43:26.7742750Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libyaml.dylib -> libyaml-0.2.dylib 2025-01-24T02:43:26.7743280Z -rwxr-xr-x 3 ec2-user staff 140576 Apr 30 2024 libz.1.2.13.dylib 2025-01-24T02:43:26.7743820Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libz.1.dylib -> libz.1.2.13.dylib 2025-01-24T02:43:26.7744350Z -rw-r--r-- 3 ec2-user staff 105176 Apr 30 2024 libz.a 2025-01-24T02:43:26.7744850Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 libz.dylib -> libz.1.2.13.dylib 2025-01-24T02:43:26.7745380Z -rwxr-xr-x 2 ec2-user staff 850496 Oct 9 15:16 libzstd.1.5.6.dylib 2025-01-24T02:43:26.7745930Z lrwxr-xr-x 1 ec2-user staff 19 Jan 24 02:43 libzstd.1.dylib -> libzstd.1.5.6.dylib 2025-01-24T02:43:26.7746430Z -rw-r--r-- 2 ec2-user staff 935560 Oct 9 15:16 libzstd.a 2025-01-24T02:43:26.7746940Z lrwxr-xr-x 1 ec2-user staff 19 Jan 24 02:43 libzstd.dylib -> libzstd.1.5.6.dylib 2025-01-24T02:43:26.7747460Z drwxr-xr-x 55 ec2-user staff 1760 Jan 24 02:43 pkgconfig 2025-01-24T02:43:26.7747900Z drwxr-xr-x 212 ec2-user staff 6784 Jan 24 02:43 python3.9 2025-01-24T02:43:26.7748350Z drwxr-xr-x 4 ec2-user staff 128 Jan 24 02:43 sqlite3.44.2 2025-01-24T02:43:26.7748790Z drwxr-xr-x 5 ec2-user staff 160 Jan 24 02:43 tcl8 2025-01-24T02:43:26.7749210Z drwxr-xr-x 17 ec2-user staff 544 Jan 24 02:43 tcl8.6 2025-01-24T02:43:26.7749640Z -rw-r--r-- 1 ec2-user staff 9617 Jan 24 02:43 tclConfig.sh 2025-01-24T02:43:26.7750090Z -rw-r--r-- 3 ec2-user staff 773 May 3 2024 tclooConfig.sh 2025-01-24T02:43:26.7750540Z drwxr-xr-x 7 ec2-user staff 224 Jan 24 02:43 tdbc1.1.7 2025-01-24T02:43:26.7750990Z drwxr-xr-x 5 ec2-user staff 160 Jan 24 02:43 tdbcmysql1.1.7 2025-01-24T02:43:26.7751440Z drwxr-xr-x 5 ec2-user staff 160 Jan 24 02:43 tdbcodbc1.1.7 2025-01-24T02:43:26.7751900Z drwxr-xr-x 5 ec2-user staff 160 Jan 24 02:43 tdbcpostgres1.1.7 2025-01-24T02:43:26.7752400Z lrwxr-xr-x 1 ec2-user staff 17 Jan 24 02:43 terminfo -> ../share/terminfo 2025-01-24T02:43:26.7752880Z drwxr-xr-x 5 ec2-user staff 160 Jan 24 02:43 thread2.8.9 2025-01-24T02:43:26.7753300Z drwxr-xr-x 40 ec2-user staff 1280 Jan 24 02:43 tk8.6 2025-01-24T02:43:26.7753710Z -rw-r--r-- 1 ec2-user staff 4935 Jan 24 02:43 tkConfig.sh 2025-01-24T02:43:26.7754750Z /Library/Developer/CommandLineTools/usr/bin/install_name_tool: warning: changes being made to the file will invalidate the code signature in: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/cmake 2025-01-24T02:43:26.7879640Z + codesign -f -s - /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/cmake 2025-01-24T02:43:26.7949940Z /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/cmake: replacing existing signature 2025-01-24T02:43:26.8952280Z + [[ macos-py3-arm64 = *arm64* ]] 2025-01-24T02:43:26.8955550Z ++ uname -m 2025-01-24T02:43:26.8966480Z + [[ arm64 == \a\r\m\6\4 ]] 2025-01-24T02:43:26.8966720Z + compile_arm64 2025-01-24T02:43:26.8966990Z + USE_DISTRIBUTED=0 2025-01-24T02:43:26.8967230Z + USE_OPENMP=1 2025-01-24T02:43:26.8967430Z + MACOSX_DEPLOYMENT_TARGET=11.0 2025-01-24T02:43:26.8967670Z + WERROR=1 2025-01-24T02:43:26.8967850Z + BUILD_TEST=OFF 2025-01-24T02:43:26.8968460Z + USE_PYTORCH_METAL=1 2025-01-24T02:43:26.8968680Z + python setup.py bdist_wheel 2025-01-24T02:43:29.3200590Z -- The CXX compiler identification is AppleClang 15.0.0.15000309 2025-01-24T02:43:29.4397420Z -- The C compiler identification is AppleClang 15.0.0.15000309 2025-01-24T02:43:29.4476440Z -- Detecting CXX compiler ABI info 2025-01-24T02:43:32.8681450Z -- Detecting CXX compiler ABI info - done 2025-01-24T02:43:32.8710460Z -- Check for working CXX compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang++ - skipped 2025-01-24T02:43:32.8712350Z -- Detecting CXX compile features 2025-01-24T02:43:32.8715610Z -- Detecting CXX compile features - done 2025-01-24T02:43:32.8763430Z -- Detecting C compiler ABI info 2025-01-24T02:43:32.9949940Z -- Detecting C compiler ABI info - done 2025-01-24T02:43:32.9977920Z -- Check for working C compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang - skipped 2025-01-24T02:43:32.9979880Z -- Detecting C compile features 2025-01-24T02:43:32.9982790Z -- Detecting C compile features - done 2025-01-24T02:43:33.0015200Z -- Not forcing any particular BLAS to be found 2025-01-24T02:43:33.0256810Z -- CLANG_VERSION_STRING: 15.0 2025-01-24T02:43:33.0414540Z -- sdk version: 14.4, mps supported: ON 2025-01-24T02:43:33.0589900Z -- MPSGraph framework found 2025-01-24T02:43:33.0632050Z -- Could not find ccache. Consider installing ccache to speed up compilation. 2025-01-24T02:43:33.0655490Z -- Performing Test C_HAS_AVX_1 2025-01-24T02:43:33.2889270Z -- Performing Test C_HAS_AVX_1 - Failed 2025-01-24T02:43:33.2891490Z -- Performing Test C_HAS_AVX_2 2025-01-24T02:43:33.3810160Z -- Performing Test C_HAS_AVX_2 - Failed 2025-01-24T02:43:33.3811800Z -- Performing Test C_HAS_AVX_3 2025-01-24T02:43:33.4469210Z -- Performing Test C_HAS_AVX_3 - Failed 2025-01-24T02:43:33.4471360Z -- Performing Test C_HAS_AVX2_1 2025-01-24T02:43:33.5392320Z -- Performing Test C_HAS_AVX2_1 - Failed 2025-01-24T02:43:33.5394350Z -- Performing Test C_HAS_AVX2_2 2025-01-24T02:43:33.6312900Z -- Performing Test C_HAS_AVX2_2 - Failed 2025-01-24T02:43:33.6314930Z -- Performing Test C_HAS_AVX2_3 2025-01-24T02:43:33.6959610Z -- Performing Test C_HAS_AVX2_3 - Failed 2025-01-24T02:43:33.6961920Z -- Performing Test C_HAS_AVX512_1 2025-01-24T02:43:33.7871250Z -- Performing Test C_HAS_AVX512_1 - Failed 2025-01-24T02:43:33.7873210Z -- Performing Test C_HAS_AVX512_2 2025-01-24T02:43:33.8786240Z -- Performing Test C_HAS_AVX512_2 - Failed 2025-01-24T02:43:33.8788290Z -- Performing Test C_HAS_AVX512_3 2025-01-24T02:43:33.9440920Z -- Performing Test C_HAS_AVX512_3 - Failed 2025-01-24T02:43:33.9443300Z -- Performing Test CXX_HAS_AVX_1 2025-01-24T02:43:34.0356960Z -- Performing Test CXX_HAS_AVX_1 - Failed 2025-01-24T02:43:34.0358770Z -- Performing Test CXX_HAS_AVX_2 2025-01-24T02:43:34.1297510Z -- Performing Test CXX_HAS_AVX_2 - Failed 2025-01-24T02:43:34.1299210Z -- Performing Test CXX_HAS_AVX_3 2025-01-24T02:43:34.1953390Z -- Performing Test CXX_HAS_AVX_3 - Failed 2025-01-24T02:43:34.1955400Z -- Performing Test CXX_HAS_AVX2_1 2025-01-24T02:43:34.2894040Z -- Performing Test CXX_HAS_AVX2_1 - Failed 2025-01-24T02:43:34.2896340Z -- Performing Test CXX_HAS_AVX2_2 2025-01-24T02:43:34.4109990Z -- Performing Test CXX_HAS_AVX2_2 - Failed 2025-01-24T02:43:34.4111980Z -- Performing Test CXX_HAS_AVX2_3 2025-01-24T02:43:34.4754300Z -- Performing Test CXX_HAS_AVX2_3 - Failed 2025-01-24T02:43:34.4756070Z -- Performing Test CXX_HAS_AVX512_1 2025-01-24T02:43:34.5672630Z -- Performing Test CXX_HAS_AVX512_1 - Failed 2025-01-24T02:43:34.5674520Z -- Performing Test CXX_HAS_AVX512_2 2025-01-24T02:43:34.6598100Z -- Performing Test CXX_HAS_AVX512_2 - Failed 2025-01-24T02:43:34.6599910Z -- Performing Test CXX_HAS_AVX512_3 2025-01-24T02:43:34.7246290Z -- Performing Test CXX_HAS_AVX512_3 - Failed 2025-01-24T02:43:34.7249090Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS 2025-01-24T02:43:34.8267850Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS - Failed 2025-01-24T02:43:34.8272380Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY 2025-01-24T02:43:34.9419440Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Success 2025-01-24T02:43:34.9423920Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY 2025-01-24T02:43:35.0563450Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Success 2025-01-24T02:43:35.0567720Z -- Performing Test COMPILER_SUPPORTS_RDYNAMIC 2025-01-24T02:43:35.1713190Z -- Performing Test COMPILER_SUPPORTS_RDYNAMIC - Success 2025-01-24T02:43:35.1732580Z -- No OMAP3 processor on this machine. 2025-01-24T02:43:35.1732910Z -- No OMAP4 processor on this machine. 2025-01-24T02:43:35.1733340Z -- Compiler does not support SVE extension. Will not build perfkernels. 2025-01-24T02:43:35.1795670Z CUDA_TOOLKIT_ROOT_DIR not found or specified 2025-01-24T02:43:36.5672880Z -- Could NOT find CUDA (missing: CUDA_TOOLKIT_ROOT_DIR CUDA_NVCC_EXECUTABLE CUDA_INCLUDE_DIRS CUDA_CUDART_LIBRARY) 2025-01-24T02:43:36.5682990Z CMake Warning at cmake/public/cuda.cmake:31 (message): 2025-01-24T02:43:36.5683460Z PyTorch: CUDA cannot be found. Depending on whether you are building 2025-01-24T02:43:36.5684020Z PyTorch or a PyTorch dependent library, the next warning / error will give 2025-01-24T02:43:36.5684410Z you more info. 2025-01-24T02:43:36.5684620Z Call Stack (most recent call first): 2025-01-24T02:43:36.5684900Z cmake/Dependencies.cmake:44 (include) 2025-01-24T02:43:36.5685170Z CMakeLists.txt:865 (include) 2025-01-24T02:43:36.5685340Z 2025-01-24T02:43:36.5685340Z 2025-01-24T02:43:36.5685490Z CMake Warning at cmake/Dependencies.cmake:76 (message): 2025-01-24T02:43:36.5691830Z Not compiling with CUDA. Suppress this warning with -DUSE_CUDA=OFF. 2025-01-24T02:43:36.5692220Z Call Stack (most recent call first): 2025-01-24T02:43:36.5692480Z CMakeLists.txt:865 (include) 2025-01-24T02:43:36.5692640Z 2025-01-24T02:43:36.5692650Z 2025-01-24T02:43:36.5709540Z CMake Warning at cmake/Dependencies.cmake:95 (message): 2025-01-24T02:43:36.5710020Z Not compiling with XPU. Could NOT find SYCL.Suppress this warning with 2025-01-24T02:43:36.5710460Z -DUSE_XPU=OFF. 2025-01-24T02:43:36.5710660Z Call Stack (most recent call first): 2025-01-24T02:43:36.5710930Z CMakeLists.txt:865 (include) 2025-01-24T02:43:36.5711090Z 2025-01-24T02:43:36.5711090Z 2025-01-24T02:43:36.5730600Z -- Building using own protobuf under third_party per request. 2025-01-24T02:43:36.5730980Z -- Use custom protobuf build. 2025-01-24T02:43:36.5740310Z -- 2025-01-24T02:43:36.5740510Z -- 3.13.0.0 2025-01-24T02:43:36.5759760Z -- Looking for pthread.h 2025-01-24T02:43:36.7109110Z -- Looking for pthread.h - found 2025-01-24T02:43:36.7110810Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-01-24T02:43:36.8313170Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-01-24T02:43:36.8320330Z -- Found Threads: TRUE 2025-01-24T02:43:36.8323820Z -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS 2025-01-24T02:43:37.1190250Z -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS - Success 2025-01-24T02:43:37.1339050Z -- Caffe2 protobuf include directory: $$ 2025-01-24T02:43:37.1351780Z -- Trying to find preferred BLAS backend of choice: MKL 2025-01-24T02:43:37.1382050Z -- MKL_THREADING = OMP 2025-01-24T02:43:37.1394060Z -- Looking for sys/types.h 2025-01-24T02:43:37.2775060Z -- Looking for sys/types.h - found 2025-01-24T02:43:37.2786540Z -- Looking for stdint.h 2025-01-24T02:43:37.3970540Z -- Looking for stdint.h - found 2025-01-24T02:43:37.3982120Z -- Looking for stddef.h 2025-01-24T02:43:37.5142680Z -- Looking for stddef.h - found 2025-01-24T02:43:37.5142990Z -- Check size of void* 2025-01-24T02:43:37.6385610Z -- Check size of void* - done 2025-01-24T02:43:37.6490360Z -- MKL_THREADING = OMP 2025-01-24T02:43:37.6575730Z CMake Warning at cmake/Dependencies.cmake:208 (message): 2025-01-24T02:43:37.6576110Z MKL could not be found. Defaulting to Eigen 2025-01-24T02:43:37.6576610Z Call Stack (most recent call first): 2025-01-24T02:43:37.6576870Z CMakeLists.txt:865 (include) 2025-01-24T02:43:37.6577050Z 2025-01-24T02:43:37.6577060Z 2025-01-24T02:43:37.6577200Z CMake Warning at cmake/Dependencies.cmake:256 (message): 2025-01-24T02:43:37.6577650Z Preferred BLAS (MKL) cannot be found, now searching for a general BLAS 2025-01-24T02:43:37.6578020Z library 2025-01-24T02:43:37.6578200Z Call Stack (most recent call first): 2025-01-24T02:43:37.6578460Z CMakeLists.txt:865 (include) 2025-01-24T02:43:37.6578620Z 2025-01-24T02:43:37.6578620Z 2025-01-24T02:43:37.6602070Z -- MKL_THREADING = OMP 2025-01-24T02:43:37.6604390Z -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m] 2025-01-24T02:43:37.6609610Z -- Library mkl_intel_lp64: not found 2025-01-24T02:43:37.6610410Z -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m] 2025-01-24T02:43:37.6615570Z -- Library mkl_intel: not found 2025-01-24T02:43:37.6616320Z -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - guide - pthread - m] 2025-01-24T02:43:37.6621570Z -- Library mkl_intel_lp64: not found 2025-01-24T02:43:37.6622190Z -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - guide - pthread - m] 2025-01-24T02:43:37.6627410Z -- Library mkl_intel: not found 2025-01-24T02:43:37.6628030Z -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m] 2025-01-24T02:43:37.6633240Z -- Library mkl_intel_lp64: not found 2025-01-24T02:43:37.6633760Z -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m] 2025-01-24T02:43:37.6639060Z -- Library mkl_intel: not found 2025-01-24T02:43:37.6639570Z -- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m] 2025-01-24T02:43:37.6644820Z -- Library mkl_intel_lp64: not found 2025-01-24T02:43:37.6645250Z -- Checking for [mkl_intel - mkl_sequential - mkl_core - m] 2025-01-24T02:43:37.6650460Z -- Library mkl_intel: not found 2025-01-24T02:43:37.6650980Z -- Checking for [mkl_intel_lp64 - mkl_core - iomp5 - pthread - m] 2025-01-24T02:43:37.6656140Z -- Library mkl_intel_lp64: not found 2025-01-24T02:43:37.6656580Z -- Checking for [mkl_intel - mkl_core - iomp5 - pthread - m] 2025-01-24T02:43:37.6661840Z -- Library mkl_intel: not found 2025-01-24T02:43:37.6662300Z -- Checking for [mkl_intel_lp64 - mkl_core - guide - pthread - m] 2025-01-24T02:43:37.6667550Z -- Library mkl_intel_lp64: not found 2025-01-24T02:43:37.6667930Z -- Checking for [mkl_intel - mkl_core - guide - pthread - m] 2025-01-24T02:43:37.6673140Z -- Library mkl_intel: not found 2025-01-24T02:43:37.6673570Z -- Checking for [mkl_intel_lp64 - mkl_core - pthread - m] 2025-01-24T02:43:37.6678790Z -- Library mkl_intel_lp64: not found 2025-01-24T02:43:37.6679150Z -- Checking for [mkl_intel - mkl_core - pthread - m] 2025-01-24T02:43:37.6684450Z -- Library mkl_intel: not found 2025-01-24T02:43:37.6684740Z -- Checking for [mkl - guide - pthread - m] 2025-01-24T02:43:37.6690030Z -- Library mkl: not found 2025-01-24T02:43:37.6690290Z -- MKL library not found 2025-01-24T02:43:37.6690730Z -- Checking for [blis] 2025-01-24T02:43:37.6696660Z -- Library blis: BLAS_blis_LIBRARY-NOTFOUND 2025-01-24T02:43:37.6696970Z -- Checking for [Accelerate] 2025-01-24T02:43:37.6702800Z -- Library Accelerate: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework 2025-01-24T02:43:37.6703600Z -- Looking for sgemm_ 2025-01-24T02:43:37.8059620Z -- Looking for sgemm_ - found 2025-01-24T02:43:37.8062420Z -- Performing Test BLAS_F2C_DOUBLE_WORKS 2025-01-24T02:43:38.0136610Z -- Performing Test BLAS_F2C_DOUBLE_WORKS - Success 2025-01-24T02:43:38.0146560Z -- Performing Test BLAS_F2C_FLOAT_WORKS 2025-01-24T02:43:38.2172150Z -- Performing Test BLAS_F2C_FLOAT_WORKS - Failed 2025-01-24T02:43:38.2173570Z -- This BLAS uses the F2C return conventions 2025-01-24T02:43:38.2175700Z -- Performing Test BLAS_USE_CBLAS_DOT 2025-01-24T02:43:38.4154790Z -- Performing Test BLAS_USE_CBLAS_DOT - Success 2025-01-24T02:43:38.4157440Z -- Found a library with BLAS API (accelerate). Full path: (/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework) 2025-01-24T02:43:38.4159800Z -- Looking for sbgemm_ 2025-01-24T02:43:38.5477970Z -- Looking for sbgemm_ - not found 2025-01-24T02:43:38.5478980Z -- Using pocketfft in directory: /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/pocketfft/ 2025-01-24T02:43:38.6310730Z -- The ASM compiler identification is Clang with GNU-like command-line 2025-01-24T02:43:38.6345970Z -- Found assembler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang 2025-01-24T02:43:38.6462990Z -- Brace yourself, we are building NNPACK 2025-01-24T02:43:38.6492330Z -- NNPACK backend is neon 2025-01-24T02:43:38.6625660Z -- Building for XNNPACK_TARGET_PROCESSOR: arm64 2025-01-24T02:43:38.6636590Z -- Generating microkernels.cmake 2025-01-24T02:43:40.4379150Z 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-01-24T02:43:40.4380650Z 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-01-24T02:43:40.4381540Z No microkernel found in src/reference/unary-elementwise.cc 2025-01-24T02:43:40.4381930Z No microkernel found in src/reference/packing.cc 2025-01-24T02:43:40.4382340Z No microkernel found in src/reference/binary-elementwise.cc 2025-01-24T02:43:40.4619660Z CMake Warning at cmake/Dependencies.cmake:711 (message): 2025-01-24T02:43:40.4620180Z A compiler with AVX512 support is required for FBGEMM. Not compiling with 2025-01-24T02:43:40.4620630Z FBGEMM. Turn this warning off by USE_FBGEMM=OFF. 2025-01-24T02:43:40.4620940Z Call Stack (most recent call first): 2025-01-24T02:43:40.4621210Z CMakeLists.txt:865 (include) 2025-01-24T02:43:40.4621370Z 2025-01-24T02:43:40.4621370Z 2025-01-24T02:43:40.4621600Z -- Using third party subdirectory Eigen. 2025-01-24T02:43:40.4621950Z CMake Warning at cmake/Dependencies.cmake:760 (message): 2025-01-24T02:43:40.4622330Z Turning USE_FAKELOWP off as it depends on USE_FBGEMM. 2025-01-24T02:43:40.4622650Z Call Stack (most recent call first): 2025-01-24T02:43:40.4622910Z CMakeLists.txt:865 (include) 2025-01-24T02:43:40.4623070Z 2025-01-24T02:43:40.4623080Z 2025-01-24T02:43:42.0174220Z -- Found Python: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/python (found version "3.9.12") found components: Interpreter Development.Module NumPy 2025-01-24T02:43:42.0175020Z -- Using third_party/pybind11. 2025-01-24T02:43:42.0175550Z -- pybind11 include dirs: /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/../third_party/pybind11/include 2025-01-24T02:43:42.1001510Z -- Could NOT find OpenTelemetryApi (missing: OpenTelemetryApi_INCLUDE_DIRS) 2025-01-24T02:43:42.1001970Z -- Using third_party/opentelemetry-cpp. 2025-01-24T02:43:42.1002650Z -- opentelemetry api include dirs: /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/../third_party/opentelemetry-cpp/api/include 2025-01-24T02:43:42.1036600Z -- MKL_THREADING = OMP 2025-01-24T02:43:42.1129510Z -- Check OMP with lib /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -v 2025-01-24T02:43:42.1853620Z CMake Warning at cmake/Modules/FindOpenMP.cmake:290 (message): 2025-01-24T02:43:42.1854200Z Detecting C OpenMP compiler ABI info compiled with the following output: 2025-01-24T02:43:42.1854520Z 2025-01-24T02:43:42.1854590Z Change Dir: 2025-01-24T02:43:42.1855060Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp 2025-01-24T02:43:42.1855400Z 2025-01-24T02:43:42.1855460Z 2025-01-24T02:43:42.1855550Z 2025-01-24T02:43:42.1855610Z Run Build 2025-01-24T02:43:42.1855990Z Command(s):/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/ninja 2025-01-24T02:43:42.1856420Z cmTC_18754 && [1/2] Building C object 2025-01-24T02:43:42.1856930Z CMakeFiles/cmTC_18754.dir/OpenMPTryFlag.c.o 2025-01-24T02:43:42.1857140Z 2025-01-24T02:43:42.1857270Z FAILED: CMakeFiles/cmTC_18754.dir/OpenMPTryFlag.c.o 2025-01-24T02:43:42.1857500Z 2025-01-24T02:43:42.1857730Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang 2025-01-24T02:43:42.1858210Z -Xpreprocessor -fopenmp -v -arch arm64 -isysroot 2025-01-24T02:43:42.1858570Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-01-24T02:43:42.1858940Z -mmacosx-version-min=11.0 -std=gnu11 -MD -MT 2025-01-24T02:43:42.1859300Z CMakeFiles/cmTC_18754.dir/OpenMPTryFlag.c.o -MF 2025-01-24T02:43:42.1859650Z CMakeFiles/cmTC_18754.dir/OpenMPTryFlag.c.o.d -o 2025-01-24T02:43:42.1860000Z CMakeFiles/cmTC_18754.dir/OpenMPTryFlag.c.o -c 2025-01-24T02:43:42.1860530Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2025-01-24T02:43:42.1860910Z 2025-01-24T02:43:42.1860920Z 2025-01-24T02:43:42.1861060Z Apple clang version 15.0.0 (clang-1500.3.9.4) 2025-01-24T02:43:42.1861270Z 2025-01-24T02:43:42.1861390Z Target: arm64-apple-darwin23.4.0 2025-01-24T02:43:42.1861570Z 2025-01-24T02:43:42.1861640Z Thread model: posix 2025-01-24T02:43:42.1861780Z 2025-01-24T02:43:42.1861940Z InstalledDir: /Library/Developer/CommandLineTools/usr/bin 2025-01-24T02:43:42.1862190Z 2025-01-24T02:43:42.1874240Z "/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_18754.dir/OpenMPTryFlag.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_18754.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-01-24T02:43:42.1885240Z 2025-01-24T02:43:42.1885450Z clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target 2025-01-24T02:43:42.1885800Z arm64-apple-darwin23.4.0 2025-01-24T02:43:42.1885970Z 2025-01-24T02:43:42.1886100Z ignoring nonexistent directory "/usr/local/include" 2025-01-24T02:43:42.1886330Z 2025-01-24T02:43:42.1886420Z ignoring nonexistent directory 2025-01-24T02:43:42.1886790Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" 2025-01-24T02:43:42.1887100Z 2025-01-24T02:43:42.1887180Z ignoring nonexistent directory 2025-01-24T02:43:42.1887560Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" 2025-01-24T02:43:42.1887870Z 2025-01-24T02:43:42.1887960Z #include "..." search starts here: 2025-01-24T02:43:42.1888140Z 2025-01-24T02:43:42.1888220Z #include <...> search starts here: 2025-01-24T02:43:42.1888400Z 2025-01-24T02:43:42.1888580Z /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include 2025-01-24T02:43:42.1889050Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-01-24T02:43:42.1889440Z /Library/Developer/CommandLineTools/usr/include 2025-01-24T02:43:42.1889980Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) 2025-01-24T02:43:42.1890400Z 2025-01-24T02:43:42.1890470Z End of search list. 2025-01-24T02:43:42.1897030Z 2025-01-24T02:43:42.1897110Z 2025-01-24T02:43:42.1897610Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c:2:10: 2025-01-24T02:43:42.1898120Z fatal error: 'omp.h' file not found 2025-01-24T02:43:42.1898300Z 2025-01-24T02:43:42.1898370Z #include 2025-01-24T02:43:42.1898490Z 2025-01-24T02:43:42.1898570Z ^~~~~~~ 2025-01-24T02:43:42.1898680Z 2025-01-24T02:43:42.1898750Z 1 error generated. 2025-01-24T02:43:42.1898870Z 2025-01-24T02:43:42.1898970Z ninja: build stopped: subcommand failed. 2025-01-24T02:43:42.1899180Z 2025-01-24T02:43:42.1899230Z 2025-01-24T02:43:42.1899320Z 2025-01-24T02:43:42.1899410Z Call Stack (most recent call first): 2025-01-24T02:43:42.1899730Z cmake/Modules/FindOpenMP.cmake:506 (_OPENMP_GET_FLAGS) 2025-01-24T02:43:42.1900060Z cmake/Dependencies.cmake:952 (include) 2025-01-24T02:43:42.1900320Z CMakeLists.txt:865 (include) 2025-01-24T02:43:42.1900470Z 2025-01-24T02:43:42.1900480Z 2025-01-24T02:43:42.3346780Z -- MKL_THREADING = OMP 2025-01-24T02:43:42.3433530Z -- Check OMP with lib /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -I/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/include -v 2025-01-24T02:43:42.4689930Z -- MKL_THREADING = OMP 2025-01-24T02:43:42.4776920Z -- Check OMP with lib /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -v 2025-01-24T02:43:42.5496510Z CMake Warning at cmake/Modules/FindOpenMP.cmake:290 (message): 2025-01-24T02:43:42.5497080Z Detecting CXX OpenMP compiler ABI info compiled with the following output: 2025-01-24T02:43:42.5497410Z 2025-01-24T02:43:42.5497870Z Change Dir: 2025-01-24T02:43:42.5498330Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp 2025-01-24T02:43:42.5498620Z 2025-01-24T02:43:42.5498680Z 2025-01-24T02:43:42.5498760Z 2025-01-24T02:43:42.5498820Z Run Build 2025-01-24T02:43:42.5499190Z Command(s):/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/ninja 2025-01-24T02:43:42.5499620Z cmTC_8419d && [1/2] Building CXX object 2025-01-24T02:43:42.5499910Z CMakeFiles/cmTC_8419d.dir/OpenMPTryFlag.cpp.o 2025-01-24T02:43:42.5500120Z 2025-01-24T02:43:42.5500250Z FAILED: CMakeFiles/cmTC_8419d.dir/OpenMPTryFlag.cpp.o 2025-01-24T02:43:42.5500650Z 2025-01-24T02:43:42.5500880Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang++ 2025-01-24T02:43:42.5501440Z -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Xpreprocessor -fopenmp -v 2025-01-24T02:43:42.5501960Z -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-01-24T02:43:42.5502390Z -mmacosx-version-min=11.0 -std=gnu++17 -MD -MT 2025-01-24T02:43:42.5502730Z CMakeFiles/cmTC_8419d.dir/OpenMPTryFlag.cpp.o -MF 2025-01-24T02:43:42.5503080Z CMakeFiles/cmTC_8419d.dir/OpenMPTryFlag.cpp.o.d -o 2025-01-24T02:43:42.5503420Z CMakeFiles/cmTC_8419d.dir/OpenMPTryFlag.cpp.o -c 2025-01-24T02:43:42.5503930Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2025-01-24T02:43:42.5504300Z 2025-01-24T02:43:42.5504300Z 2025-01-24T02:43:42.5504440Z Apple clang version 15.0.0 (clang-1500.3.9.4) 2025-01-24T02:43:42.5504630Z 2025-01-24T02:43:42.5504740Z Target: arm64-apple-darwin23.4.0 2025-01-24T02:43:42.5504910Z 2025-01-24T02:43:42.5504990Z Thread model: posix 2025-01-24T02:43:42.5505110Z 2025-01-24T02:43:42.5505260Z InstalledDir: /Library/Developer/CommandLineTools/usr/bin 2025-01-24T02:43:42.5505490Z 2025-01-24T02:43:42.5518370Z "/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_8419d.dir/OpenMPTryFlag.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_8419d.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-01-24T02:43:42.5530240Z 2025-01-24T02:43:42.5530450Z clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target 2025-01-24T02:43:42.5530800Z arm64-apple-darwin23.4.0 2025-01-24T02:43:42.5530950Z 2025-01-24T02:43:42.5531080Z ignoring nonexistent directory "/usr/local/include" 2025-01-24T02:43:42.5531310Z 2025-01-24T02:43:42.5531400Z ignoring nonexistent directory 2025-01-24T02:43:42.5531770Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" 2025-01-24T02:43:42.5532070Z 2025-01-24T02:43:42.5532160Z ignoring nonexistent directory 2025-01-24T02:43:42.5532530Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" 2025-01-24T02:43:42.5532840Z 2025-01-24T02:43:42.5532930Z #include "..." search starts here: 2025-01-24T02:43:42.5533100Z 2025-01-24T02:43:42.5533190Z #include <...> search starts here: 2025-01-24T02:43:42.5533360Z 2025-01-24T02:43:42.5533560Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 2025-01-24T02:43:42.5534050Z /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include 2025-01-24T02:43:42.5534510Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-01-24T02:43:42.5534900Z /Library/Developer/CommandLineTools/usr/include 2025-01-24T02:43:42.5535440Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) 2025-01-24T02:43:42.5535860Z 2025-01-24T02:43:42.5535930Z End of search list. 2025-01-24T02:43:42.5536060Z 2025-01-24T02:43:42.5536120Z 2025-01-24T02:43:42.5536560Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp:2:10: 2025-01-24T02:43:42.5537080Z fatal error: 'omp.h' file not found 2025-01-24T02:43:42.5537270Z 2025-01-24T02:43:42.5537330Z #include 2025-01-24T02:43:42.5537460Z 2025-01-24T02:43:42.5537520Z ^~~~~~~ 2025-01-24T02:43:42.5537630Z 2025-01-24T02:43:42.5537690Z 1 error generated. 2025-01-24T02:43:42.5537820Z 2025-01-24T02:43:42.5537910Z ninja: build stopped: subcommand failed. 2025-01-24T02:43:42.5538110Z 2025-01-24T02:43:42.5538170Z 2025-01-24T02:43:42.5538250Z 2025-01-24T02:43:42.5538340Z Call Stack (most recent call first): 2025-01-24T02:43:42.5538660Z cmake/Modules/FindOpenMP.cmake:506 (_OPENMP_GET_FLAGS) 2025-01-24T02:43:42.5538990Z cmake/Dependencies.cmake:952 (include) 2025-01-24T02:43:42.5539250Z CMakeLists.txt:865 (include) 2025-01-24T02:43:42.5539400Z 2025-01-24T02:43:42.5539400Z 2025-01-24T02:43:42.6944990Z -- MKL_THREADING = OMP 2025-01-24T02:43:42.7032000Z -- Check OMP with lib /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -I/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/include -v 2025-01-24T02:43:42.9516540Z -- Found OpenMP_C: -Xpreprocessor -fopenmp -I/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/include 2025-01-24T02:43:43.0779810Z -- Found OpenMP_CXX: -Xpreprocessor -fopenmp -I/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/include 2025-01-24T02:43:43.0780890Z -- Found OpenMP: TRUE 2025-01-24T02:43:43.0781540Z -- Adding OpenMP CXX_FLAGS: -Xpreprocessor -fopenmp -I/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/include 2025-01-24T02:43:43.0782470Z -- Will link against OpenMP libraries: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib/libomp.dylib 2025-01-24T02:43:43.0962800Z -- Found PythonInterp: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/python (found version "3.9.12") 2025-01-24T02:43:43.0964630Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-01-24T02:43:43.0965940Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-01-24T02:43:43.0966950Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-01-24T02:43:43.6588780Z -- 2025-01-24T02:43:43.6589040Z -- ******** Summary ******** 2025-01-24T02:43:43.6589390Z -- CMake version : 3.22.1 2025-01-24T02:43:43.6589930Z -- CMake command : /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/cmake 2025-01-24T02:43:43.6590460Z -- System : Darwin 2025-01-24T02:43:43.6591000Z -- C++ compiler : /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang++ 2025-01-24T02:43:43.6591550Z -- C++ compiler version : 15.0.0.15000309 2025-01-24T02:43:43.6592080Z -- CXX flags : -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Wnon-virtual-dtor 2025-01-24T02:43:43.6592570Z -- Build type : Release 2025-01-24T02:43:43.6593010Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1;__STDC_FORMAT_MACROS 2025-01-24T02:43:43.6593690Z -- CMAKE_PREFIX_PATH : /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib/python3.9/site-packages 2025-01-24T02:43:43.6594380Z -- CMAKE_INSTALL_PREFIX : /Users/ec2-user/runner/_work/pytorch/pytorch/torch 2025-01-24T02:43:43.6595280Z -- 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-01-24T02:43:43.6595920Z -- 2025-01-24T02:43:43.6596120Z -- ONNX version : 1.17.0 2025-01-24T02:43:43.6596430Z -- ONNX NAMESPACE : onnx_torch 2025-01-24T02:43:43.6596750Z -- ONNX_USE_LITE_PROTO : OFF 2025-01-24T02:43:43.6597080Z -- USE_PROTOBUF_SHARED_LIBS : OFF 2025-01-24T02:43:43.6597400Z -- Protobuf_USE_STATIC_LIBS : ON 2025-01-24T02:43:43.6597730Z -- ONNX_DISABLE_EXCEPTIONS : OFF 2025-01-24T02:43:43.6598040Z -- ONNX_DISABLE_STATIC_REGISTRATION : OFF 2025-01-24T02:43:43.6598340Z -- ONNX_WERROR : OFF 2025-01-24T02:43:43.6598640Z -- ONNX_BUILD_TESTS : OFF 2025-01-24T02:43:43.6598940Z -- ONNX_BUILD_SHARED_LIBS : 2025-01-24T02:43:43.6599240Z -- BUILD_SHARED_LIBS : OFF 2025-01-24T02:43:43.6599500Z -- 2025-01-24T02:43:43.6599690Z -- Protobuf compiler : 2025-01-24T02:43:43.6599990Z -- Protobuf includes : 2025-01-24T02:43:43.6600280Z -- Protobuf libraries : 2025-01-24T02:43:43.6600590Z -- BUILD_ONNX_PYTHON : OFF 2025-01-24T02:43:43.6600950Z CMake Warning at cmake/Dependencies.cmake:1396 (message): 2025-01-24T02:43:43.6601460Z Not compiling with MAGMA. Suppress this warning with -DUSE_MAGMA=OFF. 2025-01-24T02:43:43.6601860Z Call Stack (most recent call first): 2025-01-24T02:43:43.6602120Z CMakeLists.txt:865 (include) 2025-01-24T02:43:43.6602280Z 2025-01-24T02:43:43.6602290Z 2025-01-24T02:43:43.6602510Z -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor 2025-01-24T02:43:43.6602920Z -- Adding -DNDEBUG to compile flags 2025-01-24T02:43:43.6651620Z -- No OMAP3 processor on this machine. 2025-01-24T02:43:43.6651950Z -- No OMAP4 processor on this machine. 2025-01-24T02:43:43.6652280Z -- Neon found with compiler flag : -D__NEON__ 2025-01-24T02:43:43.6668660Z -- Looking for cheev_ 2025-01-24T02:43:43.8037390Z -- Looking for cheev_ - found 2025-01-24T02:43:43.8037920Z -- Found a library with LAPACK API (accelerate). 2025-01-24T02:43:43.8038440Z disabling CUDA because NOT USE_CUDA is set 2025-01-24T02:43:43.8038940Z disabling ROCM because NOT USE_ROCM is set 2025-01-24T02:43:43.8039350Z -- MIOpen not found. Compiling without MIOpen support 2025-01-24T02:43:43.8039940Z disabling MKLDNN because USE_MKLDNN is not set 2025-01-24T02:43:43.8065860Z -- Looking for mmap 2025-01-24T02:43:43.9239150Z -- Looking for mmap - found 2025-01-24T02:43:43.9239580Z -- Looking for shm_open 2025-01-24T02:43:44.0405050Z -- Looking for shm_open - found 2025-01-24T02:43:44.0405540Z -- Looking for shm_unlink 2025-01-24T02:43:44.1589410Z -- Looking for shm_unlink - found 2025-01-24T02:43:44.1589890Z -- Looking for malloc_usable_size 2025-01-24T02:43:44.2760900Z -- Looking for malloc_usable_size - not found 2025-01-24T02:43:44.2791630Z -- {fmt} version: 11.1.1 2025-01-24T02:43:44.2791880Z -- Build type: Release 2025-01-24T02:43:44.2803790Z -- Performing Test HAS_NULLPTR_WARNING 2025-01-24T02:43:44.3958770Z -- Performing Test HAS_NULLPTR_WARNING - Success 2025-01-24T02:43:44.4003060Z -- Using CPU-only version of Kineto 2025-01-24T02:43:44.4003370Z -- Configuring Kineto dependency: 2025-01-24T02:43:44.4003890Z -- KINETO_SOURCE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto 2025-01-24T02:43:44.4004390Z -- KINETO_BUILD_TESTS = OFF 2025-01-24T02:43:44.4004660Z -- KINETO_LIBRARY_TYPE = static 2025-01-24T02:43:44.4186740Z INFO CUDA_SOURCE_DIR = 2025-01-24T02:43:44.4187000Z INFO ROCM_SOURCE_DIR = 2025-01-24T02:43:44.4336530Z INFO CUPTI unavailable or disabled - not building GPU profilers 2025-01-24T02:43:44.4634410Z INFO CUPTI_INCLUDE_DIR = /extras/CUPTI/include 2025-01-24T02:43:44.4635070Z -- Kineto: FMT_SOURCE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fmt 2025-01-24T02:43:44.4635730Z -- Kineto: FMT_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fmt/include 2025-01-24T02:43:44.4636200Z INFO ROCTRACER_INCLUDE_DIR = /include/roctracer 2025-01-24T02:43:44.4636820Z INFO DYNOLOG_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/ 2025-01-24T02:43:44.4637790Z INFO IPCFABRIC_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ 2025-01-24T02:43:44.4641400Z -- Configured Kineto (CPU) 2025-01-24T02:43:44.4679790Z -- Running on macOS with Apple silicon 2025-01-24T02:43:44.4707780Z -- Performing Test HAS_WERROR_RETURN_TYPE 2025-01-24T02:43:44.5873910Z -- Performing Test HAS_WERROR_RETURN_TYPE - Success 2025-01-24T02:43:44.5878510Z -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR 2025-01-24T02:43:44.7038470Z -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR - Success 2025-01-24T02:43:44.7043270Z -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT 2025-01-24T02:43:44.8198780Z -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT - Success 2025-01-24T02:43:44.8205180Z -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT 2025-01-24T02:43:44.9385460Z -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT - Success 2025-01-24T02:43:44.9390470Z -- Performing Test HAS_WERROR_BOOL_OPERATION 2025-01-24T02:43:45.0537270Z -- Performing Test HAS_WERROR_BOOL_OPERATION - Success 2025-01-24T02:43:45.0541930Z -- Performing Test HAS_WNARROWING 2025-01-24T02:43:45.1703860Z -- Performing Test HAS_WNARROWING - Success 2025-01-24T02:43:45.1708580Z -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS 2025-01-24T02:43:45.2871250Z -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS - Success 2025-01-24T02:43:45.2875880Z -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS 2025-01-24T02:43:45.4041770Z -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS - Success 2025-01-24T02:43:45.4046170Z -- Performing Test HAS_WNO_UNUSED_PARAMETER 2025-01-24T02:43:45.5205350Z -- Performing Test HAS_WNO_UNUSED_PARAMETER - Success 2025-01-24T02:43:45.5210280Z -- Performing Test HAS_WNO_STRICT_OVERFLOW 2025-01-24T02:43:45.6362360Z -- Performing Test HAS_WNO_STRICT_OVERFLOW - Success 2025-01-24T02:43:45.6367270Z -- Performing Test HAS_WNO_STRICT_ALIASING 2025-01-24T02:43:45.7535200Z -- Performing Test HAS_WNO_STRICT_ALIASING - Success 2025-01-24T02:43:45.7540020Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW 2025-01-24T02:43:45.8700030Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Failed 2025-01-24T02:43:45.8704910Z -- Performing Test HAS_WVLA_EXTENSION 2025-01-24T02:43:45.9870740Z -- Performing Test HAS_WVLA_EXTENSION - Success 2025-01-24T02:43:45.9875570Z -- Performing Test HAS_WSUGGEST_OVERRIDE 2025-01-24T02:43:46.1027720Z -- Performing Test HAS_WSUGGEST_OVERRIDE - Success 2025-01-24T02:43:46.1032800Z -- Performing Test HAS_WNEWLINE_EOF 2025-01-24T02:43:46.2207310Z -- Performing Test HAS_WNEWLINE_EOF - Success 2025-01-24T02:43:46.2212100Z -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE 2025-01-24T02:43:46.3374490Z -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE - Success 2025-01-24T02:43:46.3379280Z -- Performing Test HAS_WINCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE 2025-01-24T02:43:46.4536330Z -- Performing Test HAS_WINCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE - Success 2025-01-24T02:43:46.4541150Z -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST 2025-01-24T02:43:46.5699110Z -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST - Success 2025-01-24T02:43:46.5703750Z -- Performing Test HAS_WCONSTANT_CONVERSION 2025-01-24T02:43:46.6873170Z -- Performing Test HAS_WCONSTANT_CONVERSION - Success 2025-01-24T02:43:46.6877880Z -- Performing Test HAS_WNO_ALIGNED_ALLOCATION_UNAVAILABLE 2025-01-24T02:43:46.8056390Z -- Performing Test HAS_WNO_ALIGNED_ALLOCATION_UNAVAILABLE - Failed 2025-01-24T02:43:46.8060880Z -- Performing Test HAS_QUNUSED_ARGUMENTS 2025-01-24T02:43:46.9222910Z -- Performing Test HAS_QUNUSED_ARGUMENTS - Success 2025-01-24T02:43:46.9227510Z -- Performing Test HAS_FCOLOR_DIAGNOSTICS 2025-01-24T02:43:47.0386580Z -- Performing Test HAS_FCOLOR_DIAGNOSTICS - Success 2025-01-24T02:43:47.0390990Z -- Performing Test HAS_FALIGNED_NEW 2025-01-24T02:43:47.1557020Z -- Performing Test HAS_FALIGNED_NEW - Success 2025-01-24T02:43:47.1562150Z -- Performing Test HAS_WERROR 2025-01-24T02:43:47.2716380Z -- Performing Test HAS_WERROR - Success 2025-01-24T02:43:47.2721190Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED 2025-01-24T02:43:47.3426340Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED - Failed 2025-01-24T02:43:47.3431020Z -- Performing Test HAS_FSTANDALONE_DEBUG 2025-01-24T02:43:47.4601720Z -- Performing Test HAS_FSTANDALONE_DEBUG - Success 2025-01-24T02:43:47.4606910Z -- Performing Test HAS_FNO_MATH_ERRNO 2025-01-24T02:43:47.5775530Z -- Performing Test HAS_FNO_MATH_ERRNO - Success 2025-01-24T02:43:47.5780360Z -- Performing Test HAS_FNO_TRAPPING_MATH 2025-01-24T02:43:47.6941140Z -- Performing Test HAS_FNO_TRAPPING_MATH - Success 2025-01-24T02:43:47.6945620Z -- Performing Test HAS_WERROR_FORMAT 2025-01-24T02:43:47.8097530Z -- Performing Test HAS_WERROR_FORMAT - Success 2025-01-24T02:43:47.8102660Z -- Performing Test HAS_WNO_UNGUARDED_AVAILABILITY_NEW 2025-01-24T02:43:47.9264380Z -- Performing Test HAS_WNO_UNGUARDED_AVAILABILITY_NEW - Success 2025-01-24T02:43:47.9268820Z -- Performing Test HAS_WNO_MISSING_BRACES 2025-01-24T02:43:48.0427700Z -- Performing Test HAS_WNO_MISSING_BRACES - Success 2025-01-24T02:43:48.0567040Z -- Performing Test HAS_WDEPRECATED 2025-01-24T02:43:48.1718480Z -- Performing Test HAS_WDEPRECATED - Success 2025-01-24T02:43:48.1719050Z -- don't use NUMA 2025-01-24T02:43:48.1812250Z -- Looking for backtrace 2025-01-24T02:43:48.3038810Z -- Looking for backtrace - found 2025-01-24T02:43:48.3039400Z -- backtrace facility detected in default set of libraries 2025-01-24T02:43:48.3041090Z -- Found Backtrace: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-01-24T02:43:50.3045370Z -- headers outputs: 2025-01-24T02:43:51.1939610Z -- sources outputs: 2025-01-24T02:43:51.9012050Z -- declarations_yaml outputs: 2025-01-24T02:43:51.9804470Z -- Using ATen parallel backend: OMP 2025-01-24T02:43:51.9819280Z disabling CUDA because USE_CUDA is set false 2025-01-24T02:43:52.7265380Z -- Found OpenSSL: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib/libcrypto.dylib (found version "1.1.1w") 2025-01-24T02:43:52.7297830Z -- Check size of long double 2025-01-24T02:43:52.8552970Z -- Check size of long double - done 2025-01-24T02:43:52.8554990Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 2025-01-24T02:43:52.9440920Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Failed 2025-01-24T02:43:52.9453260Z -- Found OpenMP_C: -Xpreprocessor -fopenmp -I/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/include (found version "5.0") 2025-01-24T02:43:52.9455260Z -- Found OpenMP_CXX: -Xpreprocessor -fopenmp -I/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/include (found version "5.0") 2025-01-24T02:43:52.9456190Z -- Found OpenMP: TRUE (found version "5.0") 2025-01-24T02:43:52.9458280Z -- Performing Test COMPILER_SUPPORTS_OPENMP 2025-01-24T02:43:53.0653640Z -- Performing Test COMPILER_SUPPORTS_OPENMP - Failed 2025-01-24T02:43:53.0655170Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD 2025-01-24T02:43:53.1840120Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD - Failed 2025-01-24T02:43:53.1841930Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES 2025-01-24T02:43:53.2729390Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Failed 2025-01-24T02:43:53.2731600Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH 2025-01-24T02:43:53.3966260Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Success 2025-01-24T02:43:53.3967960Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM 2025-01-24T02:43:53.4835490Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed 2025-01-24T02:43:53.4973070Z Target system: Darwin-23.4.0 2025-01-24T02:43:53.4973370Z Target processor: arm64 2025-01-24T02:43:53.4973640Z -- Configuring build for SLEEF-v3.7.0 2025-01-24T02:43:53.4973950Z Host system: Darwin-23.4.0 2025-01-24T02:43:53.4974190Z Host processor: arm64 2025-01-24T02:43:53.4974700Z Detected C compiler: AppleClang @ /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang 2025-01-24T02:43:53.4975200Z CMake: 3.22.1 2025-01-24T02:43:53.4975620Z Make program: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/ninja 2025-01-24T02:43:53.4976540Z -- Using option `-Wall -Wno-unused-function -Wno-attributes -Wno-unused-result -ffp-contract=off -fno-math-errno -fno-trapping-math` to compile libsleef 2025-01-24T02:43:53.4977240Z -- Building shared libs : OFF 2025-01-24T02:43:53.4977500Z -- Building static test bins: OFF 2025-01-24T02:43:53.4977770Z -- MPFR : LIB_MPFR-NOTFOUND 2025-01-24T02:43:53.4978020Z -- GMP : LIBGMP-NOTFOUND 2025-01-24T02:43:53.4978240Z -- RT : 2025-01-24T02:43:53.4978430Z -- FFTW3 : LIBFFTW3-NOTFOUND 2025-01-24T02:43:53.4978680Z -- OPENSSL : 1.1.1w 2025-01-24T02:43:53.4978900Z -- SDE : SDE_COMMAND-NOTFOUND 2025-01-24T02:43:53.4979160Z -- COMPILER_SUPPORTS_OPENMP : 2025-01-24T02:43:53.5051770Z CMake Warning at cmake/Metal.cmake:59 (message): 2025-01-24T02:43:53.5052240Z Machine can not compile metal shaders, fails with xcrun: error: unable to 2025-01-24T02:43:53.5052750Z find utility "metal", not a developer tool or in PATH 2025-01-24T02:43:53.5053000Z 2025-01-24T02:43:53.5053090Z Call Stack (most recent call first): 2025-01-24T02:43:53.5053380Z aten/src/ATen/CMakeLists.txt:601 (include) 2025-01-24T02:43:53.5053600Z 2025-01-24T02:43:53.5053610Z 2025-01-24T02:43:53.5099750Z -- _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-01-24T02:43:53.5101490Z -- Toolchain using default OSX SDK: /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk 2025-01-24T02:43:53.5102950Z -- 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-01-24T02:43:53.9450470Z AT_INSTALL_INCLUDE_DIR include/ATen/core 2025-01-24T02:43:53.9451230Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/TensorBody.h 2025-01-24T02:43:53.9452350Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/aten_interned_strings.h 2025-01-24T02:43:53.9453140Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/enum_tag.h 2025-01-24T02:43:54.0794820Z -- Performing Test HAS_WMISSING_PROTOTYPES 2025-01-24T02:43:54.1978210Z -- Performing Test HAS_WMISSING_PROTOTYPES - Success 2025-01-24T02:43:54.1982830Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES 2025-01-24T02:43:54.3144290Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES - Success 2025-01-24T02:43:54.4687690Z -- The OBJC compiler identification is AppleClang 15.0.0.15000309 2025-01-24T02:43:54.5336010Z -- The OBJCXX compiler identification is AppleClang 15.0.0.15000309 2025-01-24T02:43:54.5399010Z -- Detecting OBJC compiler ABI info 2025-01-24T02:43:54.6575260Z -- Detecting OBJC compiler ABI info - done 2025-01-24T02:43:54.6608170Z -- Check for working OBJC compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang - skipped 2025-01-24T02:43:54.6660100Z -- Detecting OBJCXX compiler ABI info 2025-01-24T02:43:54.7850220Z -- Detecting OBJCXX compiler ABI info - done 2025-01-24T02:43:54.7884820Z -- Check for working OBJCXX compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang++ - skipped 2025-01-24T02:43:54.8323460Z -- 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-01-24T02:43:54.8383370Z CMake Warning at CMakeLists.txt:1278 (message): 2025-01-24T02:43:54.8383840Z Generated cmake files are only fully tested if one builds with system glog, 2025-01-24T02:43:54.8384470Z gflags, and protobuf. Other settings may generate files that are not well 2025-01-24T02:43:54.8384850Z tested. 2025-01-24T02:43:54.8384950Z 2025-01-24T02:43:54.8384960Z 2025-01-24T02:43:54.8411040Z -- 2025-01-24T02:43:54.8411320Z -- ******** Summary ******** 2025-01-24T02:43:54.8411560Z -- General: 2025-01-24T02:43:54.8411780Z -- CMake version : 3.22.1 2025-01-24T02:43:54.8412320Z -- CMake command : /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/cmake 2025-01-24T02:43:54.8412800Z -- System : Darwin 2025-01-24T02:43:54.8413330Z -- C++ compiler : /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang++ 2025-01-24T02:43:54.8413840Z -- C++ compiler id : AppleClang 2025-01-24T02:43:54.8414160Z -- C++ compiler version : 15.0.0.15000309 2025-01-24T02:43:54.8414460Z -- Using ccache if found : ON 2025-01-24T02:43:54.8414780Z -- Found ccache : CCACHE_PROGRAM-NOTFOUND 2025-01-24T02:43:54.8418520Z -- 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 -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 -fcolor-diagnostics -faligned-new -Werror -fno-math-errno -fno-trapping-math -Werror=format -DUSE_MPS -Wno-missing-braces 2025-01-24T02:43:54.8422290Z -- Shared LD flags : -rdynamic -weak_framework Foundation -weak_framework MetalPerformanceShaders -weak_framework MetalPerformanceShadersGraph -weak_framework Metal 2025-01-24T02:43:54.8423000Z -- Static LD flags : 2025-01-24T02:43:54.8423240Z -- Module LD flags : 2025-01-24T02:43:54.8423670Z -- Build type : Release 2025-01-24T02:43:54.8424720Z -- 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;FLASHATTENTION_DISABLE_ALIBI;AT_BUILD_ARM_VEC256_WITH_SLEEF 2025-01-24T02:43:54.8431550Z -- CMAKE_PREFIX_PATH : /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib/python3.9/site-packages 2025-01-24T02:43:54.8432190Z -- CMAKE_INSTALL_PREFIX : /Users/ec2-user/runner/_work/pytorch/pytorch/torch 2025-01-24T02:43:54.8432570Z -- USE_GOLD_LINKER : OFF 2025-01-24T02:43:54.8432790Z -- 2025-01-24T02:43:54.8432970Z -- TORCH_VERSION : 2.7.0 2025-01-24T02:43:54.8433240Z -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF 2025-01-24T02:43:54.8433520Z -- BUILD_BINARY : OFF 2025-01-24T02:43:54.8433760Z -- BUILD_CUSTOM_PROTOBUF : ON 2025-01-24T02:43:54.8434000Z -- Link local protobuf : ON 2025-01-24T02:43:54.8434250Z -- BUILD_PYTHON : True 2025-01-24T02:43:54.8434500Z -- Python version : 3.9.12 2025-01-24T02:43:54.8434990Z -- Python executable : /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/python 2025-01-24T02:43:54.8435470Z -- Python library : 2025-01-24T02:43:54.8435940Z -- Python includes : /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/include/python3.9 2025-01-24T02:43:54.8436680Z -- Python site-package : /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib/python3.9/site-packages 2025-01-24T02:43:54.8437180Z -- BUILD_SHARED_LIBS : ON 2025-01-24T02:43:54.8437450Z -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF 2025-01-24T02:43:54.8437740Z -- BUILD_TEST : False 2025-01-24T02:43:54.8437980Z -- BUILD_JNI : OFF 2025-01-24T02:43:54.8438230Z -- BUILD_MOBILE_AUTOGRAD : OFF 2025-01-24T02:43:54.8438480Z -- BUILD_LITE_INTERPRETER: OFF 2025-01-24T02:43:54.8438720Z -- CROSS_COMPILING_MACOSX : 2025-01-24T02:43:54.8438960Z -- INTERN_BUILD_MOBILE : 2025-01-24T02:43:54.8439190Z -- TRACING_BASED : OFF 2025-01-24T02:43:54.8439430Z -- USE_BLAS : 1 2025-01-24T02:43:54.8439660Z -- BLAS : accelerate 2025-01-24T02:43:54.8439920Z -- BLAS_HAS_SBGEMM : 2025-01-24T02:43:54.8440160Z -- USE_LAPACK : 1 2025-01-24T02:43:54.8440390Z -- LAPACK : accelerate 2025-01-24T02:43:54.8440650Z -- USE_ASAN : OFF 2025-01-24T02:43:54.8440880Z -- USE_TSAN : OFF 2025-01-24T02:43:54.8441120Z -- USE_CPP_CODE_COVERAGE : OFF 2025-01-24T02:43:54.8441360Z -- USE_CUDA : OFF 2025-01-24T02:43:54.8441590Z -- USE_XPU : OFF 2025-01-24T02:43:54.8441820Z -- USE_ROCM : OFF 2025-01-24T02:43:54.8442040Z -- BUILD_NVFUSER : 2025-01-24T02:43:54.8442280Z -- USE_EIGEN_FOR_BLAS : ON 2025-01-24T02:43:54.8442510Z -- USE_FBGEMM : OFF 2025-01-24T02:43:54.8442760Z -- USE_FAKELOWP : OFF 2025-01-24T02:43:54.8443010Z -- USE_KINETO : ON 2025-01-24T02:43:54.8443240Z -- USE_GFLAGS : OFF 2025-01-24T02:43:54.8443470Z -- USE_GLOG : OFF 2025-01-24T02:43:54.8443700Z -- USE_LITE_PROTO : OFF 2025-01-24T02:43:54.8443940Z -- USE_PYTORCH_METAL : 1 2025-01-24T02:43:54.8444290Z -- USE_PYTORCH_METAL_EXPORT : OFF 2025-01-24T02:43:54.8444560Z -- USE_MPS : ON 2025-01-24T02:43:54.8444800Z -- CAN_COMPILE_METAL : NO 2025-01-24T02:43:54.8445030Z -- USE_MKL : OFF 2025-01-24T02:43:54.8445260Z -- USE_MKLDNN : OFF 2025-01-24T02:43:54.8445490Z -- USE_KLEIDIAI : ON 2025-01-24T02:43:54.8445720Z -- USE_UCC : OFF 2025-01-24T02:43:54.8445960Z -- USE_ITT : OFF 2025-01-24T02:43:54.8446260Z -- USE_NCCL : OFF 2025-01-24T02:43:54.8446500Z -- USE_NNPACK : ON 2025-01-24T02:43:54.8446850Z -- USE_NUMPY : ON 2025-01-24T02:43:54.8447090Z -- USE_OBSERVERS : ON 2025-01-24T02:43:54.8447330Z -- USE_OPENCL : OFF 2025-01-24T02:43:54.8447570Z -- USE_OPENMP : 1 2025-01-24T02:43:54.8447800Z -- USE_MIMALLOC : OFF 2025-01-24T02:43:54.8448040Z -- USE_VULKAN : OFF 2025-01-24T02:43:54.8448270Z -- USE_PROF : OFF 2025-01-24T02:43:54.8448500Z -- USE_PYTORCH_QNNPACK : ON 2025-01-24T02:43:54.8448730Z -- USE_XNNPACK : ON 2025-01-24T02:43:54.8448960Z -- USE_DISTRIBUTED : 0 2025-01-24T02:43:54.8449190Z -- Public Dependencies : 2025-01-24T02:43:54.8450010Z -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;pytorch_qnnpack;nnpack;XNNPACK;microkernels-prod;fp16;caffe2::openmp;kleidiai;fmt::fmt-header-only;kineto 2025-01-24T02:43:54.8450680Z -- Public CUDA Deps. : 2025-01-24T02:43:54.8450900Z -- Private CUDA Deps. : 2025-01-24T02:43:54.8451140Z -- USE_COREML_DELEGATE : OFF 2025-01-24T02:43:54.8451390Z -- BUILD_LAZY_TS_BACKEND : ON 2025-01-24T02:43:54.8451640Z -- USE_ROCM_KERNEL_ASSERT : OFF 2025-01-24T02:43:54.8504810Z -- Configuring done 2025-01-24T02:43:55.7781830Z -- Generating done 2025-01-24T02:43:55.8643860Z CMake Warning: 2025-01-24T02:43:55.8644360Z Manually-specified variables were not used by the project: 2025-01-24T02:43:55.8644650Z 2025-01-24T02:43:55.8644730Z BUILD_ENVIRONMENT 2025-01-24T02:43:55.8644920Z CMAKE_EXEC 2025-01-24T02:43:55.8645030Z 2025-01-24T02:43:55.8645030Z 2025-01-24T02:43:55.8664790Z -- Build files have been written to: /Users/ec2-user/runner/_work/pytorch/pytorch/build 2025-01-24T02:43:58.5520400Z [1/4] Generating ATen declarations_yaml 2025-01-24T02:44:00.7655730Z [2/4] Generating ATen headers 2025-01-24T02:44:02.0079370Z [3/4] Generating ATen sources 2025-01-24T02:44:02.2719260Z [1/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u4-prfm.c.o 2025-01-24T02:44:02.2725740Z [2/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u4-prfm.c.o 2025-01-24T02:44:02.2731920Z [3/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u8.c.o 2025-01-24T02:44:02.2756650Z [4/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u8-prfm.c.o 2025-01-24T02:44:02.2817960Z [5/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u4.c.o 2025-01-24T02:44:02.2929300Z [6/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u4.c.o 2025-01-24T02:44:02.3111030Z [7/4997] 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-01-24T02:44:02.3121230Z [8/4997] 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-01-24T02:44:02.3780400Z [9/4997] 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-01-24T02:44:02.3783390Z [10/4997] 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-01-24T02:44:02.3785980Z [11/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-mov-zip-neon.c.o 2025-01-24T02:44:02.3791680Z [12/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u8.c.o 2025-01-24T02:44:02.3809350Z [13/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-dec-zip-neon.c.o 2025-01-24T02:44:02.3815220Z [14/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-multi-zip-neon.c.o 2025-01-24T02:44:02.4554690Z [15/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-switch-zip-neon.c.o 2025-01-24T02:44:02.4560060Z [16/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u8-prfm.c.o 2025-01-24T02:44:02.4693790Z [17/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-dec-zip-neon.c.o 2025-01-24T02:44:02.5026930Z [18/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-dec-zip-neon.c.o 2025-01-24T02:44:02.5042530Z [19/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-mov-zip-neon.c.o 2025-01-24T02:44:02.5053740Z [20/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-switch-zip-neon.c.o 2025-01-24T02:44:02.5063260Z [21/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-multi-zip-neon.c.o 2025-01-24T02:44:02.5064680Z [22/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-multi-zip-neon.c.o 2025-01-24T02:44:02.5077030Z [23/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-switch-zip-neon.c.o 2025-01-24T02:44:02.5393640Z [24/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-mov-zip-neon.c.o 2025-01-24T02:44:02.5609590Z [25/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-mov-zip-neon.c.o 2025-01-24T02:44:02.5787890Z [26/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-multi-zip-neon.c.o 2025-01-24T02:44:02.5989900Z [27/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-switch-zip-neon.c.o 2025-01-24T02:44:02.6313220Z [28/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-multi-zip-neon.c.o 2025-01-24T02:44:02.6370020Z [29/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-zip-neon.c.o 2025-01-24T02:44:02.6399310Z [30/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-switch-zip-neon.c.o 2025-01-24T02:44:02.6444700Z [31/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-multi-zip-neon.c.o 2025-01-24T02:44:02.6521370Z [32/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-mov-zip-neon.c.o 2025-01-24T02:44:02.6526670Z [33/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-switch-zip-neon.c.o 2025-01-24T02:44:02.6741800Z [34/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neonfp16-u8.c.o 2025-01-24T02:44:02.6844050Z [35/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neonfp16-u8.c.o 2025-01-24T02:44:02.7467220Z [36/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-1x4c8-minmax-neonfma-shland.c.o 2025-01-24T02:44:02.7509450Z [37/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-1x4c8-minmax-neonfma-zip.c.o 2025-01-24T02:44:02.7693950Z [38/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-3x4c8-minmax-neonfma-zip.c.o 2025-01-24T02:44:02.7708920Z [39/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-2x4c8-minmax-neonfma-shland.c.o 2025-01-24T02:44:02.7773570Z [40/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-2x4c8-minmax-neonfma-zip.c.o 2025-01-24T02:44:02.8017820Z [41/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-4x4c8-minmax-neonfma-zip.c.o 2025-01-24T02:44:02.8071480Z [42/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-4x4c8-minmax-neonfma-shland.c.o 2025-01-24T02:44:02.8113030Z [43/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-3x4c8-minmax-neonfma-shland.c.o 2025-01-24T02:44:02.8539990Z [44/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-5x4c8-minmax-neonfma-shland.c.o 2025-01-24T02:44:02.8763140Z [45/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neonfma-acc2.c.o 2025-01-24T02:44:02.8783650Z [46/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neonfma.c.o 2025-01-24T02:44:02.8786910Z [47/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neonfma-acc2.c.o 2025-01-24T02:44:02.8855170Z [48/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-5x4c8-minmax-neonfma-zip.c.o 2025-01-24T02:44:02.8937850Z [49/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neonfma.c.o 2025-01-24T02:44:02.8970420Z [50/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neonfma-acc2.c.o 2025-01-24T02:44:02.9260340Z [51/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neonfma-acc2.c.o 2025-01-24T02:44:02.9599960Z [52/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neonfma.c.o 2025-01-24T02:44:02.9603060Z [53/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neonfma-acc2.c.o 2025-01-24T02:44:02.9986940Z [54/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neonfma.c.o 2025-01-24T02:44:03.0038280Z [55/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neonfma-acc2.c.o 2025-01-24T02:44:03.0074690Z [56/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neonfma.c.o 2025-01-24T02:44:03.0081530Z [57/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neonfma-acc2.c.o 2025-01-24T02:44:03.0212220Z [58/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neonfma.c.o 2025-01-24T02:44:03.0247340Z [59/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neonfma.c.o 2025-01-24T02:44:03.0402540Z [60/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neonfma-acc2.c.o 2025-01-24T02:44:03.0406760Z [61/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neonfma-acc2.c.o 2025-01-24T02:44:03.0740760Z [62/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neonfma-acc2.c.o 2025-01-24T02:44:03.0749950Z [63/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neonfma.c.o 2025-01-24T02:44:03.1408750Z [64/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neonfma.c.o 2025-01-24T02:44:03.1416810Z [65/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neonfma-acc2.c.o 2025-01-24T02:44:03.1433480Z [66/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neonfma-acc2.c.o 2025-01-24T02:44:03.1441850Z [67/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neonfma.c.o 2025-01-24T02:44:03.1480630Z [68/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neonfma-acc2.c.o 2025-01-24T02:44:03.1619220Z [69/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neonfma.c.o 2025-01-24T02:44:03.1725800Z [70/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neonfma.c.o 2025-01-24T02:44:03.1819730Z [71/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neonfma-acc2.c.o 2025-01-24T02:44:03.2202430Z [72/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neonfma.c.o 2025-01-24T02:44:03.2388310Z [73/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neonfma-acc2.c.o 2025-01-24T02:44:03.2744160Z [74/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-01-24T02:44:03.2758540Z [75/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neonfma-acc2.c.o 2025-01-24T02:44:03.2884690Z [76/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neonfma.c.o 2025-01-24T02:44:03.2923210Z [77/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neonfma.c.o 2025-01-24T02:44:03.2926390Z [78/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-01-24T02:44:03.3074440Z [79/4997] 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-01-24T02:44:03.3380050Z [80/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neonfma-dup-ld128.c.o 2025-01-24T02:44:03.3701580Z [81/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-01-24T02:44:03.3896030Z [82/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neonfma-dup-ld64.c.o 2025-01-24T02:44:03.3904000Z [83/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8s4-minmax-neonfma.c.o 2025-01-24T02:44:03.3923020Z [84/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neonfma-dup-ld128.c.o 2025-01-24T02:44:03.4077230Z [85/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neonfma-dup-ld128.c.o 2025-01-24T02:44:03.4092620Z [86/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8s4-minmax-neonfma.c.o 2025-01-24T02:44:03.4097920Z [87/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neonfma-dup-ld64.c.o 2025-01-24T02:44:03.4383910Z [88/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8s4-minmax-neonfma.c.o 2025-01-24T02:44:03.4823210Z [89/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neonfma-dup-ld128.c.o 2025-01-24T02:44:03.4878290Z [90/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neonfma-dup-ld64.c.o 2025-01-24T02:44:03.4968070Z [91/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p4.c.o 2025-01-24T02:44:03.4988920Z [92/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p16.c.o 2025-01-24T02:44:03.5100620Z [93/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neonfma-c4.c.o 2025-01-24T02:44:03.5443610Z [94/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-8x8s4-minmax-neonfma.c.o 2025-01-24T02:44:03.5447530Z [95/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-01-24T02:44:03.5497980Z [96/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-01-24T02:44:03.5584630Z [97/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8s4-minmax-neonfma.c.o 2025-01-24T02:44:03.5587810Z [98/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neonfma-dup-ld128.c.o 2025-01-24T02:44:03.6051670Z [99/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-01-24T02:44:03.6183450Z [100/4997] 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-01-24T02:44:03.6436880Z [101/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neonfma-dup-ld128.c.o 2025-01-24T02:44:03.6450950Z [102/4997] 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-01-24T02:44:03.6519820Z [103/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8s4-minmax-neonfma.c.o 2025-01-24T02:44:03.6828650Z [104/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8s4-minmax-neonfma.c.o 2025-01-24T02:44:03.7036470Z [105/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8s4-minmax-neonfma.c.o 2025-01-24T02:44:03.7083000Z [106/4997] 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-01-24T02:44:03.7160340Z [107/4997] 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-01-24T02:44:03.7351190Z [108/4997] 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-01-24T02:44:03.7389590Z [109/4997] 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-01-24T02:44:03.7606040Z [110/4997] 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-01-24T02:44:03.7707980Z [111/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u4.c.o 2025-01-24T02:44:03.7902650Z [112/4997] 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-01-24T02:44:03.7985200Z [113/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8s4-minmax-neonfma.c.o 2025-01-24T02:44:03.8144300Z [114/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u4.c.o 2025-01-24T02:44:03.8246750Z [115/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u8-acc2.c.o 2025-01-24T02:44:03.8265650Z [116/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u16-acc4.c.o 2025-01-24T02:44:03.8430400Z [117/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma-x2.c.o 2025-01-24T02:44:03.8445980Z [118/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u16-acc2.c.o 2025-01-24T02:44:03.8628360Z [119/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma.c.o 2025-01-24T02:44:03.8972820Z [120/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma-pipelined.c.o 2025-01-24T02:44:03.8976110Z [121/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma.c.o 2025-01-24T02:44:03.8985130Z [122/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma-x2.c.o 2025-01-24T02:44:03.9059990Z [123/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma-pipelined.c.o 2025-01-24T02:44:03.9386950Z [124/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma-pipelined.c.o 2025-01-24T02:44:03.9418110Z [125/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma-x2.c.o 2025-01-24T02:44:03.9513140Z [126/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x1-minmax-neonfma.c.o 2025-01-24T02:44:03.9516340Z [127/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma-x2.c.o 2025-01-24T02:44:03.9861930Z [128/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma.c.o 2025-01-24T02:44:04.0191320Z [129/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u12.c.o 2025-01-24T02:44:04.0199840Z [130/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u8.c.o 2025-01-24T02:44:04.0221220Z [131/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma.c.o 2025-01-24T02:44:04.0224620Z [132/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u4.c.o 2025-01-24T02:44:04.0417830Z [133/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u4.c.o 2025-01-24T02:44:04.0589980Z [134/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u16.c.o 2025-01-24T02:44:04.0599460Z [135/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u12.c.o 2025-01-24T02:44:04.0749060Z [136/4997] 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-01-24T02:44:04.0879030Z [137/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-neonfma-2x.c.o 2025-01-24T02:44:04.1452170Z [138/4997] 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-01-24T02:44:04.1456550Z [139/4997] 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-01-24T02:44:04.1464070Z [140/4997] 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-01-24T02:44:04.1481320Z [141/4997] 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-01-24T02:44:04.1743120Z [142/4997] 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-01-24T02:44:04.1821520Z [143/4997] 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-01-24T02:44:04.2053930Z [144/4997] 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-01-24T02:44:04.2101650Z [145/4997] 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-01-24T02:44:04.2440710Z [146/4997] 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-01-24T02:44:04.2444720Z [147/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c16.c.o 2025-01-24T02:44:04.2453030Z [148/4997] 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-01-24T02:44:04.2677350Z [149/4997] 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-01-24T02:44:04.2930480Z [150/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c64.c.o 2025-01-24T02:44:04.2989760Z [151/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u16.c.o 2025-01-24T02:44:04.3196300Z [152/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u64-acc2.c.o 2025-01-24T02:44:04.3234960Z [153/4997] 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-01-24T02:44:04.3263460Z [154/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u64-acc4.c.o 2025-01-24T02:44:04.3537300Z [155/4997] 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-01-24T02:44:04.3798860Z [156/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld128-u16.c.o 2025-01-24T02:44:04.3897180Z [157/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u8.c.o 2025-01-24T02:44:04.3903440Z [158/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u24.c.o 2025-01-24T02:44:04.3904750Z [159/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld128-u32.c.o 2025-01-24T02:44:04.4340640Z [160/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u8.c.o 2025-01-24T02:44:04.4403100Z [161/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u16.c.o 2025-01-24T02:44:04.4406940Z [162/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u8.c.o 2025-01-24T02:44:04.4461220Z [163/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld128-u16.c.o 2025-01-24T02:44:04.4464520Z [164/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u24.c.o 2025-01-24T02:44:04.4686600Z [165/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld128-u32.c.o 2025-01-24T02:44:04.4968500Z [166/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld64-u8.c.o 2025-01-24T02:44:04.4997240Z [167/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u16.c.o 2025-01-24T02:44:04.5002620Z [168/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld64-u16.c.o 2025-01-24T02:44:04.5003760Z [169/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u8.c.o 2025-01-24T02:44:04.5839840Z [170/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld64-u8.c.o 2025-01-24T02:44:04.5854100Z [171/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld128-u16.c.o 2025-01-24T02:44:04.5908620Z [172/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld64-u16.c.o 2025-01-24T02:44:04.5927330Z [173/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld128-u16.c.o 2025-01-24T02:44:04.6024760Z [174/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-01-24T02:44:04.6220540Z [175/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:04.6469000Z [176/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld128-u16.c.o 2025-01-24T02:44:04.6470420Z [177/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld128-u16.c.o 2025-01-24T02:44:04.6532840Z [178/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld64-u8.c.o 2025-01-24T02:44:04.6835770Z [179/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld64-u8.c.o 2025-01-24T02:44:04.6987380Z [180/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:04.7052290Z [181/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:04.7064340Z [182/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:04.7145580Z [183/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:04.7721860Z [184/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-01-24T02:44:04.7726190Z [185/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:04.7729780Z [186/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:04.7764530Z [187/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-01-24T02:44:04.7992770Z [188/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:04.8213130Z [189/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-01-24T02:44:04.8327220Z [190/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-01-24T02:44:04.8338340Z [191/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:04.8342560Z [192/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:04.9172050Z [193/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:04.9182410Z [194/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-01-24T02:44:04.9196130Z [195/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:04.9211040Z [196/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:04.9224760Z [197/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:04.9341720Z [198/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-01-24T02:44:04.9374240Z [199/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:04.9849770Z [200/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:04.9985580Z [201/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:05.0041960Z [202/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-01-24T02:44:05.0458630Z [203/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:05.0473960Z [204/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-01-24T02:44:05.0710720Z [205/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:05.0732010Z [206/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:05.0740090Z [207/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:05.0759730Z [208/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:05.0768890Z [209/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-rndnu-neon-mul8.c.o 2025-01-24T02:44:05.1371080Z [210/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:05.1389620Z [211/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-rndnu-neon-mul8.c.o 2025-01-24T02:44:05.1796580Z [212/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:05.1877090Z [213/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:05.1891830Z [214/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:05.1910590Z [215/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:05.1961150Z [216/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-rndnu-neon-mul8.c.o 2025-01-24T02:44:05.2185690Z [217/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:05.2319100Z [218/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u8.c.o 2025-01-24T02:44:05.2443910Z [219/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:05.2563530Z [220/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-rndnu-neon-mul8.c.o 2025-01-24T02:44:05.3096700Z [221/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u24.c.o 2025-01-24T02:44:05.3199350Z [222/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u16.c.o 2025-01-24T02:44:05.3264440Z [223/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:05.3265650Z [224/4997] 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-01-24T02:44:05.3272480Z [225/4997] 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-01-24T02:44:05.3415260Z [226/4997] 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-01-24T02:44:05.3527390Z [227/4997] 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-01-24T02:44:05.3940760Z [228/4997] 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-01-24T02:44:05.4160840Z [229/4997] 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-01-24T02:44:05.4283460Z [230/4997] 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-01-24T02:44:05.4453160Z [231/4997] 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-01-24T02:44:05.4454550Z [232/4997] 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-01-24T02:44:05.4473580Z [233/4997] 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-01-24T02:44:05.4483920Z [234/4997] 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-01-24T02:44:05.4495140Z [235/4997] 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-01-24T02:44:05.4630550Z [236/4997] 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-01-24T02:44:05.4910110Z [237/4997] 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-01-24T02:44:05.5159320Z [238/4997] 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-01-24T02:44:05.5510780Z [239/4997] 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-01-24T02:44:05.5602920Z [240/4997] 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-01-24T02:44:05.5686000Z [241/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u64-acc2.c.o 2025-01-24T02:44:05.5820090Z [242/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u16.c.o 2025-01-24T02:44:05.5910660Z [243/4997] 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-01-24T02:44:05.5974580Z [244/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u64.c.o 2025-01-24T02:44:05.6196100Z [245/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u64-acc4.c.o 2025-01-24T02:44:05.6370360Z [246/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u8.c.o 2025-01-24T02:44:05.6414390Z [247/4997] 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-01-24T02:44:05.6605190Z [248/4997] 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-01-24T02:44:05.6610890Z [249/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld128-u16.c.o 2025-01-24T02:44:05.6673860Z [250/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u8.c.o 2025-01-24T02:44:05.6816260Z [251/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld128-u16.c.o 2025-01-24T02:44:05.6876330Z [252/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u8.c.o 2025-01-24T02:44:05.7061300Z [253/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u16.c.o 2025-01-24T02:44:05.7122170Z [254/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u8.c.o 2025-01-24T02:44:05.7626710Z [255/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u16.c.o 2025-01-24T02:44:05.7731830Z [256/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld64-u8.c.o 2025-01-24T02:44:05.7735750Z [257/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld64-u16.c.o 2025-01-24T02:44:05.7868970Z [258/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld128-u16.c.o 2025-01-24T02:44:05.7883780Z [259/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld128-u16.c.o 2025-01-24T02:44:05.7921160Z [260/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld64-u8.c.o 2025-01-24T02:44:05.8266330Z [261/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld64-u8.c.o 2025-01-24T02:44:05.8270020Z [262/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld128-u16.c.o 2025-01-24T02:44:05.8582960Z [263/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld64-u16.c.o 2025-01-24T02:44:05.8656210Z [264/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-4p3x-minmax-neon-c16.c.o 2025-01-24T02:44:05.8861550Z [265/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-2p2x-minmax-neon-c16.c.o 2025-01-24T02:44:05.8972900Z [266/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-mov-zip-neon.c.o 2025-01-24T02:44:05.8978180Z [267/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld128-u16.c.o 2025-01-24T02:44:05.9059200Z [268/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-switch-zip-neon.c.o 2025-01-24T02:44:05.9063280Z [269/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-dec-zip-neon.c.o 2025-01-24T02:44:05.9302960Z [270/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-mov-zip-neon.c.o 2025-01-24T02:44:05.9313480Z [271/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld64-u8.c.o 2025-01-24T02:44:05.9790300Z [272/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-multi-zip-neon.c.o 2025-01-24T02:44:05.9795130Z [273/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-switch-zip-neon.c.o 2025-01-24T02:44:05.9928480Z [274/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-dec-zip-neon.c.o 2025-01-24T02:44:06.0013570Z [275/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-zip-neon.c.o 2025-01-24T02:44:06.0195330Z [276/4997] 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-01-24T02:44:06.0205520Z [277/4997] 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-01-24T02:44:06.0253240Z [278/4997] 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-01-24T02:44:06.0268050Z [279/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-switch-zip-neon.c.o 2025-01-24T02:44:06.0385820Z [280/4997] 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-01-24T02:44:06.0467680Z [281/4997] 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-01-24T02:44:06.1106600Z [282/4997] 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-01-24T02:44:06.1146000Z [283/4997] 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-01-24T02:44:06.1336690Z [284/4997] 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-01-24T02:44:06.1340660Z [285/4997] 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-01-24T02:44:06.1385830Z [286/4997] 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-01-24T02:44:06.1398440Z [287/4997] 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-01-24T02:44:06.1408510Z [288/4997] 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-01-24T02:44:06.1581740Z [289/4997] 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-01-24T02:44:06.1879220Z [290/4997] 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-01-24T02:44:06.2262030Z [291/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-mov-zip-neon.c.o 2025-01-24T02:44:06.2294100Z [292/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-mov-zip-neon.c.o 2025-01-24T02:44:06.2303310Z [293/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-dec-zip-neon.c.o 2025-01-24T02:44:06.2343550Z [294/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-multi-zip-neon.c.o 2025-01-24T02:44:06.2471520Z [295/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-dec-zip-neon.c.o 2025-01-24T02:44:06.2687360Z [296/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-switch-zip-neon.c.o 2025-01-24T02:44:06.2698400Z [297/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-multi-zip-neon.c.o 2025-01-24T02:44:06.2889670Z [298/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-dec-zip-neon.c.o 2025-01-24T02:44:06.3003830Z [299/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-switch-zip-neon.c.o 2025-01-24T02:44:06.3350150Z [300/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-mov-zip-neon.c.o 2025-01-24T02:44:06.3387680Z [301/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-switch-zip-neon.c.o 2025-01-24T02:44:06.3425440Z [302/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-zip-neon.c.o 2025-01-24T02:44:06.3444770Z [303/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-mov-zip-neon.c.o 2025-01-24T02:44:06.3795160Z [304/4997] 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-01-24T02:44:06.3813140Z [305/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-switch-zip-neon.c.o 2025-01-24T02:44:06.3819020Z [306/4997] 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-01-24T02:44:06.3978130Z [307/4997] 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-01-24T02:44:06.3979610Z [308/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-gio-neon-u2.c.o 2025-01-24T02:44:06.4388250Z [309/4997] 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-01-24T02:44:06.4454910Z [310/4997] 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-01-24T02:44:06.4633210Z [311/4997] 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-01-24T02:44:06.4698070Z [312/4997] 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-01-24T02:44:06.4927120Z [313/4997] 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-01-24T02:44:06.4949140Z [314/4997] 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-01-24T02:44:06.4991420Z [315/4997] 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-01-24T02:44:06.5315970Z [316/4997] 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-01-24T02:44:06.5556160Z [317/4997] 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-01-24T02:44:06.5568860Z [318/4997] 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-01-24T02:44:06.5632330Z [319/4997] 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-01-24T02:44:06.5667970Z [320/4997] 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-01-24T02:44:06.5793060Z [321/4997] 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-01-24T02:44:06.6150910Z [322/4997] 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-01-24T02:44:06.6287140Z [323/4997] 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-01-24T02:44:06.6336750Z [324/4997] 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-01-24T02:44:06.6346870Z [325/4997] 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-01-24T02:44:06.6844380Z [326/4997] 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-01-24T02:44:06.6868610Z [327/4997] 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-01-24T02:44:06.6875600Z [328/4997] 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-01-24T02:44:06.7065790Z [329/4997] 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-01-24T02:44:06.7158810Z [330/4997] 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-01-24T02:44:06.7225770Z [331/4997] 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-01-24T02:44:06.7616160Z [332/4997] 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-01-24T02:44:06.7639140Z [333/4997] 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-01-24T02:44:06.7661770Z [334/4997] 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-01-24T02:44:06.7693150Z [335/4997] 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-01-24T02:44:06.8186350Z [336/4997] 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-01-24T02:44:06.8242150Z [337/4997] 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-01-24T02:44:06.8260750Z [338/4997] 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-01-24T02:44:06.8274110Z [339/4997] 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-01-24T02:44:06.8577730Z [340/4997] 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-01-24T02:44:06.8738840Z [341/4997] 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-01-24T02:44:06.8893510Z [342/4997] 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-01-24T02:44:06.9183850Z [343/4997] 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-01-24T02:44:06.9242570Z [344/4997] 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-01-24T02:44:06.9394020Z [345/4997] 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-01-24T02:44:06.9466350Z [346/4997] 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-01-24T02:44:06.9554270Z [347/4997] 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-01-24T02:44:06.9949280Z [348/4997] 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-01-24T02:44:06.9967970Z [349/4997] 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-01-24T02:44:06.9999620Z [350/4997] 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-01-24T02:44:07.0422420Z [351/4997] 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-01-24T02:44:07.0539990Z [352/4997] 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-01-24T02:44:07.0552320Z [353/4997] 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-01-24T02:44:07.0567140Z [354/4997] 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-01-24T02:44:07.0572310Z [355/4997] 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-01-24T02:44:07.0590100Z [356/4997] 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-01-24T02:44:07.1130020Z [357/4997] 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-01-24T02:44:07.1220820Z [358/4997] 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-01-24T02:44:07.1637950Z [359/4997] 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-01-24T02:44:07.1639370Z [360/4997] 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-01-24T02:44:07.1691510Z [361/4997] 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-01-24T02:44:07.1707940Z [362/4997] 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-01-24T02:44:07.1717180Z [363/4997] 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-01-24T02:44:07.1774470Z [364/4997] 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-01-24T02:44:07.2291070Z [365/4997] 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-01-24T02:44:07.2314420Z [366/4997] 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-01-24T02:44:07.2335190Z [367/4997] 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-01-24T02:44:07.2363050Z [368/4997] 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-01-24T02:44:07.2828670Z [369/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-aarch64-neonfma-prfm.c.o 2025-01-24T02:44:07.2952630Z [370/4997] 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-01-24T02:44:07.2957980Z [371/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-aarch64-neonfma.c.o 2025-01-24T02:44:07.3123740Z [372/4997] 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-01-24T02:44:07.3179280Z [373/4997] 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-01-24T02:44:07.3478670Z [374/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-aarch64-neonfma-prfm.c.o 2025-01-24T02:44:07.3491740Z [375/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-aarch64-neonfma.c.o 2025-01-24T02:44:07.3688270Z [376/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-aarch64-neonfma-prfm.c.o 2025-01-24T02:44:07.3719010Z [377/4997] 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-01-24T02:44:07.3964710Z [378/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-aarch64-neonfma.c.o 2025-01-24T02:44:07.4090380Z [379/4997] 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-01-24T02:44:07.4261100Z [380/4997] 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-01-24T02:44:07.4578270Z [381/4997] 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-01-24T02:44:07.4613170Z [382/4997] 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-01-24T02:44:07.4738740Z [383/4997] 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-01-24T02:44:07.4766210Z [384/4997] 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-01-24T02:44:07.4869780Z [385/4997] 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-01-24T02:44:07.5188120Z [386/4997] 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-01-24T02:44:07.5260390Z [387/4997] 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-01-24T02:44:07.5266850Z [388/4997] 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-01-24T02:44:07.5458500Z [389/4997] 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-01-24T02:44:07.5489140Z [390/4997] 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-01-24T02:44:07.5885360Z [391/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x2-minmax-aarch64-neonfma.c.o 2025-01-24T02:44:07.5914380Z [392/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-aarch64-neonfma.c.o 2025-01-24T02:44:07.5930810Z [393/4997] 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-01-24T02:44:07.6065080Z [394/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x4-minmax-aarch64-neonfma.c.o 2025-01-24T02:44:07.6101230Z [395/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-aarch64-neonfma.c.o 2025-01-24T02:44:07.6441780Z [396/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x2-minmax-aarch64-neonfma.c.o 2025-01-24T02:44:07.6470460Z [397/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x2-minmax-aarch64-neonfma.c.o 2025-01-24T02:44:07.6693100Z [398/4997] 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-01-24T02:44:07.6876060Z [399/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x4-minmax-aarch64-neonfma.c.o 2025-01-24T02:44:07.7112950Z [400/4997] 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-01-24T02:44:07.7128660Z [401/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x4-minmax-aarch64-neonfma.c.o 2025-01-24T02:44:07.7276440Z [402/4997] 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-01-24T02:44:07.7301590Z [403/4997] 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-01-24T02:44:07.7532180Z [404/4997] 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-01-24T02:44:07.7536440Z [405/4997] 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-01-24T02:44:07.7560440Z [406/4997] 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-01-24T02:44:07.7777720Z [407/4997] 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-01-24T02:44:07.8079390Z [408/4997] 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-01-24T02:44:07.8268920Z [409/4997] 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-01-24T02:44:07.8372730Z [410/4997] 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-01-24T02:44:07.8426340Z [411/4997] 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-01-24T02:44:07.8479620Z [412/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u1.c.o 2025-01-24T02:44:07.8636640Z [413/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x16-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:07.8798260Z [414/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u2.c.o 2025-01-24T02:44:07.8958130Z [415/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u4.c.o 2025-01-24T02:44:07.9166360Z [416/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u2.c.o 2025-01-24T02:44:07.9236780Z [417/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u1.c.o 2025-01-24T02:44:07.9507580Z [418/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x8-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:07.9544490Z [419/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u4.c.o 2025-01-24T02:44:07.9562850Z [420/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u2.c.o 2025-01-24T02:44:07.9729510Z [421/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u4.c.o 2025-01-24T02:44:07.9753210Z [422/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u1.c.o 2025-01-24T02:44:07.9853510Z [423/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u1.c.o 2025-01-24T02:44:08.0106450Z [424/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u1.c.o 2025-01-24T02:44:08.0291950Z [425/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u2.c.o 2025-01-24T02:44:08.0314560Z [426/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u4.c.o 2025-01-24T02:44:08.0398330Z [427/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u4.c.o 2025-01-24T02:44:08.0746920Z [428/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u1.c.o 2025-01-24T02:44:08.0805920Z [429/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u1.c.o 2025-01-24T02:44:08.0828600Z [430/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u2.c.o 2025-01-24T02:44:08.0845650Z [431/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u4.c.o 2025-01-24T02:44:08.0940990Z [432/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u2.c.o 2025-01-24T02:44:08.1172960Z [433/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u4.c.o 2025-01-24T02:44:08.1323760Z [434/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u1.c.o 2025-01-24T02:44:08.1547060Z [435/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u2.c.o 2025-01-24T02:44:08.1668640Z [436/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u4.c.o 2025-01-24T02:44:08.1772140Z [437/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u1.c.o 2025-01-24T02:44:08.2082710Z [438/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u4.c.o 2025-01-24T02:44:08.2087220Z [439/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u2.c.o 2025-01-24T02:44:08.2156610Z [440/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u2.c.o 2025-01-24T02:44:08.2574910Z [441/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u1.c.o 2025-01-24T02:44:08.2665610Z [442/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u1.c.o 2025-01-24T02:44:08.2666850Z [443/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u4.c.o 2025-01-24T02:44:08.2677730Z [444/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u4.c.o 2025-01-24T02:44:08.2965470Z [445/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u2.c.o 2025-01-24T02:44:08.3024000Z [446/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u1.c.o 2025-01-24T02:44:08.3241720Z [447/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u1.c.o 2025-01-24T02:44:08.3246270Z [448/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u4.c.o 2025-01-24T02:44:08.3458440Z [449/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u1.c.o 2025-01-24T02:44:08.3771350Z [450/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u4.c.o 2025-01-24T02:44:08.3786970Z [451/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u2.c.o 2025-01-24T02:44:08.3802950Z [452/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u4.c.o 2025-01-24T02:44:08.3856240Z [453/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u1.c.o 2025-01-24T02:44:08.4251870Z [454/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u4.c.o 2025-01-24T02:44:08.4259730Z [455/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u1.c.o 2025-01-24T02:44:08.4303280Z [456/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u2.c.o 2025-01-24T02:44:08.4575070Z [457/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u2.c.o 2025-01-24T02:44:08.4673610Z [458/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u4.c.o 2025-01-24T02:44:08.4834390Z [459/4997] 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-01-24T02:44:08.4923400Z [460/4997] 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-01-24T02:44:08.4945520Z [461/4997] 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-01-24T02:44:08.5400370Z [462/4997] 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-01-24T02:44:08.5466310Z [463/4997] 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-01-24T02:44:08.5515600Z [464/4997] 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-01-24T02:44:08.5560250Z [465/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x16-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:08.5901420Z [466/4997] 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-01-24T02:44:08.5941710Z [467/4997] 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-01-24T02:44:08.5970040Z [468/4997] 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-01-24T02:44:08.6037620Z [469/4997] 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-01-24T02:44:08.6047720Z [470/4997] 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-01-24T02:44:08.6064360Z [471/4997] 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-01-24T02:44:08.6637220Z [472/4997] 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-01-24T02:44:08.6685900Z [473/4997] 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-01-24T02:44:08.6857310Z [474/4997] 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-01-24T02:44:08.6985820Z [475/4997] 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-01-24T02:44:08.7177970Z [476/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u12.c.o 2025-01-24T02:44:08.7191320Z [477/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u4.c.o 2025-01-24T02:44:08.7208610Z [478/4997] 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-01-24T02:44:08.7477790Z [479/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u8.c.o 2025-01-24T02:44:08.7652470Z [480/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u4.c.o 2025-01-24T02:44:08.7781610Z [481/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u16.c.o 2025-01-24T02:44:08.7901560Z [482/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u8.c.o 2025-01-24T02:44:08.8013360Z [483/4997] 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-01-24T02:44:08.8085230Z [484/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u16.c.o 2025-01-24T02:44:08.8248610Z [485/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u4.c.o 2025-01-24T02:44:08.8499260Z [486/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u12.c.o 2025-01-24T02:44:08.8544440Z [487/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u16.c.o 2025-01-24T02:44:08.8556290Z [488/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u12.c.o 2025-01-24T02:44:08.8560600Z [489/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u8.c.o 2025-01-24T02:44:08.9071100Z [490/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u16.c.o 2025-01-24T02:44:08.9075530Z [491/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u8.c.o 2025-01-24T02:44:08.9205030Z [492/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neonv8-u4.c.o 2025-01-24T02:44:08.9369250Z [493/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u24.c.o 2025-01-24T02:44:08.9444740Z [494/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u8.c.o 2025-01-24T02:44:08.9605840Z [495/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u16.c.o 2025-01-24T02:44:08.9692160Z [496/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u24.c.o 2025-01-24T02:44:08.9941660Z [497/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neonv8-u4.c.o 2025-01-24T02:44:09.0111910Z [498/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neonv8-u4.c.o 2025-01-24T02:44:09.0116500Z [499/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:09.0381920Z [500/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neonv8-u4.c.o 2025-01-24T02:44:09.0463750Z [501/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:09.0529490Z [502/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:09.0558370Z [503/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:09.1029050Z [504/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:09.1034260Z [505/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:09.1040060Z [506/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:09.1115410Z [507/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:09.1237930Z [508/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:09.1600500Z [509/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:09.1707060Z [510/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:09.1828460Z [511/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:09.2151090Z [512/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:09.2204300Z [513/4997] 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-01-24T02:44:09.2209770Z [514/4997] 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-01-24T02:44:09.2216060Z [515/4997] 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-01-24T02:44:09.2426830Z [516/4997] 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-01-24T02:44:09.2628380Z [517/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:09.2909250Z [518/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:09.2959740Z [519/4997] 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-01-24T02:44:09.3092160Z [520/4997] 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-01-24T02:44:09.3380120Z [521/4997] 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-01-24T02:44:09.3382640Z [522/4997] 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-01-24T02:44:09.3426350Z [523/4997] 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-01-24T02:44:09.3627330Z [524/4997] 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-01-24T02:44:09.3927460Z [525/4997] 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-01-24T02:44:09.3937070Z [526/4997] 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-01-24T02:44:09.3941320Z [527/4997] 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-01-24T02:44:09.4116370Z [528/4997] 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-01-24T02:44:09.4452150Z [529/4997] 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-01-24T02:44:09.4466040Z [530/4997] 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-01-24T02:44:09.4541540Z [531/4997] 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-01-24T02:44:09.4883500Z [532/4997] 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-01-24T02:44:09.5049130Z [533/4997] 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-01-24T02:44:09.5064280Z [534/4997] 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-01-24T02:44:09.5075880Z [535/4997] 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-01-24T02:44:09.5265250Z [536/4997] 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-01-24T02:44:09.5490080Z [537/4997] 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-01-24T02:44:09.5653620Z [538/4997] 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-01-24T02:44:09.5692190Z [539/4997] 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-01-24T02:44:09.5703940Z [540/4997] 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-01-24T02:44:09.6115970Z [541/4997] 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-01-24T02:44:09.6159240Z [542/4997] 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-01-24T02:44:09.6174010Z [543/4997] 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-01-24T02:44:09.6619050Z [544/4997] 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-01-24T02:44:09.6671290Z [545/4997] 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-01-24T02:44:09.6675560Z [546/4997] 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-01-24T02:44:09.6972260Z [547/4997] 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-01-24T02:44:09.6992170Z [548/4997] 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-01-24T02:44:09.7041500Z [549/4997] 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-01-24T02:44:09.7311040Z [550/4997] 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-01-24T02:44:09.7545420Z [551/4997] 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-01-24T02:44:09.7583280Z [552/4997] 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-01-24T02:44:09.7656280Z [553/4997] 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-01-24T02:44:09.7960380Z [554/4997] 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-01-24T02:44:09.7963610Z [555/4997] 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-01-24T02:44:09.8165590Z [556/4997] 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-01-24T02:44:09.8242290Z [557/4997] 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-01-24T02:44:09.8503870Z [558/4997] 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-01-24T02:44:09.8678130Z [559/4997] 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-01-24T02:44:09.8822920Z [560/4997] 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-01-24T02:44:09.8923650Z [561/4997] 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-01-24T02:44:09.9127050Z [562/4997] 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-01-24T02:44:09.9302040Z [563/4997] 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-01-24T02:44:09.9339540Z [564/4997] 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-01-24T02:44:09.9537260Z [565/4997] 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-01-24T02:44:09.9616530Z [566/4997] 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-01-24T02:44:09.9851230Z [567/4997] 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-01-24T02:44:10.0045540Z [568/4997] 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-01-24T02:44:10.0050270Z [569/4997] 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-01-24T02:44:10.0536170Z [570/4997] 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-01-24T02:44:10.0737330Z [571/4997] 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-01-24T02:44:10.0841650Z [572/4997] 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-01-24T02:44:10.0906380Z [573/4997] 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-01-24T02:44:10.0992230Z [574/4997] 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-01-24T02:44:10.1063830Z [575/4997] 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-01-24T02:44:10.1404490Z [576/4997] 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-01-24T02:44:10.1439160Z [577/4997] 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-01-24T02:44:10.1462530Z [578/4997] 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-01-24T02:44:10.1792850Z [579/4997] 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-01-24T02:44:10.1828640Z [580/4997] 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-01-24T02:44:10.2098530Z [581/4997] 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-01-24T02:44:10.2236780Z [582/4997] 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-01-24T02:44:10.2352030Z [583/4997] 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-01-24T02:44:10.2477680Z [584/4997] 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-01-24T02:44:10.2628970Z [585/4997] 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-01-24T02:44:10.2870450Z [586/4997] 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-01-24T02:44:10.2931950Z [587/4997] 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-01-24T02:44:10.3091970Z [588/4997] 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-01-24T02:44:10.3098430Z [589/4997] 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-01-24T02:44:10.3238070Z [590/4997] 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-01-24T02:44:10.3665700Z [591/4997] 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-01-24T02:44:10.3677370Z [592/4997] 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-01-24T02:44:10.3725880Z [593/4997] 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-01-24T02:44:10.3898650Z [594/4997] 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-01-24T02:44:10.4127030Z [595/4997] 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-01-24T02:44:10.4241630Z [596/4997] 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-01-24T02:44:10.4270270Z [597/4997] 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-01-24T02:44:10.4582990Z [598/4997] 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-01-24T02:44:10.4764100Z [599/4997] 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-01-24T02:44:10.4767670Z [600/4997] 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-01-24T02:44:10.4947040Z [601/4997] 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-01-24T02:44:10.5237400Z [602/4997] 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-01-24T02:44:10.5276180Z [603/4997] 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-01-24T02:44:10.5432680Z [604/4997] 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-01-24T02:44:10.5529870Z [605/4997] 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-01-24T02:44:10.5558700Z [606/4997] 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-01-24T02:44:10.5800910Z [607/4997] 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-01-24T02:44:10.6136060Z [608/4997] 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-01-24T02:44:10.6145390Z [609/4997] 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-01-24T02:44:10.6180130Z [610/4997] 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-01-24T02:44:10.6622270Z [611/4997] 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-01-24T02:44:10.6645940Z [612/4997] 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-01-24T02:44:10.6660390Z [613/4997] 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-01-24T02:44:10.6662650Z [614/4997] 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-01-24T02:44:10.6679960Z [615/4997] 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-01-24T02:44:10.7242700Z [616/4997] 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-01-24T02:44:10.7252050Z [617/4997] 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-01-24T02:44:10.7257290Z [618/4997] 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-01-24T02:44:10.7457690Z [619/4997] 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-01-24T02:44:10.7787750Z [620/4997] 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-01-24T02:44:10.7901740Z [621/4997] 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-01-24T02:44:10.7911430Z [622/4997] 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-01-24T02:44:10.7916790Z [623/4997] 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-01-24T02:44:10.7936920Z [624/4997] 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-01-24T02:44:10.7994250Z [625/4997] 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-01-24T02:44:10.8530630Z [626/4997] 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-01-24T02:44:10.8536700Z [627/4997] 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-01-24T02:44:10.8632280Z [628/4997] 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-01-24T02:44:10.8721980Z [629/4997] 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-01-24T02:44:10.9118430Z [630/4997] 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-01-24T02:44:10.9247990Z [631/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld128-u16.c.o 2025-01-24T02:44:10.9388520Z [632/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld64-u8.c.o 2025-01-24T02:44:10.9477540Z [633/4997] 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-01-24T02:44:10.9726770Z [634/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld128-u16.c.o 2025-01-24T02:44:10.9765060Z [635/4997] 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-01-24T02:44:10.9811260Z [636/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld64-u8.c.o 2025-01-24T02:44:10.9904780Z [637/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:11.0247370Z [638/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld64-u16.c.o 2025-01-24T02:44:11.0256440Z [639/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld64-u16.c.o 2025-01-24T02:44:11.0557760Z [640/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:11.0659450Z [641/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:11.0761660Z [642/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:11.0771060Z [643/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:11.0836650Z [644/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:11.1149900Z [645/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:11.1317260Z [646/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:11.1483770Z [647/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:11.1703360Z [648/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:11.1706680Z [649/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:11.1723680Z [650/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:11.1750410Z [651/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:11.1786280Z [652/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:11.2373710Z [653/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2025-01-24T02:44:11.2525950Z [654/4997] 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-01-24T02:44:11.2591160Z [655/4997] 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-01-24T02:44:11.2675930Z [656/4997] 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-01-24T02:44:11.2822520Z [657/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld64-u8.c.o 2025-01-24T02:44:11.2970160Z [658/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld64-u16.c.o 2025-01-24T02:44:11.3106750Z [659/4997] 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-01-24T02:44:11.3140380Z [660/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld64-u16.c.o 2025-01-24T02:44:11.3163550Z [661/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld64-u8.c.o 2025-01-24T02:44:11.3447290Z [662/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld128-u16.c.o 2025-01-24T02:44:11.3632570Z [663/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld128-u16.c.o 2025-01-24T02:44:11.3652400Z [664/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-aarch64-neon-u4.c.o 2025-01-24T02:44:11.3861750Z [665/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-aarch64-neon-u4.c.o 2025-01-24T02:44:11.4042430Z [666/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u16.c.o 2025-01-24T02:44:11.4161050Z [667/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u32.c.o 2025-01-24T02:44:11.4192610Z [668/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u48.c.o 2025-01-24T02:44:11.4193770Z [669/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u8.c.o 2025-01-24T02:44:11.4340570Z [670/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-aarch64-neon-u4.c.o 2025-01-24T02:44:11.4697000Z [671/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u16.c.o 2025-01-24T02:44:11.4879930Z [672/4997] 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-01-24T02:44:11.4975610Z [673/4997] 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-01-24T02:44:11.4996410Z [674/4997] 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-01-24T02:44:11.5077580Z [675/4997] 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-01-24T02:44:11.5080720Z [676/4997] 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-01-24T02:44:11.5474010Z [677/4997] 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-01-24T02:44:11.5494810Z [678/4997] 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-01-24T02:44:11.5526360Z [679/4997] 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-01-24T02:44:11.6014950Z [680/4997] 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-01-24T02:44:11.6039580Z [681/4997] 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-01-24T02:44:11.6082930Z [682/4997] 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-01-24T02:44:11.6107340Z [683/4997] 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-01-24T02:44:11.6111950Z [684/4997] 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-01-24T02:44:11.6517360Z [685/4997] 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-01-24T02:44:11.6655010Z [686/4997] 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-01-24T02:44:11.6660980Z [687/4997] 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-01-24T02:44:11.6698450Z [688/4997] 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-01-24T02:44:11.6766050Z [689/4997] 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-01-24T02:44:11.7264160Z [690/4997] 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-01-24T02:44:11.7276570Z [691/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith-x2.c.o 2025-01-24T02:44:11.7507960Z [692/4997] 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-01-24T02:44:11.7675890Z [693/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith.c.o 2025-01-24T02:44:11.7715900Z [694/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith.c.o 2025-01-24T02:44:11.7890530Z [695/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith-pipelined.c.o 2025-01-24T02:44:11.7907500Z [696/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith-x2.c.o 2025-01-24T02:44:11.7917370Z [697/4997] 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-01-24T02:44:11.7928130Z [698/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith-pipelined.c.o 2025-01-24T02:44:11.8329840Z [699/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith-x2.c.o 2025-01-24T02:44:11.8505880Z [700/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith-x2.c.o 2025-01-24T02:44:11.8511460Z [701/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith.c.o 2025-01-24T02:44:11.8715590Z [702/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-neonfp16arith-u8.c.o 2025-01-24T02:44:11.8993410Z [703/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-neonfp16arith-u8.c.o 2025-01-24T02:44:11.9000300Z [704/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-neonfp16arith-u8.c.o 2025-01-24T02:44:11.9050670Z [705/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith.c.o 2025-01-24T02:44:11.9058330Z [706/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-neonfp16arith-u8.c.o 2025-01-24T02:44:11.9331130Z [707/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-neonfp16arith-u8.c.o 2025-01-24T02:44:11.9547030Z [708/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-neonfp16arith-u8.c.o 2025-01-24T02:44:11.9677030Z [709/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vprelu-neonfp16arith-u8.c.o 2025-01-24T02:44:11.9770920Z [710/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vpreluc-neonfp16arith-u8.c.o 2025-01-24T02:44:11.9817360Z [711/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-neonfp16arith-u8.c.o 2025-01-24T02:44:12.0159220Z [712/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrpreluc-neonfp16arith-u8.c.o 2025-01-24T02:44:12.0213730Z [713/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-neonfp16arith-u8.c.o 2025-01-24T02:44:12.0303690Z [714/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-neonfp16arith-u8.c.o 2025-01-24T02:44:12.0307300Z [715/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-neonfp16arith-u8.c.o 2025-01-24T02:44:12.0446280Z [716/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-neonfp16arith-u8.c.o 2025-01-24T02:44:12.0793350Z [717/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-velu/gen/f16-velu-neonfp16arith-rr1-p3-u8.c.o 2025-01-24T02:44:12.0804000Z [718/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-neonfp16arith-u8.c.o 2025-01-24T02:44:12.1029780Z [719/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u8.c.o 2025-01-24T02:44:12.1255410Z [720/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vclamp/gen/f16-vclamp-neonfp16arith-u8.c.o 2025-01-24T02:44:12.1314950Z [721/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c16-minmax-neonfp16arith-2x.c.o 2025-01-24T02:44:12.1363260Z [722/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-neonfp16arith-u8.c.o 2025-01-24T02:44:12.1387940Z [723/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vlrelu/gen/f16-vlrelu-neonfp16arith-u8.c.o 2025-01-24T02:44:12.1399200Z [724/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vhswish/gen/f16-vhswish-neonfp16arith-u8.c.o 2025-01-24T02:44:12.1412760Z [725/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u32.c.o 2025-01-24T02:44:12.1555560Z [726/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndd-neonfp16arith-u8.c.o 2025-01-24T02:44:12.1885040Z [727/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u32.c.o 2025-01-24T02:44:12.1912850Z [728/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndne-neonfp16arith-u8.c.o 2025-01-24T02:44:12.2236150Z [729/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndu-neonfp16arith-u8.c.o 2025-01-24T02:44:12.2505440Z [730/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndz-neonfp16arith-u8.c.o 2025-01-24T02:44:12.2692280Z [731/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u8.c.o 2025-01-24T02:44:12.2696380Z [732/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u8.c.o 2025-01-24T02:44:12.2700830Z [733/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u24.c.o 2025-01-24T02:44:12.2730520Z [734/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u8.c.o 2025-01-24T02:44:12.2745170Z [735/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u24.c.o 2025-01-24T02:44:12.2767350Z [736/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u16.c.o 2025-01-24T02:44:12.3201490Z [737/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u32.c.o 2025-01-24T02:44:12.3238510Z [738/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u16.c.o 2025-01-24T02:44:12.3815670Z [739/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u32.c.o 2025-01-24T02:44:12.3826370Z [740/4997] 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-01-24T02:44:12.3858470Z [741/4997] 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-01-24T02:44:12.3872260Z [742/4997] 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-01-24T02:44:12.3891970Z [743/4997] 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-01-24T02:44:12.3898920Z [744/4997] 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-01-24T02:44:12.4212200Z [745/4997] 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-01-24T02:44:12.4390010Z [746/4997] 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-01-24T02:44:12.4607750Z [747/4997] 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-01-24T02:44:12.4705980Z [748/4997] 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-01-24T02:44:12.4769560Z [749/4997] 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-01-24T02:44:12.4905490Z [750/4997] 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-01-24T02:44:12.4907150Z [751/4997] 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-01-24T02:44:12.5064340Z [752/4997] 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-01-24T02:44:12.5066410Z [753/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vneg-neonfp16arith-u8.c.o 2025-01-24T02:44:12.5069930Z [754/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vabs-neonfp16arith-u8.c.o 2025-01-24T02:44:12.5072700Z [755/4997] 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-01-24T02:44:12.5708310Z [756/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vsqr-neonfp16arith-u8.c.o 2025-01-24T02:44:12.6099370Z [757/4997] 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-01-24T02:44:12.6164540Z [758/4997] 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-01-24T02:44:12.6251930Z [759/4997] 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-01-24T02:44:12.6335260Z [760/4997] 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-01-24T02:44:12.6530530Z [761/4997] 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-01-24T02:44:12.6569910Z [762/4997] 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-01-24T02:44:12.6611580Z [763/4997] 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-01-24T02:44:12.6888520Z [764/4997] 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-01-24T02:44:12.7207010Z [765/4997] 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-01-24T02:44:12.7242510Z [766/4997] 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-01-24T02:44:12.7514490Z [767/4997] 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-01-24T02:44:12.7628700Z [768/4997] 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-01-24T02:44:12.7689280Z [769/4997] 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-01-24T02:44:12.7756650Z [770/4997] 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-01-24T02:44:12.7849910Z [771/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u8.c.o 2025-01-24T02:44:12.7868210Z [772/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u16.c.o 2025-01-24T02:44:12.7876720Z [773/4997] 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-01-24T02:44:12.8229570Z [774/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u24.c.o 2025-01-24T02:44:12.8238060Z [775/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-aarch64-neonfp16arith-u16.c.o 2025-01-24T02:44:12.8780110Z [776/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-aarch64-neonfp16arith-u16.c.o 2025-01-24T02:44:12.8852460Z [777/4997] 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-01-24T02:44:12.8916570Z [778/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-aarch64-neonfp16arith-u16.c.o 2025-01-24T02:44:12.8982230Z [779/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u16.c.o 2025-01-24T02:44:12.9034030Z [780/4997] 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-01-24T02:44:12.9040700Z [781/4997] 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-01-24T02:44:12.9106650Z [782/4997] 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-01-24T02:44:12.9240420Z [783/4997] 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-01-24T02:44:12.9537220Z [784/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u32.c.o 2025-01-24T02:44:12.9881560Z [785/4997] 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-01-24T02:44:12.9951040Z [786/4997] 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-01-24T02:44:13.0084820Z [787/4997] 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-01-24T02:44:13.0428890Z [788/4997] 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-01-24T02:44:13.0465360Z [789/4997] 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-01-24T02:44:13.0476410Z [790/4997] 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-01-24T02:44:13.0482490Z [791/4997] 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-01-24T02:44:13.0830950Z [792/4997] 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-01-24T02:44:13.0886180Z [793/4997] 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-01-24T02:44:13.1145960Z [794/4997] 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-01-24T02:44:13.1308700Z [795/4997] 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-01-24T02:44:13.1507850Z [796/4997] 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-01-24T02:44:13.1586540Z [797/4997] 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-01-24T02:44:13.1840170Z [798/4997] 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-01-24T02:44:13.1862480Z [799/4997] 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-01-24T02:44:13.2031440Z [800/4997] 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-01-24T02:44:13.2036610Z [801/4997] 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-01-24T02:44:13.2055160Z [802/4997] 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-01-24T02:44:13.2727470Z [803/4997] 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-01-24T02:44:13.2820560Z [804/4997] 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-01-24T02:44:13.2923880Z [805/4997] 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-01-24T02:44:13.2928030Z [806/4997] 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-01-24T02:44:13.2992180Z [807/4997] 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-01-24T02:44:13.3032150Z [808/4997] 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-01-24T02:44:13.3184050Z [809/4997] 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-01-24T02:44:13.3499360Z [810/4997] 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-01-24T02:44:13.3603860Z [811/4997] 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-01-24T02:44:13.3606670Z [812/4997] 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-01-24T02:44:13.4103380Z [813/4997] 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-01-24T02:44:13.4170760Z [814/4997] 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-01-24T02:44:13.4182050Z [815/4997] 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-01-24T02:44:13.4272240Z [816/4997] 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-01-24T02:44:13.4452740Z [817/4997] 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-01-24T02:44:13.4707200Z [818/4997] 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-01-24T02:44:13.4737230Z [819/4997] 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-01-24T02:44:13.4923490Z [820/4997] 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-01-24T02:44:13.5167710Z [821/4997] 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-01-24T02:44:13.5176760Z [822/4997] 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-01-24T02:44:13.5225430Z [823/4997] 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-01-24T02:44:13.5304150Z [824/4997] 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-01-24T02:44:13.5386590Z [825/4997] 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-01-24T02:44:13.5646490Z [826/4997] 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-01-24T02:44:13.5977170Z [827/4997] 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-01-24T02:44:13.5981550Z [828/4997] 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-01-24T02:44:13.6439160Z [829/4997] 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-01-24T02:44:13.6541030Z [830/4997] 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-01-24T02:44:13.6546450Z [831/4997] 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-01-24T02:44:13.6557790Z [832/4997] 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-01-24T02:44:13.6566500Z [833/4997] 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-01-24T02:44:13.6744170Z [834/4997] 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-01-24T02:44:13.6823280Z [835/4997] 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-01-24T02:44:13.7194270Z [836/4997] 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-01-24T02:44:13.7449960Z [837/4997] 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-01-24T02:44:13.7580270Z [838/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u16.c.o 2025-01-24T02:44:13.7582700Z [839/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u64-acc4.c.o 2025-01-24T02:44:13.7593690Z [840/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u64-acc2.c.o 2025-01-24T02:44:13.7854340Z [841/4997] 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-01-24T02:44:13.8009870Z [842/4997] 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-01-24T02:44:13.8126170Z [843/4997] 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-01-24T02:44:13.8251030Z [844/4997] 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-01-24T02:44:13.8458860Z [845/4997] 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-01-24T02:44:13.8637640Z [846/4997] 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-01-24T02:44:13.8646380Z [847/4997] 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-01-24T02:44:13.8851900Z [848/4997] 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-01-24T02:44:13.8858330Z [849/4997] 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-01-24T02:44:13.8934570Z [850/4997] 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-01-24T02:44:13.9088980Z [851/4997] 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-01-24T02:44:13.9215110Z [852/4997] 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-01-24T02:44:13.9219990Z [853/4997] 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-01-24T02:44:13.9400890Z [854/4997] 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-01-24T02:44:13.9482210Z [855/4997] 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-01-24T02:44:13.9571620Z [856/4997] 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-01-24T02:44:13.9674810Z [857/4997] 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-01-24T02:44:13.9718620Z [858/4997] 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-01-24T02:44:13.9773960Z [859/4997] 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-01-24T02:44:13.9885010Z [860/4997] 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-01-24T02:44:14.0011620Z [861/4997] 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-01-24T02:44:14.0033620Z [862/4997] 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-01-24T02:44:14.0076080Z [863/4997] 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-01-24T02:44:14.0326370Z [864/4997] 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-01-24T02:44:14.0493520Z [865/4997] 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-01-24T02:44:14.0513170Z [866/4997] 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-01-24T02:44:14.0662400Z [867/4997] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-01-24T02:44:14.0681860Z [868/4997] 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-01-24T02:44:14.0723770Z [869/4997] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-01-24T02:44:14.0907970Z [870/4997] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-01-24T02:44:14.0999310Z [871/4997] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/f32-dwconv-9p4c-minmax-asm-aarch64-neonfma.S.o 2025-01-24T02:44:14.1006660Z [872/4997] 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-01-24T02:44:14.1034540Z [873/4997] 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-01-24T02:44:14.1329200Z [874/4997] 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-01-24T02:44:14.1379590Z [875/4997] 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-01-24T02:44:14.1517420Z [876/4997] 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-01-24T02:44:14.1603890Z [877/4997] 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-01-24T02:44:14.1609940Z [878/4997] 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-01-24T02:44:14.1751540Z [879/4997] 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-01-24T02:44:14.1875480Z [880/4997] 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-01-24T02:44:14.2242120Z [881/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u4.c.o 2025-01-24T02:44:14.2505160Z [882/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u2.c.o 2025-01-24T02:44:14.2669640Z [883/4997] 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-01-24T02:44:14.2824290Z [884/4997] 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-01-24T02:44:14.2946910Z [885/4997] 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-01-24T02:44:14.2984160Z [886/4997] 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-01-24T02:44:14.3006890Z [887/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u1.c.o 2025-01-24T02:44:14.3352200Z [888/4997] 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-01-24T02:44:14.3430180Z [889/4997] 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-01-24T02:44:14.3773050Z [890/4997] 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-01-24T02:44:14.3928620Z [891/4997] 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-01-24T02:44:14.3946510Z [892/4997] 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-01-24T02:44:14.3988850Z [893/4997] 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-01-24T02:44:14.3992060Z [894/4997] 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-01-24T02:44:14.4039090Z [895/4997] 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-01-24T02:44:14.4241750Z [896/4997] 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-01-24T02:44:14.4316860Z [897/4997] 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-01-24T02:44:14.4642150Z [898/4997] 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-01-24T02:44:14.4653280Z [899/4997] 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-01-24T02:44:14.5399770Z [900/4997] 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-01-24T02:44:14.5412880Z [901/4997] 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-01-24T02:44:14.5425700Z [902/4997] 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-01-24T02:44:14.5433740Z [903/4997] 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-01-24T02:44:14.5451710Z [904/4997] 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-01-24T02:44:14.5495880Z [905/4997] 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-01-24T02:44:14.5994830Z [906/4997] 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-01-24T02:44:14.6017240Z [907/4997] 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-01-24T02:44:14.6238870Z [908/4997] 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-01-24T02:44:14.6561050Z [909/4997] 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-01-24T02:44:14.6564810Z [910/4997] 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-01-24T02:44:14.6602220Z [911/4997] 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-01-24T02:44:14.6760040Z [912/4997] 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-01-24T02:44:14.6792120Z [913/4997] 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-01-24T02:44:14.6815390Z [914/4997] 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-01-24T02:44:14.6820050Z [915/4997] 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-01-24T02:44:14.7448510Z [916/4997] 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-01-24T02:44:14.7460920Z [917/4997] 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-01-24T02:44:14.7484250Z [918/4997] 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-01-24T02:44:14.7895840Z [919/4997] 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-01-24T02:44:14.8029620Z [920/4997] 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-01-24T02:44:14.8090000Z [921/4997] 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-01-24T02:44:14.8107940Z [922/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:14.8169740Z [923/4997] 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-01-24T02:44:14.8185600Z [924/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-neonfp16arith.c.o 2025-01-24T02:44:14.8643570Z [925/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:14.8646170Z [926/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:14.8752950Z [927/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:14.9207250Z [928/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-neonfp16arith.c.o 2025-01-24T02:44:14.9249460Z [929/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:14.9253320Z [930/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-neonfp16arith.c.o 2025-01-24T02:44:14.9374430Z [931/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-neonfp16arith.c.o 2025-01-24T02:44:14.9436540Z [932/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:14.9750900Z [933/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l16c8s4r-minmax-neonfp16arith.c.o 2025-01-24T02:44:14.9914610Z [934/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:14.9918680Z [935/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l8c8s4r-minmax-neonfp16arith.c.o 2025-01-24T02:44:15.0105100Z [936/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:15.0108580Z [937/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:15.0448910Z [938/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l32c8s4r-minmax-neonfp16arith.c.o 2025-01-24T02:44:15.0614600Z [939/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l16c8s4r-minmax-neonfp16arith.c.o 2025-01-24T02:44:15.0616280Z [940/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:15.0623180Z [941/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:15.1040440Z [942/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:15.1160540Z [943/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:15.1176460Z [944/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:15.1299020Z [945/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l8c8s4r-minmax-neonfp16arith.c.o 2025-01-24T02:44:15.1319680Z [946/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l8c8s4r-minmax-neonfp16arith.c.o 2025-01-24T02:44:15.1581050Z [947/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l32c8s4r-minmax-neonfp16arith.c.o 2025-01-24T02:44:15.1871340Z [948/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:15.1899450Z [949/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:15.2179230Z [950/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l32c8s4r-minmax-neonfp16arith.c.o 2025-01-24T02:44:15.2253850Z [951/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:15.2356000Z [952/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l16c8s4r-minmax-neonfp16arith.c.o 2025-01-24T02:44:15.2361580Z [953/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:15.2586650Z [954/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-neonfp16arith.c.o 2025-01-24T02:44:15.2733670Z [955/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:15.2751470Z [956/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-neonfp16arith.c.o 2025-01-24T02:44:15.2803620Z [957/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-neonfp16arith.c.o 2025-01-24T02:44:15.3025740Z [958/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-neonfp16arith.c.o 2025-01-24T02:44:15.3352610Z [959/4997] 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-01-24T02:44:15.3382500Z [960/4997] 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-01-24T02:44:15.3570860Z [961/4997] 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-01-24T02:44:15.3575790Z [962/4997] 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-01-24T02:44:15.3841450Z [963/4997] 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-01-24T02:44:15.3976710Z [964/4997] 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-01-24T02:44:15.3980920Z [965/4997] 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-01-24T02:44:15.4019150Z [966/4997] 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-01-24T02:44:15.4232140Z [967/4997] 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-01-24T02:44:15.4563560Z [968/4997] 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-01-24T02:44:15.4802760Z [969/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:15.4806330Z [970/4997] 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-01-24T02:44:15.4836390Z [971/4997] 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-01-24T02:44:15.5192330Z [972/4997] 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-01-24T02:44:15.5217100Z [973/4997] 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-01-24T02:44:15.5359760Z [974/4997] 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-01-24T02:44:15.5486360Z [975/4997] 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-01-24T02:44:15.5522640Z [976/4997] 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-01-24T02:44:15.5772220Z [977/4997] 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-01-24T02:44:15.5846740Z [978/4997] 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-01-24T02:44:15.6162620Z [979/4997] 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-01-24T02:44:15.6227160Z [980/4997] 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-01-24T02:44:15.6374030Z [981/4997] 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-01-24T02:44:15.6524480Z [982/4997] 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-01-24T02:44:15.6683290Z [983/4997] 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-01-24T02:44:15.6736970Z [984/4997] 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-01-24T02:44:15.6935790Z [985/4997] 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-01-24T02:44:15.6950310Z [986/4997] 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-01-24T02:44:15.7008470Z [987/4997] 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-01-24T02:44:15.7459910Z [988/4997] 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-01-24T02:44:15.7525840Z [989/4997] 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-01-24T02:44:15.7536590Z [990/4997] 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-01-24T02:44:15.7601840Z [991/4997] 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-01-24T02:44:15.7828560Z [992/4997] 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-01-24T02:44:15.8077510Z [993/4997] 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-01-24T02:44:15.8089540Z [994/4997] 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-01-24T02:44:15.8334960Z [995/4997] 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-01-24T02:44:15.8390820Z [996/4997] 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-01-24T02:44:15.8464230Z [997/4997] 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-01-24T02:44:15.8722070Z [998/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u16-acc2.c.o 2025-01-24T02:44:15.8757150Z [999/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u4.c.o 2025-01-24T02:44:15.8948970Z [1000/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u8.c.o 2025-01-24T02:44:15.8955050Z [1001/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u24-acc3.c.o 2025-01-24T02:44:15.9183750Z [1002/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u32-acc2.c.o 2025-01-24T02:44:15.9356800Z [1003/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x8-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:15.9543860Z [1004/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:15.9553550Z [1005/4997] 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-01-24T02:44:15.9901780Z [1006/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x8-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:15.9964020Z [1007/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x8-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:16.0268840Z [1008/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x16-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:16.0315700Z [1009/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x8-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:16.0372560Z [1010/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:16.0448780Z [1011/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p4.c.o 2025-01-24T02:44:16.0593080Z [1012/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x16-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:16.0618430Z [1013/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear/gen/f16-ibilinear-neonfp16arith-c16.c.o 2025-01-24T02:44:16.0884790Z [1014/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p16.c.o 2025-01-24T02:44:16.0932310Z [1015/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x8-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:16.1368330Z [1016/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x8-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:16.1383280Z [1017/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u16.c.o 2025-01-24T02:44:16.1399080Z [1018/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-8x8-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:16.1440880Z [1019/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u8.c.o 2025-01-24T02:44:16.1502850Z [1020/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x16-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:16.1755820Z [1021/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u24.c.o 2025-01-24T02:44:16.1974260Z [1022/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-8x16-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:16.2019340Z [1023/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u64.c.o 2025-01-24T02:44:16.2275190Z [1024/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32-acc2.c.o 2025-01-24T02:44:16.2393060Z [1025/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32-acc4.c.o 2025-01-24T02:44:16.2415710Z [1026/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40-acc2.c.o 2025-01-24T02:44:16.2441120Z [1027/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48-acc3.c.o 2025-01-24T02:44:16.2699060Z [1028/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40.c.o 2025-01-24T02:44:16.2715850Z [1029/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48.c.o 2025-01-24T02:44:16.2969490Z [1030/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48-acc2.c.o 2025-01-24T02:44:16.3082960Z [1031/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40-acc5.c.o 2025-01-24T02:44:16.3239460Z [1032/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64-acc2.c.o 2025-01-24T02:44:16.3437720Z [1033/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64.c.o 2025-01-24T02:44:16.3511880Z [1034/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64-acc4.c.o 2025-01-24T02:44:16.3532400Z [1035/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80-acc2.c.o 2025-01-24T02:44:16.3621880Z [1036/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u72.c.o 2025-01-24T02:44:16.3783610Z [1037/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80-acc5.c.o 2025-01-24T02:44:16.4163790Z [1038/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc3.c.o 2025-01-24T02:44:16.4172530Z [1039/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u72-acc3.c.o 2025-01-24T02:44:16.4173960Z [1040/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc2.c.o 2025-01-24T02:44:16.4232230Z [1041/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80.c.o 2025-01-24T02:44:16.4449990Z [1042/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc6.c.o 2025-01-24T02:44:16.4531610Z [1043/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96.c.o 2025-01-24T02:44:16.4798530Z [1044/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u24-acc3.c.o 2025-01-24T02:44:16.4833060Z [1045/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u16-acc2.c.o 2025-01-24T02:44:16.4839370Z [1046/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32-acc2.c.o 2025-01-24T02:44:16.5079290Z [1047/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u8.c.o 2025-01-24T02:44:16.5421170Z [1048/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u16-acc1.c.o 2025-01-24T02:44:16.5437920Z [1049/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24-acc2.c.o 2025-01-24T02:44:16.5441830Z [1050/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u16-acc2.c.o 2025-01-24T02:44:16.5585220Z [1051/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u8.c.o 2025-01-24T02:44:16.5892630Z [1052/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24.c.o 2025-01-24T02:44:16.6008970Z [1053/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32.c.o 2025-01-24T02:44:16.6043160Z [1054/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24-acc3.c.o 2025-01-24T02:44:16.6053320Z [1055/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32-acc4.c.o 2025-01-24T02:44:16.6226790Z [1056/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32-acc2.c.o 2025-01-24T02:44:16.6277300Z [1057/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64-acc2.c.o 2025-01-24T02:44:16.6475500Z [1058/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64-acc4.c.o 2025-01-24T02:44:16.6649990Z [1059/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64.c.o 2025-01-24T02:44:16.6681180Z [1060/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u16-acc1.c.o 2025-01-24T02:44:16.7248940Z [1061/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u16-acc2.c.o 2025-01-24T02:44:16.7349720Z [1062/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24-acc2.c.o 2025-01-24T02:44:16.7457800Z [1063/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24.c.o 2025-01-24T02:44:16.7556240Z [1064/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u8.c.o 2025-01-24T02:44:16.7558690Z [1065/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32.c.o 2025-01-24T02:44:16.7560840Z [1066/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24-acc3.c.o 2025-01-24T02:44:16.7562310Z [1067/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32-acc2.c.o 2025-01-24T02:44:16.7565960Z [1068/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64-acc2.c.o 2025-01-24T02:44:16.8063670Z [1069/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64-acc4.c.o 2025-01-24T02:44:16.8185120Z [1070/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64.c.o 2025-01-24T02:44:16.8427540Z [1071/4997] 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-01-24T02:44:16.8432220Z [1072/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u32-acc4.c.o 2025-01-24T02:44:16.8596760Z [1073/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith-pipelined.c.o 2025-01-24T02:44:16.8663240Z [1074/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u32-acc2.c.o 2025-01-24T02:44:16.8727770Z [1075/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u16-acc2.c.o 2025-01-24T02:44:16.8730650Z [1076/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u24-acc3.c.o 2025-01-24T02:44:16.8920010Z [1077/4997] Building CXX object c10/CMakeFiles/c10.dir/core/AutogradState.cpp.o 2025-01-24T02:44:16.9307500Z [1078/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u8.c.o 2025-01-24T02:44:17.2302950Z [1079/4997] Building CXX object c10/CMakeFiles/c10.dir/core/Allocator.cpp.o 2025-01-24T02:44:17.2333710Z [1080/4997] Building CXX object c10/CMakeFiles/c10.dir/core/Device.cpp.o 2025-01-24T02:44:17.2345930Z [1081/4997] Building CXX object c10/CMakeFiles/c10.dir/core/DeviceType.cpp.o 2025-01-24T02:44:17.2352580Z [1082/4997] Building CXX object c10/CMakeFiles/c10.dir/core/ConstantSymNodeImpl.cpp.o 2025-01-24T02:44:17.2650920Z [1083/4997] Building CXX object c10/CMakeFiles/c10.dir/core/CopyBytes.cpp.o 2025-01-24T02:44:17.2692410Z [1084/4997] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKey.cpp.o 2025-01-24T02:44:17.2699860Z [1085/4997] Building CXX object c10/CMakeFiles/c10.dir/core/CPUAllocator.cpp.o 2025-01-24T02:44:17.2994990Z [1086/4997] Building CXX object c10/CMakeFiles/c10.dir/core/DefaultDtype.cpp.o 2025-01-24T02:44:17.3296310Z [1087/4997] Building CXX object c10/CMakeFiles/c10.dir/core/GradMode.cpp.o 2025-01-24T02:44:17.4733320Z [1088/4997] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKeySet.cpp.o 2025-01-24T02:44:17.4853900Z [1089/4997] Building CXX object c10/CMakeFiles/c10.dir/core/RefcountedDeleter.cpp.o 2025-01-24T02:44:17.4885780Z [1090/4997] Building CXX object c10/CMakeFiles/c10.dir/core/Storage.cpp.o 2025-01-24T02:44:17.4936750Z [1091/4997] Building CXX object c10/CMakeFiles/c10.dir/core/InferenceMode.cpp.o 2025-01-24T02:44:17.5069350Z [1092/4997] Building CXX object c10/CMakeFiles/c10.dir/core/SafePyObject.cpp.o 2025-01-24T02:44:17.5311030Z [1093/4997] Building CXX object c10/CMakeFiles/c10.dir/core/ScalarType.cpp.o 2025-01-24T02:44:17.5404130Z [1094/4997] Building CXX object c10/CMakeFiles/c10.dir/core/GeneratorImpl.cpp.o 2025-01-24T02:44:17.5543420Z [1095/4997] Building CXX object c10/CMakeFiles/c10.dir/core/Scalar.cpp.o 2025-01-24T02:44:17.7072540Z [1096/4997] Building CXX object c10/CMakeFiles/c10.dir/core/SymBool.cpp.o 2025-01-24T02:44:17.7077950Z [1097/4997] Building CXX object c10/CMakeFiles/c10.dir/core/SymNodeImpl.cpp.o 2025-01-24T02:44:17.7105210Z [1098/4997] Building CXX object c10/CMakeFiles/c10.dir/core/StorageImpl.cpp.o 2025-01-24T02:44:17.7120210Z [1099/4997] Building CXX object c10/CMakeFiles/c10.dir/core/SymFloat.cpp.o 2025-01-24T02:44:17.7257870Z [1100/4997] Building CXX object c10/CMakeFiles/c10.dir/core/SymIntArrayRef.cpp.o 2025-01-24T02:44:17.7260690Z [1101/4997] Building CXX object c10/CMakeFiles/c10.dir/core/Stream.cpp.o 2025-01-24T02:44:17.7353820Z [1102/4997] Building CXX object c10/CMakeFiles/c10.dir/core/SymInt.cpp.o 2025-01-24T02:44:17.7677540Z [1103/4997] Building CXX object c10/CMakeFiles/c10.dir/core/SymbolicShapeMeta.cpp.o 2025-01-24T02:44:17.9457000Z [1104/4997] Building CXX object c10/CMakeFiles/c10.dir/core/WrapDimMinimal.cpp.o 2025-01-24T02:44:17.9557650Z [1105/4997] Building CXX object c10/CMakeFiles/c10.dir/core/TensorOptions.cpp.o 2025-01-24T02:44:17.9694120Z [1106/4997] Building CXX object c10/CMakeFiles/c10.dir/core/impl/GPUTrace.cpp.o 2025-01-24T02:44:17.9696850Z [1107/4997] Building CXX object c10/CMakeFiles/c10.dir/core/impl/COWDeleter.cpp.o 2025-01-24T02:44:17.9753460Z [1108/4997] Building CXX object c10/CMakeFiles/c10.dir/core/impl/DeviceGuardImplInterface.cpp.o 2025-01-24T02:44:17.9758310Z [1109/4997] Building CXX object c10/CMakeFiles/c10.dir/core/impl/COW.cpp.o 2025-01-24T02:44:17.9792390Z [1110/4997] Building CXX object c10/CMakeFiles/c10.dir/core/UndefinedTensorImpl.cpp.o 2025-01-24T02:44:17.9803320Z [1111/4997] Building CXX object c10/CMakeFiles/c10.dir/core/TensorImpl.cpp.o 2025-01-24T02:44:18.0301040Z [1112/4997] Building CXX object c10/CMakeFiles/c10.dir/core/impl/HermeticPyObjectTLS.cpp.o 2025-01-24T02:44:18.1938940Z [1113/4997] Building CXX object c10/CMakeFiles/c10.dir/core/impl/SizesAndStrides.cpp.o 2025-01-24T02:44:18.1953620Z [1114/4997] Building CXX object c10/CMakeFiles/c10.dir/core/impl/alloc_cpu.cpp.o 2025-01-24T02:44:18.1964820Z [1115/4997] Building CXX object c10/CMakeFiles/c10.dir/core/impl/LocalDispatchKeySet.cpp.o 2025-01-24T02:44:18.1975130Z [1116/4997] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PythonDispatcherTLS.cpp.o 2025-01-24T02:44:18.2027530Z [1117/4997] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyObjectSlot.cpp.o 2025-01-24T02:44:18.2114400Z [1118/4997] Building CXX object c10/CMakeFiles/c10.dir/core/thread_pool.cpp.o 2025-01-24T02:44:18.2162400Z [1119/4997] Building CXX object c10/CMakeFiles/c10.dir/core/impl/TorchDispatchModeTLS.cpp.o 2025-01-24T02:44:18.2349580Z [1120/4997] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyInterpreter.cpp.o 2025-01-24T02:44:18.4008790Z [1121/4997] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUProfilingAllocator.cpp.o 2025-01-24T02:44:18.4109470Z [1122/4997] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUCachingAllocator.cpp.o 2025-01-24T02:44:18.4125100Z [1123/4997] Building CXX object c10/CMakeFiles/c10.dir/util/DynamicCounter.cpp.o 2025-01-24T02:44:18.4274310Z [1124/4997] Building CXX object c10/CMakeFiles/c10.dir/util/DeadlockDetection.cpp.o 2025-01-24T02:44:18.4369180Z [1125/4997] Building CXX object c10/CMakeFiles/c10.dir/util/Backtrace.cpp.o 2025-01-24T02:44:18.4383910Z [1126/4997] Building CXX object c10/CMakeFiles/c10.dir/util/C++17.cpp.o 2025-01-24T02:44:18.4816850Z [1127/4997] Building CXX object c10/CMakeFiles/c10.dir/util/Exception.cpp.o 2025-01-24T02:44:18.5300420Z [1128/4997] Building CXX object c10/CMakeFiles/c10.dir/util/ApproximateClock.cpp.o 2025-01-24T02:44:18.5856820Z [1129/4997] Building CXX object c10/CMakeFiles/c10.dir/util/Bfloat16.cpp.o 2025-01-24T02:44:18.5971170Z [1130/4997] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e4m3fn.cpp.o 2025-01-24T02:44:18.6052230Z [1131/4997] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e5m2fnuz.cpp.o 2025-01-24T02:44:18.6407160Z [1132/4997] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e4m3fnuz.cpp.o 2025-01-24T02:44:18.6644300Z [1133/4997] Building CXX object c10/CMakeFiles/c10.dir/util/Gauge.cpp.o 2025-01-24T02:44:18.6789400Z [1134/4997] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e5m2.cpp.o 2025-01-24T02:44:18.7158240Z [1135/4997] Building CXX object c10/CMakeFiles/c10.dir/util/Half.cpp.o 2025-01-24T02:44:18.7330680Z [1136/4997] Building CXX object c10/CMakeFiles/c10.dir/util/ParallelGuard.cpp.o 2025-01-24T02:44:18.7446910Z [1137/4997] Building CXX object c10/CMakeFiles/c10.dir/util/Optional.cpp.o 2025-01-24T02:44:18.7860670Z [1138/4997] Building CXX object c10/CMakeFiles/c10.dir/util/LeftRight.cpp.o 2025-01-24T02:44:18.7903810Z [1139/4997] Building CXX object c10/CMakeFiles/c10.dir/util/MathConstants.cpp.o 2025-01-24T02:44:18.8141850Z [1140/4997] Building CXX object c10/CMakeFiles/c10.dir/util/Metaprogramming.cpp.o 2025-01-24T02:44:18.8524730Z [1141/4997] Building CXX object c10/CMakeFiles/c10.dir/util/Logging.cpp.o 2025-01-24T02:44:18.8818080Z [1142/4997] Building CXX object c10/CMakeFiles/c10.dir/util/NetworkFlow.cpp.o 2025-01-24T02:44:18.9199230Z [1143/4997] Building CXX object c10/CMakeFiles/c10.dir/util/Type_no_demangle.cpp.o 2025-01-24T02:44:18.9209990Z [1144/4997] Building CXX object c10/CMakeFiles/c10.dir/util/SmallVector.cpp.o 2025-01-24T02:44:18.9380090Z [1145/4997] Building CXX object c10/CMakeFiles/c10.dir/util/TypeList.cpp.o 2025-01-24T02:44:18.9431080Z [1146/4997] Building CXX object c10/CMakeFiles/c10.dir/util/Unicode.cpp.o 2025-01-24T02:44:18.9881900Z [1147/4997] Building CXX object c10/CMakeFiles/c10.dir/util/StringUtil.cpp.o 2025-01-24T02:44:19.0060660Z [1148/4997] Building CXX object c10/CMakeFiles/c10.dir/util/TypeTraits.cpp.o 2025-01-24T02:44:19.0114640Z [1149/4997] Building CXX object c10/CMakeFiles/c10.dir/util/ThreadLocalDebugInfo.cpp.o 2025-01-24T02:44:19.0129120Z [1150/4997] Building CXX object c10/CMakeFiles/c10.dir/util/UniqueVoidPtr.cpp.o 2025-01-24T02:44:19.0305840Z [1151/4997] Building CXX object c10/CMakeFiles/c10.dir/util/TypeCast.cpp.o 2025-01-24T02:44:19.0763960Z [1152/4997] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_gflags.cpp.o 2025-01-24T02:44:19.1153220Z [1153/4997] Building CXX object c10/CMakeFiles/c10.dir/util/error.cpp.o 2025-01-24T02:44:19.1385810Z [1154/4997] Building CXX object c10/CMakeFiles/c10.dir/util/Type_demangle.cpp.o 2025-01-24T02:44:19.1965770Z [1155/4997] Building CXX object c10/CMakeFiles/c10.dir/util/WaitCounter.cpp.o 2025-01-24T02:44:19.2133500Z [1156/4997] Building CXX object c10/CMakeFiles/c10.dir/util/env.cpp.o 2025-01-24T02:44:19.2286900Z [1157/4997] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_no_gflags.cpp.o 2025-01-24T02:44:19.2374700Z [1158/4997] Building CXX object c10/CMakeFiles/c10.dir/util/complex_math.cpp.o 2025-01-24T02:44:19.2532700Z [1159/4997] Building CXX object c10/CMakeFiles/c10.dir/util/int128.cpp.o 2025-01-24T02:44:19.2808740Z [1160/4997] Building CXX object c10/CMakeFiles/c10.dir/util/intrusive_ptr.cpp.o 2025-01-24T02:44:19.2978330Z [1161/4997] 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-01-24T02:44:19.3036130Z [1162/4997] 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-01-24T02:44:19.3134920Z [1163/4997] 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-01-24T02:44:19.3347700Z [1164/4997] 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-01-24T02:44:19.3479780Z [1165/4997] 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-01-24T02:44:19.3658750Z [1166/4997] Building CXX object c10/CMakeFiles/c10.dir/util/thread_name.cpp.o 2025-01-24T02:44:19.3727900Z [1167/4997] 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-01-24T02:44:19.3821910Z [1168/4997] 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-01-24T02:44:19.3945250Z [1169/4997] 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-01-24T02:44:19.4097110Z [1170/4997] Building CXX object c10/CMakeFiles/c10.dir/util/signal_handler.cpp.o 2025-01-24T02:44:19.4106190Z [1171/4997] 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-01-24T02:44:19.4117420Z [1172/4997] Building CXX object c10/CMakeFiles/c10.dir/util/numa.cpp.o 2025-01-24T02:44:19.4318130Z [1173/4997] 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-01-24T02:44:19.4407720Z [1174/4997] 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-01-24T02:44:19.4478600Z [1175/4997] 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-01-24T02:44:19.4649530Z [1176/4997] 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-01-24T02:44:19.4650970Z [1177/4997] 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-01-24T02:44:19.5108490Z [1178/4997] 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-01-24T02:44:19.5156530Z [1179/4997] 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-01-24T02:44:19.5158050Z [1180/4997] 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-01-24T02:44:19.5162800Z [1181/4997] 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-01-24T02:44:19.5274760Z [1182/4997] 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-01-24T02:44:19.5387690Z [1183/4997] Building CXX object c10/CMakeFiles/c10.dir/util/tempfile.cpp.o 2025-01-24T02:44:19.5425810Z [1184/4997] 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-01-24T02:44:19.5497260Z [1185/4997] 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-01-24T02:44:19.5528010Z [1186/4997] 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-01-24T02:44:19.5913740Z [1187/4997] 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-01-24T02:44:19.5928300Z [1188/4997] 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-01-24T02:44:19.5938410Z [1189/4997] 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-01-24T02:44:19.5982920Z [1190/4997] 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-01-24T02:44:19.6164540Z [1191/4997] 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-01-24T02:44:19.6288350Z [1192/4997] 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-01-24T02:44:19.6297970Z [1193/4997] 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-01-24T02:44:19.6325950Z [1194/4997] 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-01-24T02:44:19.6511560Z [1195/4997] 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-01-24T02:44:19.6812020Z [1196/4997] 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-01-24T02:44:19.6880470Z [1197/4997] 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-01-24T02:44:19.6896990Z [1198/4997] 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-01-24T02:44:19.6902500Z [1199/4997] 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-01-24T02:44:19.7134770Z [1200/4997] 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-01-24T02:44:19.7155000Z [1201/4997] 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-01-24T02:44:19.7175640Z [1202/4997] 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-01-24T02:44:19.7180580Z [1203/4997] 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-01-24T02:44:19.7370400Z [1204/4997] 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-01-24T02:44:19.7783960Z [1205/4997] 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-01-24T02:44:19.7860150Z [1206/4997] 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-01-24T02:44:19.7887370Z [1207/4997] 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-01-24T02:44:19.7899020Z [1208/4997] 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-01-24T02:44:19.8002850Z [1209/4997] 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-01-24T02:44:19.8070880Z [1210/4997] 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-01-24T02:44:19.8104500Z [1211/4997] 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-01-24T02:44:19.8115840Z [1212/4997] 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-01-24T02:44:19.8134970Z [1213/4997] 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-01-24T02:44:19.8642040Z [1214/4997] 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-01-24T02:44:19.8824500Z [1215/4997] 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-01-24T02:44:19.8827020Z [1216/4997] 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-01-24T02:44:19.8845830Z [1217/4997] 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-01-24T02:44:19.8909370Z [1218/4997] 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-01-24T02:44:19.8921890Z [1219/4997] 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-01-24T02:44:19.8925720Z [1220/4997] 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-01-24T02:44:19.8930870Z [1221/4997] 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-01-24T02:44:19.9025830Z [1222/4997] 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-01-24T02:44:19.9490550Z [1223/4997] 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-01-24T02:44:19.9726790Z [1224/4997] 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-01-24T02:44:19.9742470Z [1225/4997] 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-01-24T02:44:19.9751790Z [1226/4997] 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-01-24T02:44:19.9832030Z [1227/4997] 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-01-24T02:44:19.9862120Z [1228/4997] 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-01-24T02:44:19.9875450Z [1229/4997] 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-01-24T02:44:19.9960210Z [1230/4997] 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-01-24T02:44:19.9963330Z [1231/4997] 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-01-24T02:44:20.0821940Z [1232/4997] Building CXX object c10/CMakeFiles/c10.dir/util/typeid.cpp.o 2025-01-24T02:44:20.0877650Z [1233/4997] 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-01-24T02:44:20.0890970Z [1234/4997] 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-01-24T02:44:20.0892470Z [1235/4997] 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-01-24T02:44:20.0904580Z [1236/4997] 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-01-24T02:44:20.0927800Z [1237/4997] 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-01-24T02:44:20.0963350Z [1238/4997] 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-01-24T02:44:20.0978990Z [1239/4997] 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-01-24T02:44:20.0992570Z [1240/4997] 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-01-24T02:44:20.1007470Z [1241/4997] 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-01-24T02:44:20.1831060Z [1242/4997] 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-01-24T02:44:20.1856820Z [1243/4997] 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-01-24T02:44:20.1868620Z [1244/4997] 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-01-24T02:44:20.1900680Z [1245/4997] 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-01-24T02:44:20.1944080Z [1246/4997] 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-01-24T02:44:20.1947260Z [1247/4997] 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-01-24T02:44:20.1952760Z [1248/4997] 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-01-24T02:44:20.1968390Z [1249/4997] 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-01-24T02:44:20.1978120Z [1250/4997] 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-01-24T02:44:20.2109860Z [1251/4997] 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-01-24T02:44:20.2817330Z [1252/4997] 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-01-24T02:44:20.2842240Z [1253/4997] 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-01-24T02:44:20.2872770Z [1254/4997] 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-01-24T02:44:20.2887190Z [1255/4997] 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-01-24T02:44:20.2897540Z [1256/4997] 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-01-24T02:44:20.3023040Z [1257/4997] 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-01-24T02:44:20.3130140Z [1258/4997] 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-01-24T02:44:20.3169100Z [1259/4997] 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-01-24T02:44:20.3170510Z [1260/4997] 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-01-24T02:44:20.3178780Z [1261/4997] 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-01-24T02:44:20.3842600Z [1262/4997] 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-01-24T02:44:20.3847290Z [1263/4997] 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-01-24T02:44:20.3855040Z [1264/4997] 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-01-24T02:44:20.3862830Z [1265/4997] 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-01-24T02:44:20.3945590Z [1266/4997] 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-01-24T02:44:20.4038520Z [1267/4997] 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-01-24T02:44:20.4096800Z [1268/4997] 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-01-24T02:44:20.4102110Z [1269/4997] 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-01-24T02:44:20.4111790Z [1270/4997] 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-01-24T02:44:20.4174060Z [1271/4997] 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-01-24T02:44:20.4791000Z [1272/4997] 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-01-24T02:44:20.4893900Z [1273/4997] 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-01-24T02:44:20.4897960Z [1274/4997] 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-01-24T02:44:20.4902310Z [1275/4997] 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-01-24T02:44:20.5021520Z [1276/4997] 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-01-24T02:44:20.5042150Z [1277/4997] 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-01-24T02:44:20.5048130Z [1278/4997] 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-01-24T02:44:20.5056060Z [1279/4997] 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-01-24T02:44:20.5123480Z [1280/4997] 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-01-24T02:44:20.5180080Z [1281/4997] 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-01-24T02:44:20.5795160Z [1282/4997] 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-01-24T02:44:20.5902630Z [1283/4997] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-01-24T02:44:20.5907600Z [1284/4997] 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-01-24T02:44:20.5922640Z [1285/4997] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-01-24T02:44:20.5968330Z [1286/4997] 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-01-24T02:44:20.6071330Z [1287/4997] Building C object confu-deps/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-01-24T02:44:20.6112830Z [1288/4997] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-01-24T02:44:20.6122840Z [1289/4997] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-01-24T02:44:20.6142200Z [1290/4997] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-01-24T02:44:20.6353030Z [1291/4997] Building C object confu-deps/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-01-24T02:44:20.6833790Z [1292/4997] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-01-24T02:44:20.6951930Z [1293/4997] Building C object confu-deps/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-01-24T02:44:20.7016200Z [1294/4997] Building C object confu-deps/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-01-24T02:44:20.7023720Z [1295/4997] Building C object confu-deps/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-01-24T02:44:20.7036530Z [1296/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-01-24T02:44:20.7048290Z [1297/4997] Building C object confu-deps/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-01-24T02:44:20.7217330Z [1298/4997] Building C object confu-deps/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-01-24T02:44:20.7258690Z [1299/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-01-24T02:44:20.7278040Z [1300/4997] Building C object confu-deps/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-01-24T02:44:20.7826510Z [1301/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-01-24T02:44:20.7977790Z [1302/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-01-24T02:44:20.7996570Z [1303/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-01-24T02:44:20.8059820Z [1304/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-01-24T02:44:20.8151670Z [1305/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-01-24T02:44:20.8157480Z [1306/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-01-24T02:44:20.8354530Z [1307/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-01-24T02:44:20.8357690Z [1308/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-01-24T02:44:20.8560330Z [1309/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-01-24T02:44:20.9017930Z [1310/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-01-24T02:44:20.9023800Z [1311/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-01-24T02:44:20.9043230Z [1312/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-01-24T02:44:20.9048870Z [1313/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-01-24T02:44:20.9064670Z [1314/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-01-24T02:44:20.9090710Z [1315/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-01-24T02:44:20.9309730Z [1316/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-01-24T02:44:20.9321080Z [1317/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-01-24T02:44:20.9506510Z [1318/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-01-24T02:44:20.9903480Z [1319/4997] Building CXX object confu-deps/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-01-24T02:44:20.9964040Z [1320/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2025-01-24T02:44:21.0141360Z [1321/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-01-24T02:44:21.0207620Z [1322/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-01-24T02:44:21.0211790Z [1323/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-01-24T02:44:21.0390490Z [1324/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-01-24T02:44:21.0447810Z [1325/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-01-24T02:44:21.0528170Z [1326/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-01-24T02:44:21.0547940Z [1327/4997] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-01-24T02:44:21.0930160Z [1328/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-01-24T02:44:21.1149820Z [1329/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-01-24T02:44:21.1157680Z [1330/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-01-24T02:44:21.1249560Z [1331/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-01-24T02:44:21.1341390Z [1332/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-01-24T02:44:21.1443930Z [1333/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-01-24T02:44:21.1482500Z [1334/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-01-24T02:44:21.1549090Z [1335/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-01-24T02:44:21.1848750Z [1336/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-01-24T02:44:21.2065160Z [1337/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-01-24T02:44:21.2267690Z [1338/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-01-24T02:44:21.2268840Z [1339/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-01-24T02:44:21.2269890Z [1340/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-01-24T02:44:21.2460840Z [1341/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-01-24T02:44:21.2487070Z [1342/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-01-24T02:44:21.2501280Z [1343/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-01-24T02:44:21.2681580Z [1344/4997] Building CXX object confu-deps/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-01-24T02:44:21.3020650Z [1345/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-01-24T02:44:21.3086110Z [1346/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-01-24T02:44:21.3261340Z [1347/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-01-24T02:44:21.3300280Z [1348/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-01-24T02:44:21.3342420Z [1349/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-01-24T02:44:21.3347200Z [1350/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-01-24T02:44:21.3367750Z [1351/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-01-24T02:44:21.3532990Z [1352/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-01-24T02:44:21.3652790Z [1353/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-01-24T02:44:21.4064390Z [1354/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-01-24T02:44:21.4154350Z [1355/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-01-24T02:44:21.4343320Z [1356/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-01-24T02:44:21.4347850Z [1357/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-01-24T02:44:21.4391700Z [1358/4997] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.c.o 2025-01-24T02:44:21.4397060Z [1359/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-01-24T02:44:21.4404450Z [1360/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-01-24T02:44:21.4603350Z [1361/4997] 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-01-24T02:44:21.4611170Z [1362/4997] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-01-24T02:44:21.4981880Z [1363/4997] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.c.o 2025-01-24T02:44:21.5184740Z [1364/4997] Building CXX object confu-deps/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-01-24T02:44:21.5217520Z [1365/4997] 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-01-24T02:44:21.5510870Z [1366/4997] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16pbiasf32_f32_neon.c.o 2025-01-24T02:44:21.5543100Z [1367/4997] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p_f32_neon.c.o 2025-01-24T02:44:21.5795860Z [1368/4997] 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-01-24T02:44:21.5832790Z [1369/4997] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p12x4b_8x12x4_neon_mmla.c.o 2025-01-24T02:44:21.6019030Z [1370/4997] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x4_8x8x32_neon_dotprod.c.o 2025-01-24T02:44:21.6134440Z [1371/4997] 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-01-24T02:44:21.6174230Z [1372/4997] 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-01-24T02:44:21.6274190Z [1373/4997] 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-01-24T02:44:21.6328740Z [1374/4997] 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-01-24T02:44:21.6569960Z [1375/4997] 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-01-24T02:44:21.6746080Z [1376/4997] 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-01-24T02:44:21.6902730Z [1377/4997] 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-01-24T02:44:21.6991530Z [1378/4997] 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-01-24T02:44:21.7172930Z [1379/4997] 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-01-24T02:44:21.7245510Z [1380/4997] 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-01-24T02:44:21.7257810Z [1381/4997] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.c.o 2025-01-24T02:44:21.7488810Z [1382/4997] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.c.o 2025-01-24T02:44:21.7500400Z [1383/4997] 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-01-24T02:44:21.7609800Z [1384/4997] 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-01-24T02:44:21.7664670Z [1385/4997] 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-01-24T02:44:21.7698850Z [1386/4997] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32pb_f32_f32_16vlx1_sme.c.o 2025-01-24T02:44:21.7841870Z [1387/4997] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32pb_1x16vl_sme2_mla.c.o 2025-01-24T02:44:21.8214370Z [1388/4997] 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-01-24T02:44:21.8765210Z [1389/4997] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/os.cc.o 2025-01-24T02:44:21.9917870Z [1390/4997] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/format.cc.o 2025-01-24T02:44:22.0018620Z [1391/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/ThreadUtil.cpp.o 2025-01-24T02:44:22.0032980Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/src/ThreadUtil.cpp:64: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-01-24T02:44:22.0034300Z sysTid = (int32_t)syscall(SYS_thread_selfid); 2025-01-24T02:44:22.0034590Z ^ 2025-01-24T02:44:22.0047370Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/unistd.h:748:6: note: 'syscall' has been explicitly marked deprecated here 2025-01-24T02:44:22.0048180Z int syscall(int, ...); 2025-01-24T02:44:22.0048400Z ^ 2025-01-24T02:44:22.0048580Z 1 warning generated. 2025-01-24T02:44:22.0102900Z [1392/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/libkineto_api.cpp.o 2025-01-24T02:44:22.0224220Z [1393/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerController.cpp.o 2025-01-24T02:44:22.0286070Z [1394/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityType.cpp.o 2025-01-24T02:44:22.0480670Z [1395/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityProfiler.cpp.o 2025-01-24T02:44:22.0729190Z [1396/4997] Linking CXX static library lib/libfmt.a 2025-01-24T02:44:22.0940870Z [1397/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/AbstractConfig.cpp.o 2025-01-24T02:44:22.1022830Z [1398/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DaemonConfigLoader.cpp.o 2025-01-24T02:44:22.1214580Z [1399/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerProxy.cpp.o 2025-01-24T02:44:22.2033270Z [1400/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Demangle.cpp.o 2025-01-24T02:44:22.2092780Z [1401/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DeviceUtil.cpp.o 2025-01-24T02:44:22.2243300Z [1402/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/IpcFabricConfigClient.cpp.o 2025-01-24T02:44:22.2404380Z [1403/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ConfigLoader.cpp.o 2025-01-24T02:44:22.2468860Z [1404/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DeviceProperties.cpp.o 2025-01-24T02:44:22.2947460Z [1405/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityApi.cpp.o 2025-01-24T02:44:22.3173710Z [1406/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Config.cpp.o 2025-01-24T02:44:22.3746000Z [1407/4997] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.c.o 2025-01-24T02:44:22.3792070Z [1408/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ILoggerObserver.cpp.o 2025-01-24T02:44:22.4050260Z [1409/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/GenericTraceActivity.cpp.o 2025-01-24T02:44:22.4112330Z [1410/4997] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.c.o 2025-01-24T02:44:22.4151400Z [1411/4997] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.c.o 2025-01-24T02:44:22.4269520Z [1412/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/init.cpp.o 2025-01-24T02:44:22.4333290Z [1413/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Logger.cpp.o 2025-01-24T02:44:22.4554800Z [1414/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_csv.cpp.o 2025-01-24T02:44:22.4806010Z [1415/4997] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.c.o 2025-01-24T02:44:22.4831520Z [1416/4997] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.c.o 2025-01-24T02:44:22.5017460Z [1417/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_json.cpp.o 2025-01-24T02:44:22.5056380Z [1418/4997] Building C object caffe2/CMakeFiles/torch_global_deps.dir/__/torch/csrc/empty.c.o 2025-01-24T02:44:22.5064300Z [1419/4997] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.c.o 2025-01-24T02:44:22.5073880Z [1420/4997] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.c.o 2025-01-24T02:44:22.5193520Z [1421/4997] Building C object sleef/src/libm/CMakeFiles/mkrename.dir/mkrename.c.o 2025-01-24T02:44:22.5838270Z [1422/4997] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/LoggingAPI.cpp.o 2025-01-24T02:44:22.6119650Z [1423/4997] Linking C static library lib/libkleidiai.a 2025-01-24T02:44:22.6199630Z [1424/4997] Linking C executable sleef/bin/mkrename 2025-01-24T02:44:22.7061410Z [1425/4997] Linking C shared library lib/libtorch_global_deps.dylib 2025-01-24T02:44:22.7369210Z [1426/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/time_util.cc.o 2025-01-24T02:44:22.7519540Z [1427/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/json_util.cc.o 2025-01-24T02:44:22.7531340Z [1428/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/utility.cc.o 2025-01-24T02:44:22.7630100Z [1429/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/type_resolver_util.cc.o 2025-01-24T02:44:22.7697440Z [1430/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/message_differencer.cc.o 2025-01-24T02:44:22.7988650Z [1431/4997] Linking CXX static library lib/libkineto.a 2025-01-24T02:44:22.8269360Z [1432/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format.cc.o 2025-01-24T02:44:22.9000330Z [1433/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wrappers.pb.cc.o 2025-01-24T02:44:22.9252150Z [1434/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/code_generator.cc.o 2025-01-24T02:44:22.9991850Z [1435/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_field.cc.o 2025-01-24T02:44:23.0041900Z [1436/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum_field.cc.o 2025-01-24T02:44:23.0199720Z [1437/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum.cc.o 2025-01-24T02:44:23.0256280Z [1438/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_extension.cc.o 2025-01-24T02:44:23.0698520Z [1439/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_helpers.cc.o 2025-01-24T02:44:23.0837590Z [1440/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/command_line_interface.cc.o 2025-01-24T02:44:23.1662120Z [1441/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_generator.cc.o 2025-01-24T02:44:23.1818040Z [1442/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_file.cc.o 2025-01-24T02:44:23.2384580Z [1443/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_map_field.cc.o 2025-01-24T02:44:23.2403650Z [1444/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message_field.cc.o 2025-01-24T02:44:23.2465460Z [1445/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message.cc.o 2025-01-24T02:44:23.2702640Z [1446/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_service.cc.o 2025-01-24T02:44:23.2877730Z [1447/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc.o 2025-01-24T02:44:23.2970260Z [1448/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc.o 2025-01-24T02:44:23.3127470Z [1449/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc.o 2025-01-24T02:44:23.4416840Z [1450/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_string_field.cc.o 2025-01-24T02:44:23.4558350Z [1451/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum.cc.o 2025-01-24T02:44:23.4703730Z [1452/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_map_field.cc.o 2025-01-24T02:44:23.4879980Z [1453/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum_field.cc.o 2025-01-24T02:44:23.4938710Z [1454/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_field_base.cc.o 2025-01-24T02:44:23.5026950Z [1455/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_helpers.cc.o 2025-01-24T02:44:23.5096600Z [1456/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_generator.cc.o 2025-01-24T02:44:23.5794720Z [1457/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message.cc.o 2025-01-24T02:44:23.6680320Z [1458/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message_field.cc.o 2025-01-24T02:44:23.6854370Z [1459/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc.o 2025-01-24T02:44:23.6959260Z [1460/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc.o 2025-01-24T02:44:23.7031510Z [1461/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc.o 2025-01-24T02:44:23.7388240Z [1462/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc.o 2025-01-24T02:44:23.7551370Z [1463/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_context.cc.o 2025-01-24T02:44:23.7848310Z [1464/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc.o 2025-01-24T02:44:23.8491500Z [1465/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc.o 2025-01-24T02:44:23.8514270Z [1466/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_doc_comment.cc.o 2025-01-24T02:44:23.9179140Z [1467/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum.cc.o 2025-01-24T02:44:23.9313730Z [1468/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc.o 2025-01-24T02:44:23.9495540Z [1469/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field.cc.o 2025-01-24T02:44:23.9690320Z [1470/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_lite.cc.o 2025-01-24T02:44:23.9964230Z [1471/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field_lite.cc.o 2025-01-24T02:44:24.0141900Z [1472/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension.cc.o 2025-01-24T02:44:24.0790210Z [1473/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension_lite.cc.o 2025-01-24T02:44:24.1096450Z [1474/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator.cc.o 2025-01-24T02:44:24.1219590Z [1475/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_file.cc.o 2025-01-24T02:44:24.1286040Z [1476/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_field.cc.o 2025-01-24T02:44:24.1885460Z [1477/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator_factory.cc.o 2025-01-24T02:44:24.1895840Z [1478/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_helpers.cc.o 2025-01-24T02:44:24.2604120Z [1479/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field_lite.cc.o 2025-01-24T02:44:24.2811860Z [1480/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field.cc.o 2025-01-24T02:44:24.3086780Z [1481/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder_lite.cc.o 2025-01-24T02:44:24.3215490Z [1482/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message.cc.o 2025-01-24T02:44:24.3315530Z [1483/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder.cc.o 2025-01-24T02:44:24.3522700Z [1484/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field.cc.o 2025-01-24T02:44:24.3633600Z [1485/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field_lite.cc.o 2025-01-24T02:44:24.3747360Z [1486/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_lite.cc.o 2025-01-24T02:44:24.4556970Z [1487/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field.cc.o 2025-01-24T02:44:24.4770090Z [1488/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_name_resolver.cc.o 2025-01-24T02:44:24.4986040Z [1489/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neonfma-acc2.c.o 2025-01-24T02:44:24.5055660Z [1490/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/well_known_types_embed.cc.o 2025-01-24T02:44:24.5660100Z [1491/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field_lite.cc.o 2025-01-24T02:44:24.5993550Z [1492/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_shared_code_generator.cc.o 2025-01-24T02:44:24.6036350Z [1493/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/js_generator.cc.o 2025-01-24T02:44:24.6219140Z [1494/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum.cc.o 2025-01-24T02:44:24.6288140Z [1495/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field.cc.o 2025-01-24T02:44:24.7003860Z [1496/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_service.cc.o 2025-01-24T02:44:24.7673570Z [1497/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_extension.cc.o 2025-01-24T02:44:24.7697430Z [1498/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_field.cc.o 2025-01-24T02:44:24.7906250Z [1499/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc.o 2025-01-24T02:44:24.8066640Z [1500/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_generator.cc.o 2025-01-24T02:44:24.8479070Z [1501/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc.o 2025-01-24T02:44:24.8574020Z [1502/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc.o 2025-01-24T02:44:24.8825770Z [1503/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message.cc.o 2025-01-24T02:44:24.9167100Z [1504/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_file.cc.o 2025-01-24T02:44:24.9965890Z [1505/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc.o 2025-01-24T02:44:25.0136720Z [1506/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc.o 2025-01-24T02:44:25.0296180Z [1507/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc.o 2025-01-24T02:44:25.0446610Z [1508/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.pb.cc.o 2025-01-24T02:44:25.0453580Z [1509/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/php/php_generator.cc.o 2025-01-24T02:44:25.1023350Z [1510/4997] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-01-24T02:44:25.1126770Z [1511/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.cc.o 2025-01-24T02:44:25.1324820Z [1512/4997] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-01-24T02:44:25.1513170Z [1513/4997] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-01-24T02:44:25.1571730Z [1514/4997] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/gcd.c.o 2025-01-24T02:44:25.1595140Z [1515/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/ruby/ruby_generator.cc.o 2025-01-24T02:44:25.1606240Z [1516/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/python/python_generator.cc.o 2025-01-24T02:44:25.1758020Z [1517/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/zip_writer.cc.o 2025-01-24T02:44:25.1804740Z [1518/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/subprocess.cc.o 2025-01-24T02:44:25.1859120Z [1519/4997] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-01-24T02:44:25.1973880Z [1520/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/protoc.dir/__/src/google/protobuf/compiler/main.cc.o 2025-01-24T02:44:25.2098150Z [1521/4997] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-01-24T02:44:25.2400280Z [1522/4997] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-01-24T02:44:25.2436440Z [1523/4997] Linking C static library lib/libpthreadpool.a 2025-01-24T02:44:25.2631260Z [1524/4997] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-01-24T02:44:25.2692740Z [1525/4997] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/uarch.c.o 2025-01-24T02:44:25.2745170Z [1526/4997] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/cache.c.o 2025-01-24T02:44:25.2826210Z [1527/4997] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/mach/init.c.o 2025-01-24T02:44:25.2828630Z [1528/4997] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2025-01-24T02:44:25.2860240Z [1529/4997] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/mach/topology.c.o 2025-01-24T02:44:25.2873870Z [1530/4997] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2025-01-24T02:44:25.3502010Z [1531/4997] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2025-01-24T02:44:25.3579380Z [1532/4997] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2025-01-24T02:44:25.3609660Z [1533/4997] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/uarch.c.o 2025-01-24T02:44:25.3631010Z [1534/4997] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/cache.c.o 2025-01-24T02:44:25.3632280Z [1535/4997] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/mach/topology.c.o 2025-01-24T02:44:25.3776400Z [1536/4997] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/mach/init.c.o 2025-01-24T02:44:25.3784600Z [1537/4997] Linking C static library lib/libcpuinfo.a 2025-01-24T02:44:25.3836410Z [1538/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/average-pooling.c.o 2025-01-24T02:44:25.3862440Z [1539/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/init.c.o 2025-01-24T02:44:25.3863440Z [1540/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/add.c.o 2025-01-24T02:44:25.4601570Z [1541/4997] Linking C static library lib/libcpuinfo_internals.a 2025-01-24T02:44:25.4704530Z [1542/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/channel-shuffle.c.o 2025-01-24T02:44:25.4807810Z [1543/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/clamp.c.o 2025-01-24T02:44:25.4820250Z [1544/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/convolution.c.o 2025-01-24T02:44:25.4834680Z [1545/4997] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-prepack.cc.o 2025-01-24T02:44:25.5956880Z [1546/4997] Linking CXX shared library lib/libc10.dylib 2025-01-24T02:44:25.6392930Z [1547/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/arena.cc.o 2025-01-24T02:44:25.6405020Z [1548/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/any_lite.cc.o 2025-01-24T02:44:25.6618160Z [1549/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_util.cc.o 2025-01-24T02:44:25.6818250Z [1550/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_enum_util.cc.o 2025-01-24T02:44:25.6927980Z [1551/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o 2025-01-24T02:44:25.7012040Z [1552/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/io_win32.cc.o 2025-01-24T02:44:25.7150990Z [1553/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/extension_set.cc.o 2025-01-24T02:44:25.7375760Z [1554/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/implicit_weak_message.cc.o 2025-01-24T02:44:25.7948080Z [1555/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o 2025-01-24T02:44:25.8751270Z [1556/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o 2025-01-24T02:44:25.8761900Z [1557/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/message_lite.cc.o 2025-01-24T02:44:25.8807870Z [1558/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/strutil.cc.o 2025-01-24T02:44:25.8816140Z /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-01-24T02:44:25.8922200Z sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), 2025-01-24T02:44:25.8923120Z ^ 2025-01-24T02:44:25.8923910Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h:180:1: note: 'sprintf' has been explicitly marked deprecated here 2025-01-24T02:44:25.8925140Z __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-01-24T02:44:25.8925920Z ^ 2025-01-24T02:44:25.8926500Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:218:48: note: expanded from macro '__deprecated_msg' 2025-01-24T02:44:25.8927240Z #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg))) 2025-01-24T02:44:25.8927640Z ^ 2025-01-24T02:44:25.8927920Z 1 warning generated. 2025-01-24T02:44:25.9019850Z [1559/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/coded_stream.cc.o 2025-01-24T02:44:25.9048390Z [1560/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/strtod.cc.o 2025-01-24T02:44:25.9062240Z [1561/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o 2025-01-24T02:44:25.9530270Z [1562/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/parse_context.cc.o 2025-01-24T02:44:26.0229910Z [1563/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/repeated_field.cc.o 2025-01-24T02:44:26.0508260Z [1564/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/bytestream.cc.o 2025-01-24T02:44:26.0734290Z [1565/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/status.cc.o 2025-01-24T02:44:26.0788380Z [1566/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/int128.cc.o 2025-01-24T02:44:26.0870270Z [1567/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/common.cc.o 2025-01-24T02:44:26.1052430Z [1568/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/statusor.cc.o 2025-01-24T02:44:26.1410540Z [1569/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringprintf.cc.o 2025-01-24T02:44:26.2182520Z [1570/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringpiece.cc.o 2025-01-24T02:44:26.2191420Z [1571/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o 2025-01-24T02:44:26.2220280Z [1572/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/time.cc.o 2025-01-24T02:44:26.2641300Z [1573/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/wire_format_lite.cc.o 2025-01-24T02:44:26.2897280Z [1574/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any_lite.cc.o 2025-01-24T02:44:26.2932560Z [1575/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/arena.cc.o 2025-01-24T02:44:26.3238860Z [1576/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_enum_util.cc.o 2025-01-24T02:44:26.3391790Z [1577/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set.cc.o 2025-01-24T02:44:26.3638060Z [1578/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/io_win32.cc.o 2025-01-24T02:44:26.4060910Z [1579/4997] Linking CXX static library lib/libprotobuf-lite.a 2025-01-24T02:44:26.4363550Z [1580/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_util.cc.o 2025-01-24T02:44:26.4457520Z [1581/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o 2025-01-24T02:44:26.4881030Z [1582/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/coded_stream.cc.o 2025-01-24T02:44:26.4899770Z [1583/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o 2025-01-24T02:44:26.5114280Z [1584/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/strtod.cc.o 2025-01-24T02:44:26.5372270Z [1585/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o 2025-01-24T02:44:26.5438350Z [1586/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/implicit_weak_message.cc.o 2025-01-24T02:44:26.6108290Z [1587/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o 2025-01-24T02:44:26.6330460Z [1588/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/parse_context.cc.o 2025-01-24T02:44:26.6654150Z [1589/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message_lite.cc.o 2025-01-24T02:44:26.6834410Z [1590/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/repeated_field.cc.o 2025-01-24T02:44:26.6999690Z [1591/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/int128.cc.o 2025-01-24T02:44:26.7344560Z [1592/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/bytestream.cc.o 2025-01-24T02:44:26.7471160Z [1593/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info_test_helper.cc.o 2025-01-24T02:44:26.7543030Z [1594/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/common.cc.o 2025-01-24T02:44:26.8199440Z [1595/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringpiece.cc.o 2025-01-24T02:44:26.8205980Z [1596/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/statusor.cc.o 2025-01-24T02:44:26.8535400Z [1597/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/strutil.cc.o 2025-01-24T02:44:26.8552140Z /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-01-24T02:44:26.8553670Z sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), 2025-01-24T02:44:26.8553990Z ^ 2025-01-24T02:44:26.8554620Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h:180:1: note: 'sprintf' has been explicitly marked deprecated here 2025-01-24T02:44:26.8561360Z __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-01-24T02:44:26.8562140Z ^ 2025-01-24T02:44:26.8562750Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:218:48: note: expanded from macro '__deprecated_msg' 2025-01-24T02:44:26.8563470Z #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg))) 2025-01-24T02:44:26.8563860Z ^ 2025-01-24T02:44:26.8564130Z 1 warning generated. 2025-01-24T02:44:26.8824910Z [1598/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/status.cc.o 2025-01-24T02:44:26.9060880Z [1599/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringprintf.cc.o 2025-01-24T02:44:26.9301880Z [1600/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/time.cc.o 2025-01-24T02:44:26.9636300Z [1601/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o 2025-01-24T02:44:26.9970470Z [1602/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.pb.cc.o 2025-01-24T02:44:27.0645680Z [1603/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.cc.o 2025-01-24T02:44:27.0745950Z [1604/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format_lite.cc.o 2025-01-24T02:44:27.0850890Z [1605/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/importer.cc.o 2025-01-24T02:44:27.0857870Z [1606/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/api.pb.cc.o 2025-01-24T02:44:27.1304740Z [1607/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.pb.cc.o 2025-01-24T02:44:27.1755550Z [1608/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/parser.cc.o 2025-01-24T02:44:27.1982330Z [1609/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor_database.cc.o 2025-01-24T02:44:27.2154340Z [1610/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.cc.o 2025-01-24T02:44:27.2317030Z [1611/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/duration.pb.cc.o 2025-01-24T02:44:27.2382740Z [1612/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/dynamic_message.cc.o 2025-01-24T02:44:27.2823240Z [1613/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/gzip_stream.cc.o 2025-01-24T02:44:27.3250750Z [1614/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set_heavy.cc.o 2025-01-24T02:44:27.3300360Z [1615/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_reflection.cc.o 2025-01-24T02:44:27.3310840Z [1616/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/empty.pb.cc.o 2025-01-24T02:44:27.3891920Z [1617/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/field_mask.pb.cc.o 2025-01-24T02:44:27.4443550Z [1618/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/printer.cc.o 2025-01-24T02:44:27.4661500Z [1619/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/tokenizer.cc.o 2025-01-24T02:44:27.4768000Z [1620/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/map_field.cc.o 2025-01-24T02:44:27.5072000Z [1621/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message.cc.o 2025-01-24T02:44:27.5384440Z [1622/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/reflection_ops.cc.o 2025-01-24T02:44:27.5443220Z [1623/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/service.cc.o 2025-01-24T02:44:27.5467830Z [1624/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/source_context.pb.cc.o 2025-01-24T02:44:27.5681010Z [1625/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven.cc.o 2025-01-24T02:44:27.6443990Z [1626/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/substitute.cc.o 2025-01-24T02:44:27.7038600Z [1627/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/struct.pb.cc.o 2025-01-24T02:44:27.7404380Z [1628/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/unknown_field_set.cc.o 2025-01-24T02:44:27.7405760Z [1629/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/delimited_message_util.cc.o 2025-01-24T02:44:27.7417040Z [1630/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/type.pb.cc.o 2025-01-24T02:44:27.7425720Z [1631/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/timestamp.pb.cc.o 2025-01-24T02:44:27.7801800Z [1632/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_comparator.cc.o 2025-01-24T02:44:27.8110330Z [1633/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/text_format.cc.o 2025-01-24T02:44:27.8703370Z [1634/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/default_value_objectwriter.cc.o 2025-01-24T02:44:27.9333820Z [1635/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/error_listener.cc.o 2025-01-24T02:44:27.9364020Z [1636/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_escaping.cc.o 2025-01-24T02:44:27.9512890Z [1637/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/datapiece.cc.o 2025-01-24T02:44:27.9519800Z [1638/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_stream_parser.cc.o 2025-01-24T02:44:27.9886120Z [1639/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/field_mask_utility.cc.o 2025-01-24T02:44:28.0156440Z [1640/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_mask_util.cc.o 2025-01-24T02:44:28.0419610Z [1641/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconvolution.c.o 2025-01-24T02:44:28.0501400Z [1642/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_objectwriter.cc.o 2025-01-24T02:44:28.0845520Z [1643/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/max-pooling-output.c.o 2025-01-24T02:44:28.1063620Z [1644/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/softmax-output.c.o 2025-01-24T02:44:28.1443190Z [1645/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-output.c.o 2025-01-24T02:44:28.1492750Z [1646/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/proto_writer.cc.o 2025-01-24T02:44:28.1669970Z [1647/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectsource.cc.o 2025-01-24T02:44:28.1674510Z [1648/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-input-gradient.c.o 2025-01-24T02:44:28.1709680Z [1649/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectwriter.cc.o 2025-01-24T02:44:28.1715280Z [1650/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/object_writer.cc.o 2025-01-24T02:44:28.1720730Z [1651/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info.cc.o 2025-01-24T02:44:28.2052490Z [1652/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-01-24T02:44:28.2062250Z [1653/4997] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field_lite.cc.o 2025-01-24T02:44:28.2354470Z [1654/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9x-minmax-neonfp16arith-c8.c.o 2025-01-24T02:44:28.2665110Z [1655/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-conv-hwc2chw/f16-conv-hwc2chw-3x3s2p1c3x4-neonfp16arith-2x2.c.o 2025-01-24T02:44:28.2983700Z [1656/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-neonfp16arith.c.o 2025-01-24T02:44:28.2987830Z [1657/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-neonfp16arith-acc2.c.o 2025-01-24T02:44:28.2990730Z [1658/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-neonfp16arith.c.o 2025-01-24T02:44:28.3005330Z [1659/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-neonfp16arith.c.o 2025-01-24T02:44:28.3235700Z [1660/4997] 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-01-24T02:44:28.3463960Z [1661/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-neonfp16arith.c.o 2025-01-24T02:44:28.3797810Z [1662/4997] 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-01-24T02:44:28.3822020Z [1663/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u1.c.o 2025-01-24T02:44:28.3829550Z [1664/4997] 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-01-24T02:44:28.4038560Z [1665/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u32-acc4.c.o 2025-01-24T02:44:28.4061770Z [1666/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u4.c.o 2025-01-24T02:44:28.4080850Z [1667/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u16.c.o 2025-01-24T02:44:28.4131070Z [1668/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neonfp16-u16.c.o 2025-01-24T02:44:28.4473210Z [1669/4997] 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-01-24T02:44:28.4535890Z [1670/4997] 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-01-24T02:44:28.4570660Z [1671/4997] 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-01-24T02:44:28.4847430Z [1672/4997] 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-01-24T02:44:28.4857450Z [1673/4997] 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-01-24T02:44:28.4888670Z [1674/4997] 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-01-24T02:44:28.5093790Z [1675/4997] 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-01-24T02:44:28.5272860Z [1676/4997] 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-01-24T02:44:28.5321520Z [1677/4997] Linking CXX static library lib/libprotobuf.a 2025-01-24T02:44:28.5617330Z [1678/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x8-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:28.5722100Z [1679/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:28.5823000Z [1680/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:28.5868760Z [1681/4997] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-01-24T02:44:28.5886160Z [1682/4997] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-01-24T02:44:28.6082920Z [1683/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear/gen/f16-ibilinear-neonfp16arith-c8.c.o 2025-01-24T02:44:28.6144360Z [1684/4997] 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-01-24T02:44:28.6355690Z [1685/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p8.c.o 2025-01-24T02:44:28.6389350Z [1686/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x8-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:28.6553980Z [1687/4997] 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-01-24T02:44:28.6581970Z [1688/4997] 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-01-24T02:44:28.6588620Z [1689/4997] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-01-24T02:44:28.7144870Z [1690/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-1x16-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:28.7251190Z [1691/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-6x16-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:28.7252640Z [1692/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-1x8-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:28.7527760Z [1693/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u4.c.o 2025-01-24T02:44:28.7536500Z [1694/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-maxpool/f16-maxpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-01-24T02:44:28.7547590Z [1695/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-6x8-minmax-neonfp16arith-ld64.c.o 2025-01-24T02:44:28.7710330Z [1696/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-01-24T02:44:28.7812180Z [1697/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9x-minmax-neonfp16arith-c8.c.o 2025-01-24T02:44:28.7852600Z [1698/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u32.c.o 2025-01-24T02:44:28.8134330Z [1699/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u4.c.o 2025-01-24T02:44:28.8387650Z [1700/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32.c.o 2025-01-24T02:44:28.8436810Z [1701/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32-acc4.c.o 2025-01-24T02:44:28.8494010Z [1702/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-scalar-u2-acc2.c.o 2025-01-24T02:44:28.8499940Z [1703/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u2-acc2.c.o 2025-01-24T02:44:28.9028240Z [1704/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith-pipelined.c.o 2025-01-24T02:44:28.9049340Z [1705/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32-acc4.c.o 2025-01-24T02:44:28.9064580Z [1706/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vaddc-neonfp16arith-u16.c.o 2025-01-24T02:44:28.9084720Z [1707/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vadd-neonfp16arith-u16.c.o 2025-01-24T02:44:28.9379270Z [1708/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-aarch64-neonfp16arith-u8.c.o 2025-01-24T02:44:28.9581770Z [1709/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u2.c.o 2025-01-24T02:44:28.9627910Z [1710/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-aarch64-neonfp16arith-u8.c.o 2025-01-24T02:44:28.9631960Z [1711/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u2.c.o 2025-01-24T02:44:28.9633060Z [1712/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmaxc-neonfp16arith-u16.c.o 2025-01-24T02:44:28.9855360Z [1713/4997] Linking CXX static library lib/libprotoc.a 2025-01-24T02:44:29.0413700Z [1714/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmin-neonfp16arith-u16.c.o 2025-01-24T02:44:29.0431060Z [1715/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmax-neonfp16arith-u16.c.o 2025-01-24T02:44:29.0554610Z [1716/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmul-neonfp16arith-u16.c.o 2025-01-24T02:44:29.0565180Z [1717/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vminc-neonfp16arith-u16.c.o 2025-01-24T02:44:29.0749240Z [1718/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vprelu-neonfp16arith-u16.c.o 2025-01-24T02:44:29.0802020Z [1719/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmulc-neonfp16arith-u16.c.o 2025-01-24T02:44:29.1099180Z [1720/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-aarch64-neonfp16arith-u8.c.o 2025-01-24T02:44:29.1289680Z [1721/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u2.c.o 2025-01-24T02:44:29.1297780Z [1722/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrsubc-neonfp16arith-u16.c.o 2025-01-24T02:44:29.1771050Z [1723/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrpreluc-neonfp16arith-u16.c.o 2025-01-24T02:44:29.1851930Z [1724/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsubc-neonfp16arith-u16.c.o 2025-01-24T02:44:29.1875460Z [1725/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiffc-neonfp16arith-u16.c.o 2025-01-24T02:44:29.1901650Z [1726/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsub-neonfp16arith-u16.c.o 2025-01-24T02:44:29.1931430Z [1727/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vclamp/gen/f16-vclamp-neonfp16arith-u16.c.o 2025-01-24T02:44:29.2240920Z [1728/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u16.c.o 2025-01-24T02:44:29.2255190Z [1729/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiff-neonfp16arith-u16.c.o 2025-01-24T02:44:29.2311250Z [1730/4997] Linking CXX executable bin/protoc-3.13.0.0 2025-01-24T02:44:29.2424360Z [1731/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-velu/gen/f16-velu-neonfp16arith-rr1-p3-u16.c.o 2025-01-24T02:44:29.2567150Z [1732/4997] Creating executable symlink bin/protoc 2025-01-24T02:44:29.2670660Z [1733/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vhswish/gen/f16-vhswish-neonfp16arith-u16.c.o 2025-01-24T02:44:29.3004150Z [1734/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndu-neonfp16arith-u16.c.o 2025-01-24T02:44:29.3125300Z [1735/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-neonfp16arith-2x.c.o 2025-01-24T02:44:29.3284330Z [1736/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vlrelu/gen/f16-vlrelu-neonfp16arith-u16.c.o 2025-01-24T02:44:29.3301030Z [1737/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndd-neonfp16arith-u16.c.o 2025-01-24T02:44:29.3506450Z [1738/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u32.c.o 2025-01-24T02:44:29.3531070Z [1739/4997] Running gen_proto.py on onnx/onnx.in.proto 2025-01-24T02:44:29.3532360Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx.in.proto 2025-01-24T02:44:29.3533150Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-01-24T02:44:29.3533970Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto3 2025-01-24T02:44:29.3534740Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-ml.pb.h 2025-01-24T02:44:29.3535470Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_pb.py 2025-01-24T02:44:29.3581240Z [1740/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndz-neonfp16arith-u16.c.o 2025-01-24T02:44:29.3648820Z [1741/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndne-neonfp16arith-u16.c.o 2025-01-24T02:44:29.3828810Z [1742/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u16.c.o 2025-01-24T02:44:29.4210420Z [1743/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u16.c.o 2025-01-24T02:44:29.4300800Z [1744/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u8.c.o 2025-01-24T02:44:29.4480140Z [1745/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u8.c.o 2025-01-24T02:44:29.4635100Z [1746/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vabs-neonfp16arith-u16.c.o 2025-01-24T02:44:29.4807380Z [1747/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vneg-neonfp16arith-u16.c.o 2025-01-24T02:44:29.4850590Z [1748/4997] 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-01-24T02:44:29.4897070Z [1749/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-neon-c4.c.o 2025-01-24T02:44:29.4900570Z [1750/4997] 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-01-24T02:44:29.5188330Z [1751/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-scalar-c1.c.o 2025-01-24T02:44:29.5217460Z [1752/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vsqr-neonfp16arith-u16.c.o 2025-01-24T02:44:29.5483560Z [1753/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2025-01-24T02:44:29.5542110Z [1754/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-neon-c4.c.o 2025-01-24T02:44:29.5783880Z [1755/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o 2025-01-24T02:44:29.5787120Z [1756/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-neon-c4.c.o 2025-01-24T02:44:29.5789880Z [1757/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2025-01-24T02:44:29.6075840Z [1758/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o 2025-01-24T02:44:29.6125720Z [1759/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-neon-c4.c.o 2025-01-24T02:44:29.6156650Z [1760/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-neon-c4.c.o 2025-01-24T02:44:29.6430160Z [1761/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-aarch64-neonfma-2x2.c.o 2025-01-24T02:44:29.6442920Z [1762/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o 2025-01-24T02:44:29.6598290Z [1763/4997] 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-01-24T02:44:29.6860420Z [1764/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o 2025-01-24T02:44:29.6865940Z [1765/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o 2025-01-24T02:44:29.7049810Z [1766/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-neon-2x2.c.o 2025-01-24T02:44:29.7126110Z [1767/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.o 2025-01-24T02:44:29.7408950Z [1768/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neonfma-acc2.c.o 2025-01-24T02:44:29.7416310Z [1769/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neon-acc2.c.o 2025-01-24T02:44:29.7479480Z [1770/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o 2025-01-24T02:44:29.7540410Z [1771/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o 2025-01-24T02:44:29.7749270Z [1772/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neon.c.o 2025-01-24T02:44:29.8048260Z [1773/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o 2025-01-24T02:44:29.8064480Z [1774/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o 2025-01-24T02:44:29.8099020Z [1775/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neonfma.c.o 2025-01-24T02:44:29.8389700Z [1776/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected.c.o 2025-01-24T02:44:29.8468050Z [1777/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neon.c.o 2025-01-24T02:44:29.8626740Z [1778/4997] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-prepack.cc.o 2025-01-24T02:44:29.8666810Z [1779/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected-sparse.c.o 2025-01-24T02:44:29.8673730Z [1780/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neonfma.c.o 2025-01-24T02:44:29.8898940Z [1781/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neon-acc2.c.o 2025-01-24T02:44:29.8917410Z [1782/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardsigmoid.c.o 2025-01-24T02:44:29.8962310Z [1783/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/global-average-pooling.c.o 2025-01-24T02:44:29.9145540Z [1784/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardswish.c.o 2025-01-24T02:44:29.9434990Z [1785/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/leaky-relu.c.o 2025-01-24T02:44:29.9469120Z [1786/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/max-pooling.c.o 2025-01-24T02:44:29.9634650Z [1787/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/tanh.c.o 2025-01-24T02:44:29.9669820Z [1788/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/softargmax.c.o 2025-01-24T02:44:29.9777590Z [1789/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sigmoid.c.o 2025-01-24T02:44:29.9784570Z [1790/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-delete.c.o 2025-01-24T02:44:30.0168710Z [1791/4997] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-run.cc.o 2025-01-24T02:44:30.0465420Z [1792/4997] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconv-run.cc.o 2025-01-24T02:44:30.0565890Z [1793/4997] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-dynamic-run.cc.o 2025-01-24T02:44:30.0573090Z [1794/4997] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-unpack.cc.o 2025-01-24T02:44:30.0603870Z [1795/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8lut/scalar.c.o 2025-01-24T02:44:30.0610340Z [1796/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/indirection.c.o 2025-01-24T02:44:30.0613920Z [1797/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-run.c.o 2025-01-24T02:44:30.0616750Z [1798/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8lut32norm/scalar.c.o 2025-01-24T02:44:30.1166170Z [1799/4997] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-01-24T02:44:30.1205080Z [1800/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-psimd.c.o 2025-01-24T02:44:30.1551180Z [1801/4997] Running gen_proto.py on onnx/onnx-operators.in.proto 2025-01-24T02:44:30.1553170Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx-operators.in.proto 2025-01-24T02:44:30.1556040Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-01-24T02:44:30.1558580Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto3 2025-01-24T02:44:30.1561090Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators-ml.pb.h 2025-01-24T02:44:30.1563370Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_operators_pb.py 2025-01-24T02:44:30.1606110Z [1802/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8xm-neon.c.o 2025-01-24T02:44:30.1608760Z [1803/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8x9-neon.c.o 2025-01-24T02:44:30.1635630Z [1804/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/mp8x9p8q-neon.c.o 2025-01-24T02:44:30.1711660Z [1805/4997] Running gen_proto.py on onnx/onnx-data.in.proto 2025-01-24T02:44:30.1717200Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx-data.in.proto 2025-01-24T02:44:30.1722140Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-01-24T02:44:30.1734360Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto3 2025-01-24T02:44:30.1735230Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data.pb.h 2025-01-24T02:44:30.1737750Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_data_pb.py 2025-01-24T02:44:30.1794290Z [1806/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-neon-per-channel.c.o 2025-01-24T02:44:30.2060490Z [1807/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/8x8-neon.c.o 2025-01-24T02:44:30.2167790Z [1808/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-neon.c.o 2025-01-24T02:44:30.2185710Z [1809/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/4x8-neon.c.o 2025-01-24T02:44:30.2219650Z [1810/4997] 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-01-24T02:44:30.2712780Z [1811/4997] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-01-24T02:44:30.2909020Z [1812/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-neon-per-channel.c.o 2025-01-24T02:44:30.2937140Z [1813/4997] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-run.cc.o 2025-01-24T02:44:30.2938320Z [1814/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x27-neon.c.o 2025-01-24T02:44:30.2939350Z [1815/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/mp8x7p7q-neon.c.o 2025-01-24T02:44:30.2941790Z [1816/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-neon.c.o 2025-01-24T02:44:30.3190390Z [1817/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8x7-neon.c.o 2025-01-24T02:44:30.3193520Z [1818/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x-sumrows-neon.c.o 2025-01-24T02:44:30.3238700Z [1819/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8xm-neon.c.o 2025-01-24T02:44:30.3269840Z [1820/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8-neon.c.o 2025-01-24T02:44:30.5076970Z [1821/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/assertions.cc.o 2025-01-24T02:44:30.5200950Z [1822/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/interned_strings.cc.o 2025-01-24T02:44:30.5440190Z [1823/4997] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-data_onnx_torch.pb.cc.o 2025-01-24T02:44:30.5572630Z [1824/4997] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx_onnx_torch-ml.pb.cc.o 2025-01-24T02:44:30.5935840Z [1825/4997] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-operators_onnx_torch-ml.pb.cc.o 2025-01-24T02:44:30.6062230Z [1826/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/ir_pb_converter.cc.o 2025-01-24T02:44:30.6208260Z [1827/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/path.cc.o 2025-01-24T02:44:30.6210610Z [1828/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/checker.cc.o 2025-01-24T02:44:30.6815090Z [1829/4997] Linking CXX static library lib/libonnx_proto.a 2025-01-24T02:44:30.6910770Z [1830/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/model_helpers.cc.o 2025-01-24T02:44:30.7148960Z [1831/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/status.cc.o 2025-01-24T02:44:30.8268240Z [1832/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/defs.cc.o 2025-01-24T02:44:30.8369110Z [1833/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/attr_proto_util.cc.o 2025-01-24T02:44:30.8470700Z [1834/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/old.cc.o 2025-01-24T02:44:30.8471530Z [1835/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/utils.cc.o 2025-01-24T02:44:30.8481660Z [1836/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/data_type_utils.cc.o 2025-01-24T02:44:30.8965580Z [1837/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/function.cc.o 2025-01-24T02:44:30.9159800Z [1838/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/defs.cc.o 2025-01-24T02:44:31.0263130Z [1839/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/old.cc.o 2025-01-24T02:44:31.0383170Z [1840/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/utils.cc.o 2025-01-24T02:44:31.0539970Z [1841/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/image/defs.cc.o 2025-01-24T02:44:31.0675130Z [1842/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/old.cc.o 2025-01-24T02:44:31.1335410Z [1843/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/defs.cc.o 2025-01-24T02:44:31.1469860Z [1844/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/defs.cc.o 2025-01-24T02:44:31.1574590Z [1845/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/utils.cc.o 2025-01-24T02:44:31.1760020Z [1846/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/old.cc.o 2025-01-24T02:44:31.2879740Z [1847/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/old.cc.o 2025-01-24T02:44:31.2981970Z [1848/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/old.cc.o 2025-01-24T02:44:31.3013540Z [1849/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/defs.cc.o 2025-01-24T02:44:31.3127010Z [1850/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/old.cc.o 2025-01-24T02:44:31.3230900Z [1851/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/defs.cc.o 2025-01-24T02:44:31.3627330Z [1852/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/defs.cc.o 2025-01-24T02:44:31.4217410Z [1853/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/printer.cc.o 2025-01-24T02:44:31.4480290Z [1854/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/parser.cc.o 2025-01-24T02:44:31.5403930Z [1855/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/defs.cc.o 2025-01-24T02:44:31.5417260Z [1856/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/old.cc.o 2025-01-24T02:44:31.5429280Z [1857/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/defs.cc.o 2025-01-24T02:44:31.5544490Z [1858/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/defs.cc.o 2025-01-24T02:44:31.5744950Z [1859/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/old.cc.o 2025-01-24T02:44:31.5926280Z [1860/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/utils.cc.o 2025-01-24T02:44:31.6679440Z [1861/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/old.cc.o 2025-01-24T02:44:31.6970820Z [1862/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/schema.cc.o 2025-01-24T02:44:31.7781760Z [1863/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/sequence/defs.cc.o 2025-01-24T02:44:31.8003030Z [1864/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/shape_inference.cc.o 2025-01-24T02:44:31.8291050Z [1865/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/defs.cc.o 2025-01-24T02:44:31.8301100Z [1866/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/utils.cc.o 2025-01-24T02:44:31.8319280Z [1867/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/old.cc.o 2025-01-24T02:44:31.8334310Z [1868/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_proto_util.cc.o 2025-01-24T02:44:31.8526730Z [1869/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_util.cc.o 2025-01-24T02:44:31.8885060Z [1870/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/text/defs.cc.o 2025-01-24T02:44:31.9660030Z [1871/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8c2-xzp-neon.c.o 2025-01-24T02:44:31.9810540Z [1872/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/defs.cc.o 2025-01-24T02:44:31.9898260Z [1873/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/old.cc.o 2025-01-24T02:44:32.0168740Z [1874/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8-dq-neon.c.o 2025-01-24T02:44:32.0340750Z [1875/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/6x4-neon.c.o 2025-01-24T02:44:32.0729740Z [1876/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-neon.c.o 2025-01-24T02:44:32.0846040Z [1877/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/5x8-neon.c.o 2025-01-24T02:44:32.0876360Z [1878/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8vadd/neon.c.o 2025-01-24T02:44:32.1318050Z [1879/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-neon.c.o 2025-01-24T02:44:32.1427570Z [1880/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/inliner/inliner.cc.o 2025-01-24T02:44:32.1440720Z [1881/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8clamp/neon.c.o 2025-01-24T02:44:32.1454150Z [1882/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/helper.cc.o 2025-01-24T02:44:32.1666990Z [1883/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/16x9p8q-neon.c.o 2025-01-24T02:44:32.1777460Z [1884/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/sub16-neon.c.o 2025-01-24T02:44:32.1779960Z [1885/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8rmax/neon.c.o 2025-01-24T02:44:32.2023860Z [1886/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/training/defs.cc.o 2025-01-24T02:44:32.2307440Z [1887/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x2-neon.c.o 2025-01-24T02:44:32.2402680Z [1888/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x3-neon.c.o 2025-01-24T02:44:32.2457540Z [1889/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/xm-neon.c.o 2025-01-24T02:44:32.2458840Z [1890/4997] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x4-neon.c.o 2025-01-24T02:44:32.2462610Z [1891/4997] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/8x8-aarch64-neon.S.o 2025-01-24T02:44:32.2621830Z [1892/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/convert.cc.o 2025-01-24T02:44:32.2628100Z [1893/4997] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-aarch64-neon.S.o 2025-01-24T02:44:32.2643980Z [1894/4997] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-dq-aarch64-neon.S.o 2025-01-24T02:44:32.2945690Z [1895/4997] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x4-packA-aarch64-neon.S.o 2025-01-24T02:44:32.3367660Z [1896/4997] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/shape_inference/implementation.cc.o 2025-01-24T02:44:32.3469100Z [1897/4997] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x8c8x1-dq-packedA-aarch64-neon.S.o 2025-01-24T02:44:32.3580440Z [1898/4997] Building C object confu-deps/clog/CMakeFiles/clog.dir/src/clog.c.o 2025-01-24T02:44:32.3594060Z [1899/4997] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x8c1x4-dq-packedA-aarch64-neon.S.o 2025-01-24T02:44:32.3594970Z [1900/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/init.c.o 2025-01-24T02:44:32.3610550Z [1901/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-inference.c.o 2025-01-24T02:44:32.3664890Z [1902/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/pooling-output.c.o 2025-01-24T02:44:32.3762070Z [1903/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/softmax-output.c.o 2025-01-24T02:44:32.3971560Z [1904/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-output.c.o 2025-01-24T02:44:32.4387610Z [1905/4997] Linking C static library lib/libclog.a 2025-01-24T02:44:32.4491970Z [1906/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-inference.c.o 2025-01-24T02:44:32.4604920Z [1907/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-input-gradient.c.o 2025-01-24T02:44:32.4726380Z [1908/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-input-gradient.c.o 2025-01-24T02:44:32.4729100Z [1909/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-output.c.o 2025-01-24T02:44:32.4733330Z [1910/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-output.c.o 2025-01-24T02:44:32.4734190Z [1911/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-kernel-gradient.c.o 2025-01-24T02:44:32.4838290Z [1912/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/2d-fourier-8x8.c.o 2025-01-24T02:44:32.5299200Z [1913/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/2d-fourier-16x16.c.o 2025-01-24T02:44:32.5472240Z [1914/4997] Linking CXX static library lib/libpytorch_qnnpack.a 2025-01-24T02:44:32.5623370Z [1915/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4gemm.c.o 2025-01-24T02:44:32.5651440Z [1916/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/2d-winograd-8x8-3x3.c.o 2025-01-24T02:44:32.5671360Z [1917/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/h4gemm.c.o 2025-01-24T02:44:32.5747090Z [1918/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm-conjb.c.o 2025-01-24T02:44:32.5760520Z [1919/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm-conjb.c.o 2025-01-24T02:44:32.5828970Z [1920/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/2d-winograd-8x8-3x3-fp16.c.o 2025-01-24T02:44:32.6029000Z [1921/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/conv1x1.c.o 2025-01-24T02:44:32.6593880Z [1922/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/sgemm.c.o 2025-01-24T02:44:32.6747600Z [1923/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/relu.c.o 2025-01-24T02:44:32.6761890Z [1924/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/sdotxf.c.o 2025-01-24T02:44:32.6765160Z [1925/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/softmax.c.o 2025-01-24T02:44:32.6767630Z [1926/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm.c.o 2025-01-24T02:44:32.6956870Z [1927/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm.c.o 2025-01-24T02:44:32.6961090Z [1928/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm-conjb-transc.c.o 2025-01-24T02:44:32.6962500Z [1929/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/blas/shdotxf.c.o 2025-01-24T02:44:32.7114810Z [1930/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm-conjb-transc.c.o 2025-01-24T02:44:32.7457850Z [1931/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-output.c.o 2025-01-24T02:44:32.7496150Z [1932/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-input-gradient.c.o 2025-01-24T02:44:32.7674920Z [1933/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-kernel.c.o 2025-01-24T02:44:32.7695240Z [1934/4997] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/fully-connected-output.c.o 2025-01-24T02:44:32.7799060Z [1935/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc4.c.o 2025-01-24T02:44:32.7900320Z [1936/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc4.c.o 2025-01-24T02:44:32.8057880Z [1937/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vpreluc-neonfp16arith-u16.c.o 2025-01-24T02:44:32.8058920Z [1938/4997] Linking C static library lib/libnnpack.a 2025-01-24T02:44:32.8085570Z [1939/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-neon-u16-acc4.c.o 2025-01-24T02:44:32.8430050Z [1940/4997] Linking C static library lib/libnnpack_reference_layers.a 2025-01-24T02:44:32.8584030Z [1941/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-neon-u16-acc4.c.o 2025-01-24T02:44:32.8692180Z [1942/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc4.c.o 2025-01-24T02:44:32.8818640Z [1943/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-neon-u16-acc4.c.o 2025-01-24T02:44:32.8986210Z [1944/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon.c.o 2025-01-24T02:44:32.9054960Z [1945/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o 2025-01-24T02:44:32.9146960Z [1946/4997] Linking CXX static library lib/libonnx.a 2025-01-24T02:44:32.9314670Z [1947/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-scalar-u8.c.o 2025-01-24T02:44:32.9396700Z [1948/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma-pipelined.c.o 2025-01-24T02:44:32.9730490Z [1949/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o 2025-01-24T02:44:32.9831640Z [1950/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o 2025-01-24T02:44:32.9839480Z [1951/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x2-minmax-aarch64-neonfma.c.o 2025-01-24T02:44:32.9967260Z [1952/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x4-minmax-aarch64-neonfma.c.o 2025-01-24T02:44:32.9977670Z [1953/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-neon-u8.c.o 2025-01-24T02:44:32.9979020Z [1954/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u8.c.o 2025-01-24T02:44:33.0192900Z [1955/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-neon-u8.c.o 2025-01-24T02:44:33.0210440Z [1956/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u2.c.o 2025-01-24T02:44:33.0271520Z [1957/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-aarch64-neon-u8.c.o 2025-01-24T02:44:33.0850610Z [1958/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-scalar-u8.c.o 2025-01-24T02:44:33.0854060Z [1959/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u2.c.o 2025-01-24T02:44:33.0891380Z [1960/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-aarch64-neon-u8.c.o 2025-01-24T02:44:33.0981150Z [1961/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u8.c.o 2025-01-24T02:44:33.1112290Z [1962/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-scalar-u8.c.o 2025-01-24T02:44:33.1245760Z [1963/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-scalar-u8.c.o 2025-01-24T02:44:33.1413980Z [1964/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-neon-u8.c.o 2025-01-24T02:44:33.1593200Z [1965/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-neon-u8.c.o 2025-01-24T02:44:33.1743180Z [1966/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-neon-u8.c.o 2025-01-24T02:44:33.1750050Z [1967/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-neon-u8.c.o 2025-01-24T02:44:33.1929460Z [1968/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-scalar-u8.c.o 2025-01-24T02:44:33.1964940Z [1969/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-neon-u8.c.o 2025-01-24T02:44:33.2091810Z [1970/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u8.c.o 2025-01-24T02:44:33.2157350Z [1971/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u8.c.o 2025-01-24T02:44:33.2294140Z [1972/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-neon-u8.c.o 2025-01-24T02:44:33.2331090Z [1973/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-neon-u8.c.o 2025-01-24T02:44:33.2556950Z [1974/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u8.c.o 2025-01-24T02:44:33.2718640Z [1975/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u2.c.o 2025-01-24T02:44:33.2882850Z [1976/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u8.c.o 2025-01-24T02:44:33.3117970Z [1977/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-neon-u8.c.o 2025-01-24T02:44:33.3131530Z [1978/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u8.c.o 2025-01-24T02:44:33.3171580Z [1979/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-neon-u8.c.o 2025-01-24T02:44:33.3332470Z [1980/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-neon-u8.c.o 2025-01-24T02:44:33.3473290Z [1981/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u8.c.o 2025-01-24T02:44:33.3516540Z [1982/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-aarch64-neon-u8.c.o 2025-01-24T02:44:33.3789210Z [1983/4997] 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-01-24T02:44:33.4062010Z [1984/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-neon-u8.c.o 2025-01-24T02:44:33.4064790Z [1985/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-scalar-u8.c.o 2025-01-24T02:44:33.4115430Z [1986/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-neon-u8.c.o 2025-01-24T02:44:33.4300620Z [1987/4997] 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-01-24T02:44:33.4317500Z [1988/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u8.c.o 2025-01-24T02:44:33.4327300Z [1989/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u8.c.o 2025-01-24T02:44:33.4348270Z [1990/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-neon-u8.c.o 2025-01-24T02:44:33.4458180Z [1991/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-neon-u8.c.o 2025-01-24T02:44:33.4703330Z [1992/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u4.c.o 2025-01-24T02:44:33.4815930Z [1993/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-neon-u16.c.o 2025-01-24T02:44:33.5288370Z [1994/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u4.c.o 2025-01-24T02:44:33.5310500Z [1995/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-01-24T02:44:33.5380190Z [1996/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-neon.c.o 2025-01-24T02:44:33.5503160Z [1997/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-01-24T02:44:33.5628970Z [1998/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-neon-u8.c.o 2025-01-24T02:44:33.5645670Z [1999/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u16.c.o 2025-01-24T02:44:33.5703190Z [2000/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-neon.c.o 2025-01-24T02:44:33.5746880Z [2001/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-neon.c.o 2025-01-24T02:44:33.5753370Z [2002/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-01-24T02:44:33.6416060Z [2003/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u4.c.o 2025-01-24T02:44:33.6418860Z [2004/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-scalar-exp.c.o 2025-01-24T02:44:33.6462070Z [2005/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u2.c.o 2025-01-24T02:44:33.6557060Z [2006/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-scalar-rational-12-10-div.c.o 2025-01-24T02:44:33.6735400Z [2007/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u4.c.o 2025-01-24T02:44:33.6748470Z [2008/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-scalar-rational-3-3-div.c.o 2025-01-24T02:44:33.6911000Z [2009/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u8.c.o 2025-01-24T02:44:33.7116150Z [2010/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u8.c.o 2025-01-24T02:44:33.7129390Z [2011/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-neon-u16.c.o 2025-01-24T02:44:33.7317070Z [2012/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u4.c.o 2025-01-24T02:44:33.7343600Z [2013/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o 2025-01-24T02:44:33.7519750Z [2014/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-neon-rational-3-3-div.c.o 2025-01-24T02:44:33.7593040Z [2015/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-neon-u8.c.o 2025-01-24T02:44:33.7697460Z [2016/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-neon-rational-12-10-div.c.o 2025-01-24T02:44:33.7969100Z [2017/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u8.c.o 2025-01-24T02:44:33.8079110Z [2018/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neon-2x.c.o 2025-01-24T02:44:33.8150100Z [2019/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neonfma-2x.c.o 2025-01-24T02:44:33.8365790Z [2020/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u1.c.o 2025-01-24T02:44:33.8510780Z [2021/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u4.c.o 2025-01-24T02:44:33.8674430Z [2022/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-neonv8-u8.c.o 2025-01-24T02:44:33.8682810Z [2023/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-neon-u8.c.o 2025-01-24T02:44:33.8792650Z [2024/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-neon-u8.c.o 2025-01-24T02:44:33.8793790Z [2025/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u1.c.o 2025-01-24T02:44:33.8794820Z [2026/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-neonv8-u8.c.o 2025-01-24T02:44:33.9040800Z [2027/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u4.c.o 2025-01-24T02:44:33.9455620Z [2028/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-neonv8-u8.c.o 2025-01-24T02:44:33.9525340Z [2029/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u1.c.o 2025-01-24T02:44:33.9632280Z [2030/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-neon-u8.c.o 2025-01-24T02:44:33.9685040Z [2031/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-neonv8-u8.c.o 2025-01-24T02:44:33.9807480Z [2032/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u4.c.o 2025-01-24T02:44:33.9848920Z [2033/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u1.c.o 2025-01-24T02:44:33.9904330Z [2034/4997] 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-01-24T02:44:33.9971150Z [2035/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o 2025-01-24T02:44:34.0342470Z [2036/4997] 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-01-24T02:44:34.0705250Z [2037/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-neon-u8.c.o 2025-01-24T02:44:34.0741570Z [2038/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar-acc2.c.o 2025-01-24T02:44:34.0891620Z [2039/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neonfma.c.o 2025-01-24T02:44:34.0910620Z [2040/4997] 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-01-24T02:44:34.0914220Z [2041/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neon.c.o 2025-01-24T02:44:34.0923060Z [2042/4997] 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-01-24T02:44:34.1476360Z [2043/4997] 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-01-24T02:44:34.1490920Z [2044/4997] 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-01-24T02:44:34.1494940Z [2045/4997] 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-01-24T02:44:34.1506040Z [2046/4997] 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-01-24T02:44:34.1779200Z [2047/4997] 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-01-24T02:44:34.1822140Z [2048/4997] 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-01-24T02:44:34.1845720Z [2049/4997] 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-01-24T02:44:34.1977350Z [2050/4997] 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-01-24T02:44:34.2130880Z [2051/4997] 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-01-24T02:44:34.2591350Z [2052/4997] 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-01-24T02:44:34.2793200Z [2053/4997] 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-01-24T02:44:34.2800890Z [2054/4997] 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-01-24T02:44:34.2863850Z [2055/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u4.c.o 2025-01-24T02:44:34.2880030Z [2056/4997] 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-01-24T02:44:34.2998240Z [2057/4997] 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-01-24T02:44:34.3183790Z [2058/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u2.c.o 2025-01-24T02:44:34.3224640Z [2059/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u8.c.o 2025-01-24T02:44:34.3279920Z [2060/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neonfp16-u16.c.o 2025-01-24T02:44:34.3557930Z [2061/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o 2025-01-24T02:44:34.3861350Z [2062/4997] 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-01-24T02:44:34.3878090Z [2063/4997] 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-01-24T02:44:34.3886830Z [2064/4997] 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-01-24T02:44:34.3911620Z [2065/4997] 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-01-24T02:44:34.4211150Z [2066/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-relu-scalar.c.o 2025-01-24T02:44:34.4300270Z [2067/4997] 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-01-24T02:44:34.4309060Z [2068/4997] 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-01-24T02:44:34.4399500Z [2069/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o 2025-01-24T02:44:34.4504040Z [2070/4997] 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-01-24T02:44:34.5027120Z [2071/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-lane-ld64.c.o 2025-01-24T02:44:34.5212950Z [2072/4997] 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-01-24T02:44:34.5242560Z [2073/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-relu-scalar.c.o 2025-01-24T02:44:34.5306570Z [2074/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o 2025-01-24T02:44:34.5417630Z [2075/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-neonfma.c.o 2025-01-24T02:44:34.5441330Z [2076/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-scalar.c.o 2025-01-24T02:44:34.5549200Z [2077/4997] 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-01-24T02:44:34.5559530Z [2078/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o 2025-01-24T02:44:34.5596130Z [2079/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-minmax-scalar.c.o 2025-01-24T02:44:34.5718710Z [2080/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-neon-lane-ld64.c.o 2025-01-24T02:44:34.6163880Z [2081/4997] 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-01-24T02:44:34.6266530Z [2082/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o 2025-01-24T02:44:34.6285440Z [2083/4997] 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-01-24T02:44:34.6373720Z [2084/4997] 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-01-24T02:44:34.6477920Z [2085/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o 2025-01-24T02:44:34.6479550Z [2086/4997] 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-01-24T02:44:34.6483820Z [2087/4997] 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-01-24T02:44:34.6707570Z [2088/4997] 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-01-24T02:44:34.7230580Z [2089/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o 2025-01-24T02:44:34.7233900Z [2090/4997] 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-01-24T02:44:34.7332600Z [2091/4997] 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-01-24T02:44:34.7337910Z [2092/4997] 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-01-24T02:44:34.7360090Z [2093/4997] 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-01-24T02:44:34.7387680Z [2094/4997] 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-01-24T02:44:34.7419820Z [2095/4997] 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-01-24T02:44:34.7711430Z [2096/4997] 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-01-24T02:44:34.8192270Z [2097/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:34.8292560Z [2098/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-neonfma.c.o 2025-01-24T02:44:34.8402740Z [2099/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p8.c.o 2025-01-24T02:44:34.8404620Z [2100/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p8.c.o 2025-01-24T02:44:34.8412110Z [2101/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-neonfma-c8.c.o 2025-01-24T02:44:34.8413330Z [2102/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p4.c.o 2025-01-24T02:44:34.8451630Z [2103/4997] 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-01-24T02:44:34.8453610Z [2104/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c2.c.o 2025-01-24T02:44:34.8619330Z [2105/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-neon-c8.c.o 2025-01-24T02:44:34.9120810Z [2106/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8s4-minmax-neonfma.c.o 2025-01-24T02:44:34.9236210Z [2107/4997] 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-01-24T02:44:34.9262900Z [2108/4997] 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-01-24T02:44:34.9392770Z [2109/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o 2025-01-24T02:44:34.9399520Z [2110/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-scalar.c.o 2025-01-24T02:44:34.9452270Z [2111/4997] 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-01-24T02:44:34.9577500Z [2112/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o 2025-01-24T02:44:34.9581870Z [2113/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o 2025-01-24T02:44:34.9727530Z [2114/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c16.c.o 2025-01-24T02:44:34.9759420Z [2115/4997] 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-01-24T02:44:35.0109190Z [2116/4997] 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-01-24T02:44:35.0238280Z [2117/4997] 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-01-24T02:44:35.0338580Z [2118/4997] 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-01-24T02:44:35.0412120Z [2119/4997] 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-01-24T02:44:35.0609090Z [2120/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o 2025-01-24T02:44:35.0687870Z [2121/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o 2025-01-24T02:44:35.0707480Z [2122/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-lane-ld64.c.o 2025-01-24T02:44:35.0720600Z [2123/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-neonfma.c.o 2025-01-24T02:44:35.0867400Z [2124/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o 2025-01-24T02:44:35.1139960Z [2125/4997] 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-01-24T02:44:35.1216360Z [2126/4997] 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-01-24T02:44:35.1460820Z [2127/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o 2025-01-24T02:44:35.1522750Z [2128/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-neon-lane-ld64.c.o 2025-01-24T02:44:35.1535720Z [2129/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2025-01-24T02:44:35.1748400Z [2130/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o 2025-01-24T02:44:35.1769480Z [2131/4997] 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-01-24T02:44:35.1777710Z [2132/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o 2025-01-24T02:44:35.1809130Z [2133/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o 2025-01-24T02:44:35.1812730Z [2134/4997] 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-01-24T02:44:35.2164200Z [2135/4997] 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-01-24T02:44:35.2387030Z [2136/4997] 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-01-24T02:44:35.2424280Z [2137/4997] 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-01-24T02:44:35.2784390Z [2138/4997] 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-01-24T02:44:35.2786010Z [2139/4997] 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-01-24T02:44:35.2807100Z [2140/4997] 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-01-24T02:44:35.2834590Z [2141/4997] 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-01-24T02:44:35.2867260Z [2142/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:35.3157150Z [2143/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-neonfma.c.o 2025-01-24T02:44:35.3491100Z [2144/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-scalar-c1.c.o 2025-01-24T02:44:35.3517450Z [2145/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-neon-c4.c.o 2025-01-24T02:44:35.3536420Z [2146/4997] 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-01-24T02:44:35.3732040Z [2147/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o 2025-01-24T02:44:35.3769430Z [2148/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-scalar-c1.c.o 2025-01-24T02:44:35.3913060Z [2149/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8s4-minmax-neonfma.c.o 2025-01-24T02:44:35.3936730Z [2150/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-01-24T02:44:35.4287770Z [2151/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-neon-c4.c.o 2025-01-24T02:44:35.4476930Z [2152/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-neon-c4.c.o 2025-01-24T02:44:35.4826250Z [2153/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-01-24T02:44:35.4860580Z [2154/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-01-24T02:44:35.4873190Z [2155/4997] 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-01-24T02:44:35.4962000Z [2156/4997] 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-01-24T02:44:35.5044380Z [2157/4997] 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-01-24T02:44:35.5048650Z [2158/4997] 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-01-24T02:44:35.5065870Z [2159/4997] 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-01-24T02:44:35.5302920Z [2160/4997] 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-01-24T02:44:35.5515080Z [2161/4997] 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-01-24T02:44:35.5797420Z [2162/4997] 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-01-24T02:44:35.5813260Z [2163/4997] 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-01-24T02:44:35.6055180Z [2164/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-01-24T02:44:35.6074010Z [2165/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u4.c.o 2025-01-24T02:44:35.6077440Z [2166/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u32.c.o 2025-01-24T02:44:35.6266790Z [2167/4997] 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-01-24T02:44:35.6445320Z [2168/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u1.c.o 2025-01-24T02:44:35.6670400Z [2169/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u32.c.o 2025-01-24T02:44:35.6752740Z [2170/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2025-01-24T02:44:35.6786460Z [2171/4997] 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-01-24T02:44:35.6852720Z [2172/4997] 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-01-24T02:44:35.6875690Z [2173/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u32.c.o 2025-01-24T02:44:35.6933930Z [2174/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u4.c.o 2025-01-24T02:44:35.7126320Z [2175/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u1.c.o 2025-01-24T02:44:35.7171950Z [2176/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u32.c.o 2025-01-24T02:44:35.7173090Z [2177/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u4.c.o 2025-01-24T02:44:35.7950990Z [2178/4997] 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-01-24T02:44:35.8057960Z [2179/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.o 2025-01-24T02:44:35.8062660Z [2180/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u4.c.o 2025-01-24T02:44:35.8155800Z [2181/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:35.8193590Z [2182/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:35.8339290Z [2183/4997] 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-01-24T02:44:35.8364630Z [2184/4997] 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-01-24T02:44:35.8371410Z [2185/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:35.8487790Z [2186/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:35.8617110Z [2187/4997] 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-01-24T02:44:35.8959650Z [2188/4997] 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-01-24T02:44:35.9081560Z [2189/4997] 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-01-24T02:44:35.9172520Z [2190/4997] 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-01-24T02:44:35.9347450Z [2191/4997] 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-01-24T02:44:35.9450610Z [2192/4997] 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-01-24T02:44:35.9595290Z [2193/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:35.9778530Z [2194/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:35.9844610Z [2195/4997] 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-01-24T02:44:36.0143670Z [2196/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:36.0174870Z [2197/4997] 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-01-24T02:44:36.0359530Z [2198/4997] 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-01-24T02:44:36.0369170Z [2199/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:36.0477480Z [2200/4997] 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-01-24T02:44:36.0814580Z [2201/4997] 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-01-24T02:44:36.1014540Z [2202/4997] 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-01-24T02:44:36.1020050Z [2203/4997] 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-01-24T02:44:36.1026850Z [2204/4997] 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-01-24T02:44:36.1038000Z [2205/4997] 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-01-24T02:44:36.1273160Z [2206/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-scalar.c.o 2025-01-24T02:44:36.1367210Z [2207/4997] 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-01-24T02:44:36.1807030Z [2208/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-neon-u32-acc2.c.o 2025-01-24T02:44:36.1832170Z [2209/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u16.c.o 2025-01-24T02:44:36.1935460Z [2210/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u32.c.o 2025-01-24T02:44:36.1961350Z [2211/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u4.c.o 2025-01-24T02:44:36.2115290Z [2212/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u1.c.o 2025-01-24T02:44:36.2120420Z [2213/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u16.c.o 2025-01-24T02:44:36.2182250Z [2214/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u4.c.o 2025-01-24T02:44:36.2610890Z [2215/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u32.c.o 2025-01-24T02:44:36.2613820Z [2216/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u32.c.o 2025-01-24T02:44:36.2621590Z [2217/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u16.c.o 2025-01-24T02:44:36.2868060Z [2218/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u4.c.o 2025-01-24T02:44:36.2913200Z [2219/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u4.c.o 2025-01-24T02:44:36.2965810Z [2220/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u1.c.o 2025-01-24T02:44:36.3003640Z [2221/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u1.c.o 2025-01-24T02:44:36.3059370Z [2222/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u4.c.o 2025-01-24T02:44:36.3072990Z [2223/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u32.c.o 2025-01-24T02:44:36.3562190Z [2224/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u32.c.o 2025-01-24T02:44:36.3881930Z [2225/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u4.c.o 2025-01-24T02:44:36.3914930Z [2226/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u4.c.o 2025-01-24T02:44:36.4019210Z [2227/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u4.c.o 2025-01-24T02:44:36.4027520Z [2228/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-scalar.c.o 2025-01-24T02:44:36.4040270Z [2229/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2025-01-24T02:44:36.4159430Z [2230/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-neon.c.o 2025-01-24T02:44:36.4163380Z [2231/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-01-24T02:44:36.4340520Z [2232/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c16.c.o 2025-01-24T02:44:36.4576260Z [2233/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2025-01-24T02:44:36.4626450Z [2234/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c8.c.o 2025-01-24T02:44:36.4873960Z [2235/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o 2025-01-24T02:44:36.5058200Z [2236/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-scalar-u4.c.o 2025-01-24T02:44:36.5109520Z [2237/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o 2025-01-24T02:44:36.5152780Z [2238/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-neon-c16.c.o 2025-01-24T02:44:36.5157000Z [2239/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c16.c.o 2025-01-24T02:44:36.5197690Z [2240/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-neon-u64.c.o 2025-01-24T02:44:36.5387070Z [2241/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c8.c.o 2025-01-24T02:44:36.5414940Z [2242/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-scalar.c.o 2025-01-24T02:44:36.5946710Z [2243/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-01-24T02:44:36.6134930Z [2244/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-neon-c16.c.o 2025-01-24T02:44:36.6235330Z [2245/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-neon-u16.c.o 2025-01-24T02:44:36.6301280Z [2246/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-scalar-u2.c.o 2025-01-24T02:44:36.6303610Z [2247/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-scalar-u4.c.o 2025-01-24T02:44:36.6304910Z [2248/4997] 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-01-24T02:44:36.6356180Z [2249/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o 2025-01-24T02:44:36.6525740Z [2250/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-neon-u64.c.o 2025-01-24T02:44:36.6553180Z [2251/4997] 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-01-24T02:44:36.6936400Z [2252/4997] 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-01-24T02:44:36.7189290Z [2253/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o 2025-01-24T02:44:36.7393960Z [2254/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-dec-zip-neon.c.o 2025-01-24T02:44:36.7397820Z [2255/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-2x2-neon-tbl64.c.o 2025-01-24T02:44:36.7420640Z [2256/4997] 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-01-24T02:44:36.7440320Z [2257/4997] 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-01-24T02:44:36.7569680Z [2258/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-4x4-aarch64-neon-tbl128.c.o 2025-01-24T02:44:36.7585670Z [2259/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-pack-lh/x32-packlh-neonsme2.c.o 2025-01-24T02:44:36.7586920Z /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-01-24T02:44:36.7587700Z } 2025-01-24T02:44:36.7587850Z ^ 2025-01-24T02:44:36.7588000Z 1 warning generated. 2025-01-24T02:44:36.7590700Z [2260/4997] 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-01-24T02:44:36.7609040Z [2261/4997] 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-01-24T02:44:36.8277590Z [2262/4997] 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-01-24T02:44:36.8304460Z [2263/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o 2025-01-24T02:44:36.8392390Z [2264/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-scalar.c.o 2025-01-24T02:44:36.8530530Z [2265/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-scalar.c.o 2025-01-24T02:44:36.8553160Z [2266/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-scalar.c.o 2025-01-24T02:44:36.8627920Z [2267/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-dec-zip-neon.c.o 2025-01-24T02:44:36.8821820Z [2268/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-neon.c.o 2025-01-24T02:44:36.8838900Z [2269/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-neon.c.o 2025-01-24T02:44:36.8990090Z [2270/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-neon.c.o 2025-01-24T02:44:36.9146030Z [2271/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/x32-transposec-4x4-aarch64-neon-tbl128.c.o 2025-01-24T02:44:36.9371520Z [2272/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-scalar.c.o 2025-01-24T02:44:36.9438400Z [2273/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-scalar.c.o 2025-01-24T02:44:36.9613520Z [2274/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-neon.c.o 2025-01-24T02:44:36.9665160Z [2275/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o 2025-01-24T02:44:36.9671580Z [2276/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-neon.c.o 2025-01-24T02:44:36.9703160Z [2277/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-dec-zip-neon.c.o 2025-01-24T02:44:36.9917320Z [2278/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-scalar-u4.c.o 2025-01-24T02:44:37.0274010Z [2279/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-aarch64-neon-f32qp8-u2.c.o 2025-01-24T02:44:37.0288370Z [2280/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-dec-zip-neon.c.o 2025-01-24T02:44:37.0295010Z [2281/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u64.c.o 2025-01-24T02:44:37.0302770Z [2282/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-scalar-f32qp8-u1.c.o 2025-01-24T02:44:37.0440610Z [2283/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u2.c.o 2025-01-24T02:44:37.0582830Z [2284/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u2.c.o 2025-01-24T02:44:37.0601160Z [2285/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u2.c.o 2025-01-24T02:44:37.0626580Z [2286/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u2.c.o 2025-01-24T02:44:37.0830000Z [2287/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o 2025-01-24T02:44:37.0890970Z [2288/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-dec-zip-neon.c.o 2025-01-24T02:44:37.1280420Z [2289/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-scalar.c.o 2025-01-24T02:44:37.1283260Z [2290/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-scalar.c.o 2025-01-24T02:44:37.1468810Z [2291/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-scalar.c.o 2025-01-24T02:44:37.1481380Z [2292/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-neon.c.o 2025-01-24T02:44:37.1518410Z [2293/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-scalar.c.o 2025-01-24T02:44:37.1570940Z [2294/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-neon.c.o 2025-01-24T02:44:37.1597330Z [2295/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-neon.c.o 2025-01-24T02:44:37.1940940Z [2296/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o 2025-01-24T02:44:37.1999530Z [2297/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-neon.c.o 2025-01-24T02:44:37.2150760Z [2298/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-neon-u64.c.o 2025-01-24T02:44:37.2205870Z [2299/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-scalar-u16.c.o 2025-01-24T02:44:37.2377560Z [2300/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-transposev/xx-transposev-1x1-scalar-memcpy.c.o 2025-01-24T02:44:37.2385220Z [2301/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p16-neon-u16.c.o 2025-01-24T02:44:37.2386710Z [2302/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2025-01-24T02:44:37.2419930Z [2303/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p4-scalar-u16.c.o 2025-01-24T02:44:37.2446800Z [2304/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2025-01-24T02:44:37.2598000Z [2305/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2025-01-24T02:44:37.2997420Z [2306/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2025-01-24T02:44:37.3057180Z [2307/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2025-01-24T02:44:37.3158540Z [2308/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2025-01-24T02:44:37.3288930Z [2309/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2025-01-24T02:44:37.3300270Z [2310/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-01-24T02:44:37.3304620Z [2311/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2025-01-24T02:44:37.3485460Z [2312/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar.c.o 2025-01-24T02:44:37.3488310Z [2313/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar-acc2.c.o 2025-01-24T02:44:37.3632470Z [2314/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-minmax-scalar.c.o 2025-01-24T02:44:37.3635250Z [2315/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar.c.o 2025-01-24T02:44:37.4119340Z [2316/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-minmax-scalar-acc2.c.o 2025-01-24T02:44:37.4340850Z [2317/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-minmax-scalar.c.o 2025-01-24T02:44:37.4353080Z [2318/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-minmax-scalar-acc2.c.o 2025-01-24T02:44:37.4473840Z [2319/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u4.c.o 2025-01-24T02:44:37.4493310Z [2320/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-scalar-acc2.c.o 2025-01-24T02:44:37.4509020Z [2321/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u1.c.o 2025-01-24T02:44:37.4529190Z [2322/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u4.c.o 2025-01-24T02:44:37.4561190Z [2323/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u16.c.o 2025-01-24T02:44:37.4842550Z [2324/4997] 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-01-24T02:44:37.4954180Z [2325/4997] 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-01-24T02:44:37.5286710Z [2326/4997] 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-01-24T02:44:37.5456750Z [2327/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-scalar.c.o 2025-01-24T02:44:37.5531690Z [2328/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u1.c.o 2025-01-24T02:44:37.5550020Z [2329/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-scalar-rational-9-8-div.c.o 2025-01-24T02:44:37.5767130Z [2330/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u4.c.o 2025-01-24T02:44:37.5774700Z [2331/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-neon.c.o 2025-01-24T02:44:37.5867860Z [2332/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-scalar.c.o 2025-01-24T02:44:37.6122260Z [2333/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-scalar.c.o 2025-01-24T02:44:37.6337810Z [2334/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-neon-rational-9-8-div.c.o 2025-01-24T02:44:37.6344370Z [2335/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-neon.c.o 2025-01-24T02:44:37.6448380Z [2336/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/pf32-gemm/pf32-gemm-32x32-minmax-neonsme2.c.o 2025-01-24T02:44:37.6454970Z /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-01-24T02:44:37.6466910Z } 2025-01-24T02:44:37.6477770Z ^ 2025-01-24T02:44:37.6486210Z /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-01-24T02:44:37.6500260Z } 2025-01-24T02:44:37.6503830Z ^ 2025-01-24T02:44:37.6504170Z 2 warnings generated. 2025-01-24T02:44:37.6505000Z [2337/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-neon.c.o 2025-01-24T02:44:37.7059020Z [2338/4997] 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-01-24T02:44:37.7136360Z [2339/4997] 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-01-24T02:44:37.7254300Z [2340/4997] 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-01-24T02:44:37.7278190Z [2341/4997] 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-01-24T02:44:37.7283120Z [2342/4997] 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-01-24T02:44:37.7405770Z [2343/4997] 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-01-24T02:44:37.7648030Z [2344/4997] 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-01-24T02:44:37.8025160Z [2345/4997] 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-01-24T02:44:37.8229300Z [2346/4997] 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-01-24T02:44:37.8242530Z [2347/4997] 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-01-24T02:44:37.8258570Z [2348/4997] 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-01-24T02:44:37.8305750Z [2349/4997] 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-01-24T02:44:37.8468650Z [2350/4997] 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-01-24T02:44:37.8664760Z [2351/4997] 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-01-24T02:44:37.8845820Z [2352/4997] 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-01-24T02:44:37.8964410Z [2353/4997] 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-01-24T02:44:37.9083400Z [2354/4997] 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-01-24T02:44:37.9149150Z [2355/4997] 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-01-24T02:44:37.9227480Z [2356/4997] 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-01-24T02:44:37.9248860Z [2357/4997] 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-01-24T02:44:37.9396230Z [2358/4997] 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-01-24T02:44:37.9634650Z [2359/4997] 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-01-24T02:44:37.9915940Z [2360/4997] 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-01-24T02:44:38.0068940Z [2361/4997] 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-01-24T02:44:38.0386560Z [2362/4997] 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-01-24T02:44:38.0408970Z [2363/4997] 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-01-24T02:44:38.0513930Z [2364/4997] 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-01-24T02:44:38.0620610Z [2365/4997] 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-01-24T02:44:38.0730620Z [2366/4997] 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-01-24T02:44:38.0770450Z [2367/4997] 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-01-24T02:44:38.1200650Z [2368/4997] 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-01-24T02:44:38.1294220Z [2369/4997] 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-01-24T02:44:38.1395340Z [2370/4997] 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-01-24T02:44:38.1491100Z [2371/4997] 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-01-24T02:44:38.1784610Z [2372/4997] 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-01-24T02:44:38.1797530Z [2373/4997] 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-01-24T02:44:38.1804710Z [2374/4997] 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-01-24T02:44:38.2036430Z [2375/4997] 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-01-24T02:44:38.2163540Z [2376/4997] 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-01-24T02:44:38.2205870Z [2377/4997] 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-01-24T02:44:38.2518660Z [2378/4997] 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-01-24T02:44:38.2659720Z [2379/4997] 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-01-24T02:44:38.2664540Z [2380/4997] 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-01-24T02:44:38.2683330Z [2381/4997] 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-01-24T02:44:38.2935680Z [2382/4997] 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-01-24T02:44:38.3233660Z [2383/4997] 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-01-24T02:44:38.3245200Z [2384/4997] 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-01-24T02:44:38.3330010Z [2385/4997] 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-01-24T02:44:38.3600410Z [2386/4997] 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-01-24T02:44:38.3746930Z [2387/4997] 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-01-24T02:44:38.3758330Z [2388/4997] 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-01-24T02:44:38.3805440Z [2389/4997] 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-01-24T02:44:38.3901440Z [2390/4997] 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-01-24T02:44:38.4058740Z [2391/4997] 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-01-24T02:44:38.4106900Z [2392/4997] 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-01-24T02:44:38.4594780Z [2393/4997] 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-01-24T02:44:38.4599000Z [2394/4997] 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-01-24T02:44:38.4652250Z [2395/4997] 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-01-24T02:44:38.4672240Z [2396/4997] 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-01-24T02:44:38.4777670Z [2397/4997] 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-01-24T02:44:38.4779050Z [2398/4997] 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-01-24T02:44:38.4845280Z [2399/4997] 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-01-24T02:44:38.5023640Z [2400/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:38.5516350Z [2401/4997] 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-01-24T02:44:38.5535780Z [2402/4997] 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-01-24T02:44:38.5620660Z [2403/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:38.5651190Z [2404/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:38.5838120Z [2405/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:38.5943070Z [2406/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:38.5976940Z [2407/4997] 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-01-24T02:44:38.6103640Z [2408/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:38.6331140Z [2409/4997] 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-01-24T02:44:38.6386600Z [2410/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u32.c.o 2025-01-24T02:44:38.6613890Z [2411/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u1.c.o 2025-01-24T02:44:38.6753740Z [2412/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-goi-scalar.c.o 2025-01-24T02:44:38.6850810Z [2413/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-goi-scalar.c.o 2025-01-24T02:44:38.6860760Z [2414/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u4.c.o 2025-01-24T02:44:38.6970080Z [2415/4997] 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-01-24T02:44:38.6994610Z [2416/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u32.c.o 2025-01-24T02:44:38.7094690Z [2417/4997] 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-01-24T02:44:38.7563270Z [2418/4997] 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-01-24T02:44:38.7647540Z [2419/4997] 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-01-24T02:44:38.7951930Z [2420/4997] 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-01-24T02:44:38.7956600Z [2421/4997] 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-01-24T02:44:38.7960860Z [2422/4997] 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-01-24T02:44:38.7970830Z [2423/4997] 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-01-24T02:44:38.7984310Z [2424/4997] 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-01-24T02:44:38.7998680Z [2425/4997] 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-01-24T02:44:38.8214920Z [2426/4997] 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-01-24T02:44:38.8225530Z [2427/4997] 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-01-24T02:44:38.9003330Z [2428/4997] 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-01-24T02:44:38.9052210Z [2429/4997] 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-01-24T02:44:38.9166690Z [2430/4997] 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-01-24T02:44:38.9230570Z [2431/4997] 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-01-24T02:44:38.9233080Z [2432/4997] 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-01-24T02:44:38.9242450Z [2433/4997] 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-01-24T02:44:38.9243720Z [2434/4997] 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-01-24T02:44:38.9327790Z [2435/4997] 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-01-24T02:44:38.9437630Z [2436/4997] 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-01-24T02:44:39.0117730Z [2437/4997] 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-01-24T02:44:39.0126100Z [2438/4997] 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-01-24T02:44:39.0129910Z [2439/4997] 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-01-24T02:44:39.0168820Z [2440/4997] 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-01-24T02:44:39.0182870Z [2441/4997] 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-01-24T02:44:39.0186880Z [2442/4997] 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-01-24T02:44:39.0292700Z [2443/4997] 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-01-24T02:44:39.0296670Z [2444/4997] 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-01-24T02:44:39.0995030Z [2445/4997] 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-01-24T02:44:39.1008570Z [2446/4997] 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-01-24T02:44:39.1040090Z [2447/4997] 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-01-24T02:44:39.1129010Z [2448/4997] 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-01-24T02:44:39.1343970Z [2449/4997] 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-01-24T02:44:39.1441610Z [2450/4997] 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-01-24T02:44:39.1446750Z [2451/4997] 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-01-24T02:44:39.1708110Z [2452/4997] 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-01-24T02:44:39.1711590Z [2453/4997] 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-01-24T02:44:39.1943650Z [2454/4997] 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-01-24T02:44:39.2147490Z [2455/4997] 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-01-24T02:44:39.2224790Z [2456/4997] 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-01-24T02:44:39.2314740Z [2457/4997] 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-01-24T02:44:39.2455670Z [2458/4997] 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-01-24T02:44:39.2531010Z [2459/4997] 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-01-24T02:44:39.2535120Z [2460/4997] 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-01-24T02:44:39.2758380Z [2461/4997] 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-01-24T02:44:39.2939070Z [2462/4997] 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-01-24T02:44:39.3114410Z [2463/4997] 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-01-24T02:44:39.3130340Z [2464/4997] 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-01-24T02:44:39.3190490Z [2465/4997] 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-01-24T02:44:39.3309220Z [2466/4997] 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-01-24T02:44:39.3362000Z [2467/4997] 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-01-24T02:44:39.3366480Z [2468/4997] 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-01-24T02:44:39.3599290Z [2469/4997] 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-01-24T02:44:39.3657770Z [2470/4997] 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-01-24T02:44:39.3729290Z [2471/4997] 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-01-24T02:44:39.4285680Z [2472/4997] 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-01-24T02:44:39.4370220Z [2473/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.o 2025-01-24T02:44:39.4385060Z [2474/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-neon-u32-acc2.c.o 2025-01-24T02:44:39.4513230Z [2475/4997] 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-01-24T02:44:39.4565010Z [2476/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u32-acc2.c.o 2025-01-24T02:44:39.4570520Z [2477/4997] 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-01-24T02:44:39.4573630Z [2478/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u4.c.o 2025-01-24T02:44:39.4956450Z [2479/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c32.c.o 2025-01-24T02:44:39.5177010Z [2480/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u32.c.o 2025-01-24T02:44:39.5182210Z [2481/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u16.c.o 2025-01-24T02:44:39.5192690Z [2482/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u1.c.o 2025-01-24T02:44:39.5411100Z [2483/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u4.c.o 2025-01-24T02:44:39.5416380Z [2484/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u4.c.o 2025-01-24T02:44:39.5585450Z [2485/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u1.c.o 2025-01-24T02:44:39.5589160Z [2486/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u1.c.o 2025-01-24T02:44:39.6022650Z [2487/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u16.c.o 2025-01-24T02:44:39.6178210Z [2488/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u4.c.o 2025-01-24T02:44:39.6200600Z [2489/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u32.c.o 2025-01-24T02:44:39.6219870Z [2490/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u32.c.o 2025-01-24T02:44:39.6253590Z [2491/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u4.c.o 2025-01-24T02:44:39.6397630Z [2492/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u4.c.o 2025-01-24T02:44:39.6413850Z [2493/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u32.c.o 2025-01-24T02:44:39.6640450Z [2494/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u4.c.o 2025-01-24T02:44:39.6648600Z [2495/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u4.c.o 2025-01-24T02:44:39.6983720Z [2496/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2025-01-24T02:44:39.7209690Z [2497/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.o 2025-01-24T02:44:39.7232240Z [2498/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.o 2025-01-24T02:44:39.7295730Z [2499/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-neon-c8.c.o 2025-01-24T02:44:39.7308040Z [2500/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:39.7362880Z [2501/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:39.7620170Z [2502/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-neon-c8.c.o 2025-01-24T02:44:39.7642720Z [2503/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:39.8037790Z [2504/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2025-01-24T02:44:39.8246890Z [2505/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:39.8257000Z [2506/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-rndnu-neon-mul8.c.o 2025-01-24T02:44:39.8291620Z [2507/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-rndnu-neon-mul8.c.o 2025-01-24T02:44:39.8308860Z [2508/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u1.c.o 2025-01-24T02:44:39.8442860Z [2509/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o 2025-01-24T02:44:39.8463990Z [2510/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:39.8625670Z [2511/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x4-minmax-scalar.c.o 2025-01-24T02:44:39.8682950Z [2512/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:39.9072840Z [2513/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u32.c.o 2025-01-24T02:44:39.9331330Z [2514/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-2x4-minmax-scalar.c.o 2025-01-24T02:44:39.9415660Z [2515/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-scalar.c.o 2025-01-24T02:44:39.9417310Z [2516/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-minmax-scalar.c.o 2025-01-24T02:44:39.9423710Z [2517/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x2-minmax-scalar.c.o 2025-01-24T02:44:39.9495000Z [2518/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-relu-scalar.c.o 2025-01-24T02:44:39.9512050Z [2519/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-relu-scalar.c.o 2025-01-24T02:44:39.9680930Z [2520/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-scalar.c.o 2025-01-24T02:44:39.9742680Z [2521/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-scalar.c.o 2025-01-24T02:44:39.9800590Z [2522/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-relu-scalar.c.o 2025-01-24T02:44:40.0371860Z [2523/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-scalar.c.o 2025-01-24T02:44:40.0442910Z [2524/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-relu-scalar.c.o 2025-01-24T02:44:40.0558680Z [2525/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-4x1-minmax-scalar.c.o 2025-01-24T02:44:40.0576160Z [2526/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-2x1-minmax-scalar.c.o 2025-01-24T02:44:40.0599880Z [2527/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x2-minmax-scalar.c.o 2025-01-24T02:44:40.0656940Z [2528/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-1x1-minmax-scalar.c.o 2025-01-24T02:44:40.0662530Z [2529/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x1-minmax-scalar.c.o 2025-01-24T02:44:40.0720260Z [2530/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u1.c.o 2025-01-24T02:44:40.0869150Z [2531/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x4-minmax-scalar.c.o 2025-01-24T02:44:40.1274700Z [2532/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-scalar.c.o 2025-01-24T02:44:40.1336310Z [2533/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u2.c.o 2025-01-24T02:44:40.1409680Z [2534/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u3.c.o 2025-01-24T02:44:40.1425940Z [2535/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u2.c.o 2025-01-24T02:44:40.1559410Z [2536/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u2.c.o 2025-01-24T02:44:40.1617480Z [2537/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u3.c.o 2025-01-24T02:44:40.1630210Z [2538/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u4.c.o 2025-01-24T02:44:40.1962160Z [2539/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u3.c.o 2025-01-24T02:44:40.2006950Z [2540/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u1.c.o 2025-01-24T02:44:40.2298740Z [2541/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u1.c.o 2025-01-24T02:44:40.2299870Z [2542/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u3.c.o 2025-01-24T02:44:40.2325920Z [2543/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u4.c.o 2025-01-24T02:44:40.2425060Z [2544/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u2.c.o 2025-01-24T02:44:40.2485730Z [2545/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u2.c.o 2025-01-24T02:44:40.2595080Z [2546/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u2.c.o 2025-01-24T02:44:40.2598230Z [2547/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u1.c.o 2025-01-24T02:44:40.2599630Z [2548/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u3.c.o 2025-01-24T02:44:40.3053260Z [2549/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u1.c.o 2025-01-24T02:44:40.3062630Z [2550/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u3.c.o 2025-01-24T02:44:40.3363020Z [2551/4997] 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-01-24T02:44:40.3397980Z [2552/4997] 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-01-24T02:44:40.3507480Z [2553/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u2-acc2.c.o 2025-01-24T02:44:40.3524090Z [2554/4997] 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-01-24T02:44:40.3531030Z [2555/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u1.c.o 2025-01-24T02:44:40.3540280Z [2556/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u2-acc2.c.o 2025-01-24T02:44:40.3543530Z [2557/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc4.c.o 2025-01-24T02:44:40.3558990Z [2558/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u1.c.o 2025-01-24T02:44:40.4177230Z [2559/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u2-acc2.c.o 2025-01-24T02:44:40.4264550Z [2560/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u3-acc3.c.o 2025-01-24T02:44:40.4286900Z [2561/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u1.c.o 2025-01-24T02:44:40.4391880Z [2562/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u3-acc3.c.o 2025-01-24T02:44:40.4427560Z [2563/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc2.c.o 2025-01-24T02:44:40.4438600Z [2564/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u3-acc3.c.o 2025-01-24T02:44:40.4503670Z [2565/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u4-acc2.c.o 2025-01-24T02:44:40.4585890Z [2566/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:40.4596450Z [2567/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u4-acc4.c.o 2025-01-24T02:44:40.4620510Z [2568/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u1.c.o 2025-01-24T02:44:40.5291590Z [2569/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u2-acc2.c.o 2025-01-24T02:44:40.5352220Z [2570/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u1.c.o 2025-01-24T02:44:40.5355450Z [2571/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u2-acc2.c.o 2025-01-24T02:44:40.5383840Z [2572/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar-pipelined.c.o 2025-01-24T02:44:40.5387740Z [2573/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc2.c.o 2025-01-24T02:44:40.5422770Z [2574/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc2.c.o 2025-01-24T02:44:40.5538890Z [2575/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u3-acc3.c.o 2025-01-24T02:44:40.5627950Z [2576/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar.c.o 2025-01-24T02:44:40.5679940Z [2577/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar-pipelined.c.o 2025-01-24T02:44:40.5688660Z [2578/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar.c.o 2025-01-24T02:44:40.6386230Z [2579/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar-pipelined.c.o 2025-01-24T02:44:40.6389990Z [2580/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar.c.o 2025-01-24T02:44:40.6407520Z [2581/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar-pipelined.c.o 2025-01-24T02:44:40.6416720Z [2582/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u1.c.o 2025-01-24T02:44:40.6426200Z [2583/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u4.c.o 2025-01-24T02:44:40.6482060Z [2584/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u1.c.o 2025-01-24T02:44:40.6484750Z [2585/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u2.c.o 2025-01-24T02:44:40.6635940Z [2586/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u1.c.o 2025-01-24T02:44:40.6822700Z [2587/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u4.c.o 2025-01-24T02:44:40.6830940Z [2588/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u2.c.o 2025-01-24T02:44:40.7456520Z [2589/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u8.c.o 2025-01-24T02:44:40.7480390Z [2590/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u1.c.o 2025-01-24T02:44:40.7492750Z [2591/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u4.c.o 2025-01-24T02:44:40.7505890Z [2592/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u1.c.o 2025-01-24T02:44:40.7544330Z [2593/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u4.c.o 2025-01-24T02:44:40.7596980Z [2594/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u2.c.o 2025-01-24T02:44:40.7747250Z [2595/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u8.c.o 2025-01-24T02:44:40.7777810Z [2596/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u2.c.o 2025-01-24T02:44:40.7914810Z [2597/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u1.c.o 2025-01-24T02:44:40.8119480Z [2598/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u4.c.o 2025-01-24T02:44:40.8462240Z [2599/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u1.c.o 2025-01-24T02:44:40.8591510Z [2600/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u4.c.o 2025-01-24T02:44:40.8599580Z [2601/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u4.c.o 2025-01-24T02:44:40.8605040Z [2602/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u4.c.o 2025-01-24T02:44:40.8637640Z [2603/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u2.c.o 2025-01-24T02:44:40.8646060Z [2604/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u1.c.o 2025-01-24T02:44:40.8663500Z [2605/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u2.c.o 2025-01-24T02:44:40.8933540Z [2606/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u2.c.o 2025-01-24T02:44:40.8942700Z [2607/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u1.c.o 2025-01-24T02:44:40.9012120Z [2608/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u4.c.o 2025-01-24T02:44:40.9520580Z [2609/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u1.c.o 2025-01-24T02:44:40.9676280Z [2610/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u1.c.o 2025-01-24T02:44:40.9726320Z [2611/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u2.c.o 2025-01-24T02:44:40.9738430Z [2612/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u4.c.o 2025-01-24T02:44:40.9748600Z [2613/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u1.c.o 2025-01-24T02:44:40.9854700Z [2614/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u2.c.o 2025-01-24T02:44:40.9869060Z [2615/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u2.c.o 2025-01-24T02:44:40.9870280Z [2616/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u4.c.o 2025-01-24T02:44:41.0175570Z [2617/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u4.c.o 2025-01-24T02:44:41.0253310Z [2618/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u4.c.o 2025-01-24T02:44:41.0578100Z [2619/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-scalar-acc2.c.o 2025-01-24T02:44:41.0821420Z [2620/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-scalar.c.o 2025-01-24T02:44:41.0838320Z [2621/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-minmax-scalar-acc2.c.o 2025-01-24T02:44:41.0856460Z [2622/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar.c.o 2025-01-24T02:44:41.0969110Z [2623/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-scalar-acc2.c.o 2025-01-24T02:44:41.1004630Z [2624/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-minmax-scalar.c.o 2025-01-24T02:44:41.1119510Z [2625/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar.c.o 2025-01-24T02:44:41.1124940Z [2626/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-scalar.c.o 2025-01-24T02:44:41.1224690Z [2627/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar.c.o 2025-01-24T02:44:41.1270380Z [2628/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar-acc2.c.o 2025-01-24T02:44:41.1785040Z [2629/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar-acc2.c.o 2025-01-24T02:44:41.1834740Z [2630/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar.c.o 2025-01-24T02:44:41.1859850Z [2631/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar.c.o 2025-01-24T02:44:41.1986820Z [2632/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar.c.o 2025-01-24T02:44:41.2071770Z [2633/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar.c.o 2025-01-24T02:44:41.2133940Z [2634/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar-acc2.c.o 2025-01-24T02:44:41.2138900Z [2635/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar-acc2.c.o 2025-01-24T02:44:41.2151190Z [2636/4997] 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-01-24T02:44:41.2162210Z [2637/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar.c.o 2025-01-24T02:44:41.2328900Z [2638/4997] 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-01-24T02:44:41.2962610Z [2639/4997] 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-01-24T02:44:41.3068220Z [2640/4997] 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-01-24T02:44:41.3071560Z [2641/4997] 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-01-24T02:44:41.3072830Z [2642/4997] 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-01-24T02:44:41.3074020Z [2643/4997] 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-01-24T02:44:41.3075240Z [2644/4997] 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-01-24T02:44:41.3215120Z [2645/4997] 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-01-24T02:44:41.3264880Z [2646/4997] 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-01-24T02:44:41.3360400Z [2647/4997] 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-01-24T02:44:41.3395360Z [2648/4997] 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-01-24T02:44:41.4118820Z [2649/4997] 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-01-24T02:44:41.4161340Z [2650/4997] 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-01-24T02:44:41.4171180Z [2651/4997] 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-01-24T02:44:41.4191080Z [2652/4997] 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-01-24T02:44:41.4311040Z [2653/4997] 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-01-24T02:44:41.4312590Z [2654/4997] 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-01-24T02:44:41.4315560Z [2655/4997] 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-01-24T02:44:41.4364670Z [2656/4997] 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-01-24T02:44:41.4563490Z [2657/4997] 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-01-24T02:44:41.4589660Z [2658/4997] 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-01-24T02:44:41.5209180Z [2659/4997] 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-01-24T02:44:41.5288300Z [2660/4997] 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-01-24T02:44:41.5300360Z [2661/4997] 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-01-24T02:44:41.5515640Z [2662/4997] 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-01-24T02:44:41.5518870Z [2663/4997] 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-01-24T02:44:41.5520340Z [2664/4997] 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-01-24T02:44:41.5521590Z [2665/4997] 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-01-24T02:44:41.5540810Z [2666/4997] 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-01-24T02:44:41.5562630Z [2667/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u1.c.o 2025-01-24T02:44:41.5689240Z [2668/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u2.c.o 2025-01-24T02:44:41.6266910Z [2669/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u3.c.o 2025-01-24T02:44:41.6354490Z [2670/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u1.c.o 2025-01-24T02:44:41.6454690Z [2671/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u3.c.o 2025-01-24T02:44:41.6479260Z [2672/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-relu-scalar.c.o 2025-01-24T02:44:41.6487990Z [2673/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u4.c.o 2025-01-24T02:44:41.6510740Z [2674/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x4-minmax-scalar.c.o 2025-01-24T02:44:41.6602940Z [2675/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-2x4-minmax-scalar.c.o 2025-01-24T02:44:41.6606540Z [2676/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x4-minmax-scalar.c.o 2025-01-24T02:44:41.6613440Z [2677/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p1.c.o 2025-01-24T02:44:41.6677960Z [2678/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p2.c.o 2025-01-24T02:44:41.7335350Z [2679/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c1.c.o 2025-01-24T02:44:41.7470790Z [2680/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-3x3-minmax-scalar.c.o 2025-01-24T02:44:41.7475110Z [2681/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c4.c.o 2025-01-24T02:44:41.7515130Z [2682/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-relu-scalar.c.o 2025-01-24T02:44:41.7546080Z [2683/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u2.c.o 2025-01-24T02:44:41.7551090Z [2684/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-2x4-minmax-scalar.c.o 2025-01-24T02:44:41.7578220Z [2685/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u3.c.o 2025-01-24T02:44:41.7591580Z [2686/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u2.c.o 2025-01-24T02:44:41.7801850Z [2687/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x2-minmax-scalar.c.o 2025-01-24T02:44:41.8325170Z [2688/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u1.c.o 2025-01-24T02:44:41.8328300Z [2689/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u3.c.o 2025-01-24T02:44:41.8494400Z [2690/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u1.c.o 2025-01-24T02:44:41.8516830Z [2691/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u3.c.o 2025-01-24T02:44:41.8519460Z [2692/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u4.c.o 2025-01-24T02:44:41.8542830Z [2693/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u1.c.o 2025-01-24T02:44:41.8544100Z [2694/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u2.c.o 2025-01-24T02:44:41.8595410Z [2695/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u2.c.o 2025-01-24T02:44:41.9054970Z [2696/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u3.c.o 2025-01-24T02:44:41.9322650Z [2697/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u1.c.o 2025-01-24T02:44:41.9424070Z [2698/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u4-acc4.c.o 2025-01-24T02:44:41.9427230Z [2699/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u4-acc2.c.o 2025-01-24T02:44:41.9550060Z [2700/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u1.c.o 2025-01-24T02:44:41.9554140Z [2701/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u3-acc3.c.o 2025-01-24T02:44:41.9564130Z [2702/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u2-acc2.c.o 2025-01-24T02:44:41.9673240Z [2703/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u4-acc2.c.o 2025-01-24T02:44:41.9678370Z [2704/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u3-acc3.c.o 2025-01-24T02:44:41.9680520Z [2705/4997] Linking C static library lib/libmicrokernels-prod.a 2025-01-24T02:44:42.0304050Z [2706/4997] Generating build_identifier.c 2025-01-24T02:44:42.0428050Z [2707/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u4-acc2.c.o 2025-01-24T02:44:42.0435360Z [2708/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u4-acc4.c.o 2025-01-24T02:44:42.0445970Z [2709/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u4-acc4.c.o 2025-01-24T02:44:42.0450110Z [2710/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.o 2025-01-24T02:44:42.0458160Z [2711/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.o 2025-01-24T02:44:42.0479320Z [2712/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u3-acc3.c.o 2025-01-24T02:44:42.0487340Z [2713/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u1.c.o 2025-01-24T02:44:42.0761090Z [2714/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-minmax-scalar-acc2.c.o 2025-01-24T02:44:42.0764730Z [2715/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-minmax-scalar.c.o 2025-01-24T02:44:42.1420570Z [2716/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-01-24T02:44:42.1447530Z [2717/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-01-24T02:44:42.1558410Z [2718/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-01-24T02:44:42.1571000Z [2719/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-01-24T02:44:42.1677110Z [2720/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-01-24T02:44:42.1680290Z [2721/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-01-24T02:44:42.1708820Z [2722/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-01-24T02:44:42.1712840Z [2723/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-01-24T02:44:42.1732190Z [2724/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-01-24T02:44:42.2115170Z [2725/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-01-24T02:44:42.2559310Z [2726/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-01-24T02:44:42.2621610Z [2727/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-01-24T02:44:42.2736770Z [2728/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-01-24T02:44:42.2765320Z [2729/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-01-24T02:44:42.2772600Z [2730/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-01-24T02:44:42.2779900Z [2731/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-01-24T02:44:42.2784850Z [2732/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-01-24T02:44:42.2866850Z [2733/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-01-24T02:44:42.2950460Z [2734/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-01-24T02:44:42.3088020Z [2735/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-01-24T02:44:42.3717640Z [2736/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-01-24T02:44:42.3729840Z [2737/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-01-24T02:44:42.3737440Z [2738/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-01-24T02:44:42.3741490Z [2739/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-01-24T02:44:42.3819030Z [2740/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-01-24T02:44:42.3893800Z [2741/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-01-24T02:44:42.3899480Z [2742/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-01-24T02:44:42.3905240Z [2743/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-01-24T02:44:42.3915240Z [2744/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-01-24T02:44:42.4007710Z [2745/4997] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-01-24T02:44:42.4772890Z [2746/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-scalar.c.o 2025-01-24T02:44:42.4822590Z [2747/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar.c.o 2025-01-24T02:44:42.4825850Z [2748/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-scalar-acc2.c.o 2025-01-24T02:44:42.4845100Z [2749/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-scalar-acc2.c.o 2025-01-24T02:44:42.4851850Z [2750/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-scalar.c.o 2025-01-24T02:44:42.4961650Z [2751/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3f3m3l1c1s1r-scalar-acc2.c.o 2025-01-24T02:44:42.4962770Z [2752/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar.c.o 2025-01-24T02:44:42.4979140Z [2753/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3f3m3l1c1s1r-scalar.c.o 2025-01-24T02:44:42.5192460Z [2754/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar.c.o 2025-01-24T02:44:42.5809450Z [2755/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar-acc2.c.o 2025-01-24T02:44:42.5862460Z [2756/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar-acc2.c.o 2025-01-24T02:44:42.5880140Z [2757/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar.c.o 2025-01-24T02:44:42.5885890Z [2758/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar.c.o 2025-01-24T02:44:42.5887420Z [2759/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar-acc2.c.o 2025-01-24T02:44:42.5939790Z [2760/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-gio-scalar.c.o 2025-01-24T02:44:42.5962270Z [2761/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar.c.o 2025-01-24T02:44:42.5975460Z [2762/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar.c.o 2025-01-24T02:44:42.6087660Z [2763/4997] Linking CXX static library lib/libXNNPACK.a 2025-01-24T02:44:42.6284460Z [2764/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x32c4-gemm-goi-scalar.c.o 2025-01-24T02:44:42.6817090Z [2765/4997] 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-01-24T02:44:42.6967720Z [2766/4997] 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-01-24T02:44:42.6973400Z [2767/4997] 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-01-24T02:44:42.6981560Z [2768/4997] 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-01-24T02:44:42.7028650Z [2769/4997] 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-01-24T02:44:42.7053740Z [2770/4997] 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-01-24T02:44:42.7061550Z [2771/4997] 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-01-24T02:44:42.7149390Z [2772/4997] 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-01-24T02:44:42.7382050Z [2773/4997] 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-01-24T02:44:42.7460560Z [2774/4997] 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-01-24T02:44:42.7983410Z [2775/4997] 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-01-24T02:44:42.7987650Z [2776/4997] 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-01-24T02:44:42.8001960Z [2777/4997] 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-01-24T02:44:42.8047690Z [2778/4997] 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-01-24T02:44:42.8230840Z [2779/4997] 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-01-24T02:44:42.8259840Z [2780/4997] 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-01-24T02:44:42.8304960Z [2781/4997] 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-01-24T02:44:42.8309560Z [2782/4997] 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-01-24T02:44:42.8476640Z [2783/4997] 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-01-24T02:44:42.8479790Z [2784/4997] 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-01-24T02:44:42.9203650Z [2785/4997] 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-01-24T02:44:42.9272060Z [2786/4997] 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-01-24T02:44:42.9388930Z [2787/4997] 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-01-24T02:44:42.9451490Z [2788/4997] 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-01-24T02:44:42.9463370Z [2789/4997] 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-01-24T02:44:42.9464780Z [2790/4997] 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-01-24T02:44:42.9466090Z [2791/4997] 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-01-24T02:44:42.9467390Z [2792/4997] 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-01-24T02:44:42.9610860Z [2793/4997] 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-01-24T02:44:42.9688930Z [2794/4997] 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-01-24T02:44:43.0337820Z [2795/4997] 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-01-24T02:44:43.0374160Z [2796/4997] 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-01-24T02:44:43.0404790Z [2797/4997] 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-01-24T02:44:43.0406470Z [2798/4997] 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-01-24T02:44:43.0433610Z [2799/4997] 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-01-24T02:44:43.0562180Z [2800/4997] 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-01-24T02:44:43.0588270Z [2801/4997] 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-01-24T02:44:43.0595300Z [2802/4997] 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-01-24T02:44:43.0762370Z [2803/4997] 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-01-24T02:44:43.0801380Z [2804/4997] 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-01-24T02:44:43.1480810Z [2805/4997] 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-01-24T02:44:43.1505070Z [2806/4997] 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-01-24T02:44:43.1546120Z [2807/4997] 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-01-24T02:44:43.1699070Z [2808/4997] 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-01-24T02:44:43.1708220Z [2809/4997] 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-01-24T02:44:43.1711770Z [2810/4997] 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-01-24T02:44:43.1745120Z [2811/4997] 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-01-24T02:44:43.1756250Z [2812/4997] 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-01-24T02:44:43.2007900Z [2813/4997] 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-01-24T02:44:43.2284410Z [2814/4997] 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-01-24T02:44:43.2726260Z [2815/4997] 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-01-24T02:44:43.2829380Z [2816/4997] 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-01-24T02:44:43.2898130Z [2817/4997] 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-01-24T02:44:43.2900230Z [2818/4997] 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-01-24T02:44:43.2907280Z [2819/4997] 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-01-24T02:44:43.2914460Z [2820/4997] 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-01-24T02:44:43.2928000Z [2821/4997] 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-01-24T02:44:43.2932950Z [2822/4997] 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-01-24T02:44:43.3221290Z [2823/4997] 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-01-24T02:44:43.3434580Z [2824/4997] 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-01-24T02:44:43.3881160Z [2825/4997] 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-01-24T02:44:43.3901940Z [2826/4997] 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-01-24T02:44:43.3949390Z [2827/4997] 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-01-24T02:44:43.3987960Z [2828/4997] 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-01-24T02:44:43.4092440Z [2829/4997] 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-01-24T02:44:43.4214150Z [2830/4997] 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-01-24T02:44:43.4326880Z [2831/4997] 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-01-24T02:44:43.4355890Z [2832/4997] 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-01-24T02:44:43.4452940Z [2833/4997] 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-01-24T02:44:43.4694500Z [2834/4997] 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-01-24T02:44:43.5269240Z [2835/4997] 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-01-24T02:44:43.5273070Z [2836/4997] 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-01-24T02:44:43.5281890Z [2837/4997] 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-01-24T02:44:43.5310140Z [2838/4997] 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-01-24T02:44:43.5420150Z [2839/4997] 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-01-24T02:44:43.5524990Z [2840/4997] 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-01-24T02:44:43.5531190Z [2841/4997] 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-01-24T02:44:43.5534650Z [2842/4997] 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-01-24T02:44:43.5670100Z [2843/4997] 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-01-24T02:44:43.5813470Z [2844/4997] 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-01-24T02:44:43.6423580Z [2845/4997] 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-01-24T02:44:43.6451990Z [2846/4997] 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-01-24T02:44:43.6459250Z [2847/4997] 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-01-24T02:44:43.6466200Z [2848/4997] 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-01-24T02:44:43.6473190Z [2849/4997] 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-01-24T02:44:43.6487700Z [2850/4997] 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-01-24T02:44:43.6503380Z [2851/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u1.c.o 2025-01-24T02:44:43.6610310Z [2852/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u2.c.o 2025-01-24T02:44:43.6817260Z [2853/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u2.c.o 2025-01-24T02:44:43.6842090Z [2854/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u1.c.o 2025-01-24T02:44:43.7504070Z [2855/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u2.c.o 2025-01-24T02:44:43.7518210Z [2856/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u2.c.o 2025-01-24T02:44:43.7543560Z [2857/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u2.c.o 2025-01-24T02:44:43.7547480Z [2858/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u2.c.o 2025-01-24T02:44:43.7575530Z [2859/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u1.c.o 2025-01-24T02:44:43.7707950Z [2860/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u2.c.o 2025-01-24T02:44:43.7741550Z [2861/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u1.c.o 2025-01-24T02:44:43.7780640Z [2862/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u1.c.o 2025-01-24T02:44:43.7911750Z [2863/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u2.c.o 2025-01-24T02:44:43.7975320Z [2864/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:43.8679780Z [2865/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:43.8685720Z [2866/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:43.8753730Z [2867/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:43.8755810Z [2868/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:43.8889240Z [2869/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:43.8911600Z [2870/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:43.8919850Z [2871/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:43.8926280Z [2872/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:43.9171230Z [2873/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:43.9220950Z [2874/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:43.9789580Z [2875/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:43.9908250Z [2876/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:43.9912370Z [2877/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:43.9923790Z [2878/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:43.9976840Z [2879/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:43.9978170Z [2880/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.0027370Z [2881/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.0176410Z [2882/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.0205900Z [2883/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.0350180Z [2884/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.0985820Z [2885/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.1054460Z [2886/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.1056810Z [2887/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.1080510Z [2888/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.1090490Z [2889/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.1204680Z [2890/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.1206310Z [2891/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.1245440Z [2892/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.1395970Z [2893/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.1433700Z [2894/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.2094280Z [2895/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.2179790Z [2896/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.2209130Z [2897/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.2238850Z [2898/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.2348260Z [2899/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.2355590Z [2900/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.2367000Z [2901/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.2371600Z [2902/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.2390760Z [2903/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u2.c.o 2025-01-24T02:44:44.2836640Z [2904/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.3165850Z [2905/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u3.c.o 2025-01-24T02:44:44.3340120Z [2906/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.3395500Z [2907/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.3399150Z [2908/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.3432880Z [2909/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.3450000Z [2910/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.3471770Z [2911/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.3695780Z [2912/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.3789520Z [2913/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.3979660Z [2914/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.4392500Z [2915/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.4514460Z [2916/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.4618960Z [2917/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.4706890Z [2918/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.4821220Z [2919/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.4934050Z [2920/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.4946860Z [2921/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.4950710Z [2922/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.4956890Z [2923/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.5301090Z [2924/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.5599360Z [2925/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.5639460Z [2926/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.5841160Z [2927/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.5851310Z [2928/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.5856060Z [2929/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.6003550Z [2930/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.6035250Z [2931/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.6053430Z [2932/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.6183480Z [2933/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.6628030Z [2934/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.6837870Z [2935/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.6949180Z [2936/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.7033760Z [2937/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.7038310Z [2938/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.7079920Z [2939/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.7119730Z [2940/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.7225540Z [2941/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.7309300Z [2942/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.7428190Z [2943/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.7940980Z [2944/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.8118040Z [2945/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.8222450Z [2946/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.8226270Z [2947/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.8248160Z [2948/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.8317150Z [2949/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.8404060Z [2950/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.8459640Z [2951/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.8566600Z [2952/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.8596680Z [2953/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.9257370Z [2954/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.9315070Z [2955/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x2-scalar.c.o 2025-01-24T02:44:44.9340610Z [2956/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u1.c.o 2025-01-24T02:44:44.9446790Z [2957/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.9450270Z [2958/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:44.9560770Z [2959/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:44.9562320Z [2960/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u4.c.o 2025-01-24T02:44:44.9566310Z [2961/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-rndnu-scalar.c.o 2025-01-24T02:44:44.9587280Z [2962/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:44.9749660Z [2963/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u8.c.o 2025-01-24T02:44:45.0308120Z [2964/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u1.c.o 2025-01-24T02:44:45.0454490Z [2965/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u2.c.o 2025-01-24T02:44:45.0575000Z [2966/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u4.c.o 2025-01-24T02:44:45.0598830Z [2967/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u2.c.o 2025-01-24T02:44:45.0601960Z [2968/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u1.c.o 2025-01-24T02:44:45.0604030Z [2969/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u4.c.o 2025-01-24T02:44:45.0606220Z [2970/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u2.c.o 2025-01-24T02:44:45.0668550Z [2971/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u2.c.o 2025-01-24T02:44:45.0687650Z [2972/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u1.c.o 2025-01-24T02:44:45.0857890Z [2973/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u4.c.o 2025-01-24T02:44:45.1405040Z [2974/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u2.c.o 2025-01-24T02:44:45.1536560Z [2975/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u4.c.o 2025-01-24T02:44:45.1581260Z [2976/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u1.c.o 2025-01-24T02:44:45.1603110Z [2977/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u4.c.o 2025-01-24T02:44:45.1727480Z [2978/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u1.c.o 2025-01-24T02:44:45.1731400Z [2979/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u4.c.o 2025-01-24T02:44:45.1734090Z [2980/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u2.c.o 2025-01-24T02:44:45.1784910Z [2981/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u1.c.o 2025-01-24T02:44:45.1850050Z [2982/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u1.c.o 2025-01-24T02:44:45.1945300Z [2983/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u2.c.o 2025-01-24T02:44:45.2478940Z [2984/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u1.c.o 2025-01-24T02:44:45.2586060Z [2985/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u8.c.o 2025-01-24T02:44:45.2689200Z [2986/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u3.c.o 2025-01-24T02:44:45.2791440Z [2987/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u1.c.o 2025-01-24T02:44:45.2792560Z [2988/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u6.c.o 2025-01-24T02:44:45.2802270Z [2989/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u2.c.o 2025-01-24T02:44:45.2810160Z [2990/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u1.c.o 2025-01-24T02:44:45.2817350Z [2991/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u5.c.o 2025-01-24T02:44:45.2823380Z [2992/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u1.c.o 2025-01-24T02:44:45.3042360Z [2993/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u2.c.o 2025-01-24T02:44:45.3559350Z [2994/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u3.c.o 2025-01-24T02:44:45.3742140Z [2995/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u4.c.o 2025-01-24T02:44:45.3802360Z [2996/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vgelu/gen/f32-vgelu-scalar.c.o 2025-01-24T02:44:45.3904800Z [2997/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u5.c.o 2025-01-24T02:44:45.3911020Z [2998/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u6.c.o 2025-01-24T02:44:45.3916780Z [2999/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlog/gen/f32-vlog-scalar-log.c.o 2025-01-24T02:44:45.3920130Z [3000/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u2.c.o 2025-01-24T02:44:45.3922820Z [3001/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u2.c.o 2025-01-24T02:44:45.3990480Z [3002/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u1.c.o 2025-01-24T02:44:45.4118400Z [3003/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c2-minmax-scalar-2x.c.o 2025-01-24T02:44:45.4703560Z [3004/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-scalar-2x.c.o 2025-01-24T02:44:45.4720940Z [3005/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u2.c.o 2025-01-24T02:44:45.4771860Z [3006/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u2.c.o 2025-01-24T02:44:45.4938900Z [3007/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u1.c.o 2025-01-24T02:44:45.4948530Z [3008/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u2.c.o 2025-01-24T02:44:45.4954260Z [3009/4997] 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-01-24T02:44:45.4966900Z [3010/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x32c4-gemm-gio-scalar.c.o 2025-01-24T02:44:45.5079370Z [3011/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u2.c.o 2025-01-24T02:44:45.5085700Z [3012/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u2.c.o 2025-01-24T02:44:45.5107790Z [3013/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u2.c.o 2025-01-24T02:44:45.5790150Z [3014/4997] 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-01-24T02:44:45.5882910Z [3015/4997] 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-01-24T02:44:45.5887590Z [3016/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u2.c.o 2025-01-24T02:44:45.6095810Z [3017/4997] 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-01-24T02:44:45.6107300Z [3018/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u1.c.o 2025-01-24T02:44:45.6117390Z [3019/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u4.c.o 2025-01-24T02:44:45.6126480Z [3020/4997] 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-01-24T02:44:45.6132720Z [3021/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u4.c.o 2025-01-24T02:44:45.6247130Z [3022/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u2.c.o 2025-01-24T02:44:45.6646930Z [3023/4997] 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-01-24T02:44:45.6981540Z [3024/4997] 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-01-24T02:44:45.7052610Z [3025/4997] 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-01-24T02:44:45.7172190Z [3026/4997] 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-01-24T02:44:45.7202770Z [3027/4997] 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-01-24T02:44:45.7270320Z [3028/4997] 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-01-24T02:44:45.7276020Z [3029/4997] 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-01-24T02:44:45.7284300Z [3030/4997] 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-01-24T02:44:45.7295930Z [3031/4997] 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-01-24T02:44:45.7597520Z [3032/4997] 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-01-24T02:44:45.8089200Z [3033/4997] 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-01-24T02:44:45.8293910Z [3034/4997] 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-01-24T02:44:45.8297840Z [3035/4997] 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-01-24T02:44:45.8410910Z [3036/4997] 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-01-24T02:44:45.8462530Z [3037/4997] 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-01-24T02:44:45.8468560Z [3038/4997] 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-01-24T02:44:45.8478270Z [3039/4997] 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-01-24T02:44:45.8507590Z [3040/4997] 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-01-24T02:44:45.8523070Z [3041/4997] 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-01-24T02:44:45.8818510Z [3042/4997] 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-01-24T02:44:45.9350480Z [3043/4997] 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-01-24T02:44:45.9546230Z [3044/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:45.9567250Z [3045/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:45.9571470Z [3046/4997] 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-01-24T02:44:45.9572940Z [3047/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:45.9574210Z [3048/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:45.9575540Z [3049/4997] 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-01-24T02:44:45.9739440Z [3050/4997] 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-01-24T02:44:45.9768310Z [3051/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:45.9867230Z [3052/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:46.0602980Z [3053/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:46.0629430Z [3054/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:46.0644930Z [3055/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:46.0771600Z [3056/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:46.0776140Z [3057/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:46.0789900Z [3058/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:46.0834750Z [3059/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:46.1068510Z [3060/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:46.1081570Z [3061/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:46.1339670Z [3062/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:46.1666080Z [3063/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:46.1697730Z [3064/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:46.1707130Z [3065/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:46.1755630Z [3066/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:46.1861990Z [3067/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:46.1932830Z [3068/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:46.1939290Z [3069/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:46.2079830Z [3070/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:46.2177570Z [3071/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:46.2413500Z [3072/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:46.2905070Z [3073/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:46.3013320Z [3074/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:46.3017550Z [3075/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:46.3024320Z [3076/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:46.3035300Z [3077/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:46.3045150Z [3078/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-rndnu-scalar.c.o 2025-01-24T02:44:46.3053820Z [3079/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-rndnu-scalar.c.o 2025-01-24T02:44:46.3178490Z [3080/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:46.3318940Z [3081/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:46.3392990Z [3082/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-rndnu-scalar.c.o 2025-01-24T02:44:46.4014030Z [3083/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u2.c.o 2025-01-24T02:44:46.4064170Z [3084/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:46.4087470Z [3085/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:46.4095800Z [3086/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2025-01-24T02:44:46.4132490Z [3087/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:46.4221020Z [3088/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:46.4222560Z [3089/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c4-gemm-goi-scalar.c.o 2025-01-24T02:44:46.4312450Z [3090/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:46.4375870Z [3091/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u3.c.o 2025-01-24T02:44:46.4529520Z [3092/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c4-gemm-gio-scalar.c.o 2025-01-24T02:44:46.5115860Z [3093/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c8-gemm-goi-scalar.c.o 2025-01-24T02:44:46.5128280Z [3094/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c4-gemm-gio-scalar.c.o 2025-01-24T02:44:46.5141000Z [3095/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-gio-scalar.c.o 2025-01-24T02:44:46.5153170Z [3096/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c4-gemm-goi-scalar.c.o 2025-01-24T02:44:46.5169360Z [3097/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c8-gemm-gio-scalar.c.o 2025-01-24T02:44:46.5283350Z [3098/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-float.c.o 2025-01-24T02:44:46.5386080Z [3099/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-01-24T02:44:46.5394230Z [3100/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-01-24T02:44:46.5454970Z [3101/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-int.c.o 2025-01-24T02:44:46.5498930Z [3102/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-int.c.o 2025-01-24T02:44:46.6195820Z [3103/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-float.c.o 2025-01-24T02:44:46.6261470Z [3104/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-float.c.o 2025-01-24T02:44:46.6348850Z [3105/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-float.c.o 2025-01-24T02:44:46.6380050Z [3106/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-int.c.o 2025-01-24T02:44:46.6493760Z [3107/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-int.c.o 2025-01-24T02:44:46.6497350Z [3108/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u24.c.o 2025-01-24T02:44:46.6522670Z [3109/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u8.c.o 2025-01-24T02:44:46.6565320Z [3110/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u32.c.o 2025-01-24T02:44:46.7069840Z [3111/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u8.c.o 2025-01-24T02:44:46.7127190Z [3112/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u16.c.o 2025-01-24T02:44:46.7393770Z [3113/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u24.c.o 2025-01-24T02:44:46.7463210Z [3114/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-neon-2x1.c.o 2025-01-24T02:44:46.7752100Z [3115/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u32.c.o 2025-01-24T02:44:46.7763210Z [3116/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-neon-2x1.c.o 2025-01-24T02:44:46.7793480Z [3117/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-neon-2x2.c.o 2025-01-24T02:44:46.7834040Z [3118/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-neon-2x2.c.o 2025-01-24T02:44:46.7848730Z [3119/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-neon-2x2.c.o 2025-01-24T02:44:46.7978380Z [3120/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-neon-2x1.c.o 2025-01-24T02:44:46.8323090Z [3121/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-neon-2x1.c.o 2025-01-24T02:44:46.8373930Z [3122/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-neon-2x2.c.o 2025-01-24T02:44:46.8669340Z [3123/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neon.c.o 2025-01-24T02:44:46.8781170Z [3124/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neon-acc2.c.o 2025-01-24T02:44:46.9252170Z [3125/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neon.c.o 2025-01-24T02:44:46.9299550Z [3126/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neon-acc2.c.o 2025-01-24T02:44:46.9415140Z [3127/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neon.c.o 2025-01-24T02:44:46.9416280Z [3128/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neon-acc2.c.o 2025-01-24T02:44:46.9441000Z [3129/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neon-acc2.c.o 2025-01-24T02:44:46.9443710Z [3130/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neon-acc2.c.o 2025-01-24T02:44:46.9841400Z [3131/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neon-acc2.c.o 2025-01-24T02:44:47.0062400Z [3132/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neon.c.o 2025-01-24T02:44:47.0108600Z [3133/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neon.c.o 2025-01-24T02:44:47.0372800Z [3134/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neon-acc2.c.o 2025-01-24T02:44:47.0609600Z [3135/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neon.c.o 2025-01-24T02:44:47.0714020Z [3136/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neon-acc2.c.o 2025-01-24T02:44:47.0732890Z [3137/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neon-acc2.c.o 2025-01-24T02:44:47.0755150Z [3138/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neon.c.o 2025-01-24T02:44:47.0759970Z [3139/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neon-acc2.c.o 2025-01-24T02:44:47.1109480Z [3140/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neon.c.o 2025-01-24T02:44:47.1432290Z [3141/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neon.c.o 2025-01-24T02:44:47.1534210Z [3142/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neon.c.o 2025-01-24T02:44:47.1665840Z [3143/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neon-acc2.c.o 2025-01-24T02:44:47.1672290Z [3144/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neon-acc2.c.o 2025-01-24T02:44:47.1853830Z [3145/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neon.c.o 2025-01-24T02:44:47.1883430Z [3146/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neon-acc2.c.o 2025-01-24T02:44:47.1938490Z [3147/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neon-acc2.c.o 2025-01-24T02:44:47.1939820Z [3148/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neon-acc2.c.o 2025-01-24T02:44:47.1948640Z [3149/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neon.c.o 2025-01-24T02:44:47.2436290Z [3150/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neon.c.o 2025-01-24T02:44:47.2986230Z [3151/4997] 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-01-24T02:44:47.3086270Z [3152/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neon.c.o 2025-01-24T02:44:47.3208200Z [3153/4997] 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-01-24T02:44:47.3215920Z [3154/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neon.c.o 2025-01-24T02:44:47.3223050Z [3155/4997] 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-01-24T02:44:47.3226910Z [3156/4997] 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-01-24T02:44:47.3271050Z [3157/4997] 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-01-24T02:44:47.3504500Z [3158/4997] 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-01-24T02:44:47.3530490Z [3159/4997] 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-01-24T02:44:47.4086430Z [3160/4997] 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-01-24T02:44:47.4369470Z [3161/4997] 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-01-24T02:44:47.4380350Z [3162/4997] 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-01-24T02:44:47.4383460Z [3163/4997] 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-01-24T02:44:47.4388500Z [3164/4997] 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-01-24T02:44:47.4406250Z [3165/4997] 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-01-24T02:44:47.4434680Z [3166/4997] 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-01-24T02:44:47.5037480Z [3167/4997] 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-01-24T02:44:47.5115170Z [3168/4997] 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-01-24T02:44:47.5273120Z [3169/4997] 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-01-24T02:44:47.5322700Z [3170/4997] 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-01-24T02:44:47.5736340Z [3171/4997] 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-01-24T02:44:47.5812640Z [3172/4997] 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-01-24T02:44:47.5891980Z [3173/4997] 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-01-24T02:44:47.6015510Z [3174/4997] 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-01-24T02:44:47.6040530Z [3175/4997] 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-01-24T02:44:47.6048220Z [3176/4997] 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-01-24T02:44:47.6360090Z [3177/4997] 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-01-24T02:44:47.6627900Z [3178/4997] 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-01-24T02:44:47.6739350Z [3179/4997] 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-01-24T02:44:47.6948390Z [3180/4997] 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-01-24T02:44:47.7066830Z [3181/4997] 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-01-24T02:44:47.7206430Z [3182/4997] 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-01-24T02:44:47.7337390Z [3183/4997] 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-01-24T02:44:47.7395250Z [3184/4997] 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-01-24T02:44:47.7569950Z [3185/4997] 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-01-24T02:44:47.7900910Z [3186/4997] 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-01-24T02:44:47.7909640Z [3187/4997] 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-01-24T02:44:47.7919170Z [3188/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u16.c.o 2025-01-24T02:44:47.7987240Z [3189/4997] 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-01-24T02:44:47.7992340Z [3190/4997] 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-01-24T02:44:47.8383510Z [3191/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u32.c.o 2025-01-24T02:44:47.8652430Z [3192/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u24.c.o 2025-01-24T02:44:47.8854480Z [3193/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-neon.c.o 2025-01-24T02:44:47.8885070Z [3194/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-dup-ld64.c.o 2025-01-24T02:44:47.8894680Z [3195/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:47.9271910Z [3196/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-dup-ld128.c.o 2025-01-24T02:44:47.9474210Z [3197/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-dup-ld64.c.o 2025-01-24T02:44:47.9495650Z [3198/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-lane-ld64.c.o 2025-01-24T02:44:47.9546930Z [3199/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:47.9726680Z [3200/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x16-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:48.0254000Z [3201/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:48.0354050Z [3202/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:48.0457970Z [3203/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-neon.c.o 2025-01-24T02:44:48.0463670Z [3204/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-neon-lane-ld64.c.o 2025-01-24T02:44:48.0469370Z [3205/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:48.0668440Z [3206/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x2-minmax-neon-lane-ld64.c.o 2025-01-24T02:44:48.0888630Z [3207/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-dup-ld128.c.o 2025-01-24T02:44:48.0947170Z [3208/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-lane-ld64.c.o 2025-01-24T02:44:48.0950240Z [3209/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-dup-ld64.c.o 2025-01-24T02:44:48.1513020Z [3210/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:48.1622020Z [3211/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-lane-ld64.c.o 2025-01-24T02:44:48.1655240Z [3212/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8s4-minmax-neon.c.o 2025-01-24T02:44:48.1675690Z [3213/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-dup-ld64.c.o 2025-01-24T02:44:48.1742460Z [3214/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8s4-minmax-neon.c.o 2025-01-24T02:44:48.2031400Z [3215/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x16-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:48.2398470Z [3216/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:48.2498540Z [3217/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8s4-minmax-neon.c.o 2025-01-24T02:44:48.2515920Z [3218/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-dup-ld64.c.o 2025-01-24T02:44:48.3026080Z [3219/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8s4-minmax-neon.c.o 2025-01-24T02:44:48.3030010Z [3220/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-lane-ld64.c.o 2025-01-24T02:44:48.3048170Z [3221/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-dup-ld64.c.o 2025-01-24T02:44:48.3056500Z [3222/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-dup-ld128.c.o 2025-01-24T02:44:48.3062050Z [3223/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:48.3070740Z [3224/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-neon-lane-ld64.c.o 2025-01-24T02:44:48.3746270Z [3225/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-dup-ld128.c.o 2025-01-24T02:44:48.3831030Z [3226/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-lane-ld64.c.o 2025-01-24T02:44:48.3990770Z [3227/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8s4-minmax-neon.c.o 2025-01-24T02:44:48.4012490Z [3228/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:48.4042290Z [3229/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u2.c.o 2025-01-24T02:44:48.4045420Z [3230/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u1.c.o 2025-01-24T02:44:48.4310820Z [3231/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u2.c.o 2025-01-24T02:44:48.4326890Z [3232/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-rndnu-scalar.c.o 2025-01-24T02:44:48.4676560Z [3233/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u1.c.o 2025-01-24T02:44:48.4685620Z [3234/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:48.4905540Z [3235/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-8x8s4-minmax-neon.c.o 2025-01-24T02:44:48.4921320Z [3236/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u1.c.o 2025-01-24T02:44:48.4954600Z [3237/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u2.c.o 2025-01-24T02:44:48.4972590Z [3238/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u2.c.o 2025-01-24T02:44:48.4985400Z [3239/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u2.c.o 2025-01-24T02:44:48.5220680Z [3240/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u2.c.o 2025-01-24T02:44:48.5243940Z [3241/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u2.c.o 2025-01-24T02:44:48.5453130Z [3242/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u1.c.o 2025-01-24T02:44:48.5734790Z [3243/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u1.c.o 2025-01-24T02:44:48.5839280Z [3244/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u2.c.o 2025-01-24T02:44:48.5943740Z [3245/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c2.c.o 2025-01-24T02:44:48.5947280Z [3246/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c4.c.o 2025-01-24T02:44:48.5973430Z [3247/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c2.c.o 2025-01-24T02:44:48.5982670Z [3248/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u2.c.o 2025-01-24T02:44:48.6005790Z [3249/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u1.c.o 2025-01-24T02:44:48.6143860Z [3250/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c4.c.o 2025-01-24T02:44:48.6234030Z [3251/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u8.c.o 2025-01-24T02:44:48.6244210Z [3252/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u16.c.o 2025-01-24T02:44:48.6784440Z [3253/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x2-gemm-goi-scalar-u2.c.o 2025-01-24T02:44:48.7022820Z [3254/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u4.c.o 2025-01-24T02:44:48.7026720Z [3255/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x2-gemm-goi-scalar-u4.c.o 2025-01-24T02:44:48.7055240Z [3256/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u4.c.o 2025-01-24T02:44:48.7170600Z [3257/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u4.c.o 2025-01-24T02:44:48.7202530Z [3258/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u4.c.o 2025-01-24T02:44:48.7211340Z [3259/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x8c8-gemm-gio-scalar.c.o 2025-01-24T02:44:48.7220500Z [3260/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x2-scalar-int.c.o 2025-01-24T02:44:48.7233190Z [3261/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x4-scalar-int.c.o 2025-01-24T02:44:48.7330150Z [3262/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x1-scalar-int.c.o 2025-01-24T02:44:48.7750950Z [3263/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x2-scalar-int.c.o 2025-01-24T02:44:48.7979530Z [3264/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x1-scalar-int.c.o 2025-01-24T02:44:48.7998440Z [3265/4997] 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-01-24T02:44:48.8000190Z [3266/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x2-scalar-int.c.o 2025-01-24T02:44:48.8030380Z [3267/4997] 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-01-24T02:44:48.8038330Z [3268/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x2-scalar-int.c.o 2025-01-24T02:44:48.8081150Z [3269/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x4-scalar-int.c.o 2025-01-24T02:44:48.8095920Z [3270/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x4-scalar-int.c.o 2025-01-24T02:44:48.8288310Z [3271/4997] 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-01-24T02:44:48.8378780Z [3272/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x1-scalar-int.c.o 2025-01-24T02:44:48.8777870Z [3273/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x2-scalar-int.c.o 2025-01-24T02:44:48.8954620Z [3274/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-scalar-int.c.o 2025-01-24T02:44:48.8996810Z [3275/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x2-scalar-int.c.o 2025-01-24T02:44:48.9009840Z [3276/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x1-scalar-int.c.o 2025-01-24T02:44:48.9074150Z [3277/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x1-scalar.c.o 2025-01-24T02:44:48.9078900Z [3278/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-1x4-scalar.c.o 2025-01-24T02:44:48.9229010Z [3279/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x2-scalar.c.o 2025-01-24T02:44:48.9238490Z [3280/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x4-scalar.c.o 2025-01-24T02:44:48.9282790Z [3281/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x1-scalar.c.o 2025-01-24T02:44:48.9532440Z [3282/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neon-acc2.c.o 2025-01-24T02:44:48.9876920Z [3283/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x4-scalar.c.o 2025-01-24T02:44:49.0004110Z [3284/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c1s1r-gemm-scalar-float.c.o 2025-01-24T02:44:49.0071530Z [3285/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c2s1r-gemm-scalar-float.c.o 2025-01-24T02:44:49.0097660Z [3286/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c1s1r-gemm-scalar-int.c.o 2025-01-24T02:44:49.0225240Z [3287/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c2s1r-gemm-scalar-int.c.o 2025-01-24T02:44:49.0226550Z [3288/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c1s1r-gemm-scalar-int.c.o 2025-01-24T02:44:49.0291970Z [3289/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c1s1r-gemm-scalar-float.c.o 2025-01-24T02:44:49.0442340Z [3290/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c4s1r-gemm-scalar-int.c.o 2025-01-24T02:44:49.0567970Z [3291/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c4s1r-gemm-scalar-float.c.o 2025-01-24T02:44:49.0572000Z [3292/4997] 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-01-24T02:44:49.0976640Z [3293/4997] 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-01-24T02:44:49.1108850Z [3294/4997] 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-01-24T02:44:49.1112650Z [3295/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x4-gemm-gio-scalar.c.o 2025-01-24T02:44:49.1131220Z [3296/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-gio-scalar.c.o 2025-01-24T02:44:49.1157400Z [3297/4997] 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-01-24T02:44:49.1166080Z [3298/4997] 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-01-24T02:44:49.1167900Z [3299/4997] 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-01-24T02:44:49.1435260Z [3300/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-gio-scalar.c.o 2025-01-24T02:44:49.1472090Z [3301/4997] 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-01-24T02:44:49.1555960Z [3302/4997] 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-01-24T02:44:49.2054950Z [3303/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x32-gemm-gio-scalar.c.o 2025-01-24T02:44:49.2090870Z [3304/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-float.c.o 2025-01-24T02:44:49.2141170Z [3305/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-3x-scalar.c.o 2025-01-24T02:44:49.2151100Z [3306/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-2x-scalar.c.o 2025-01-24T02:44:49.2164210Z [3307/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-float.c.o 2025-01-24T02:44:49.2361050Z [3308/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-int.c.o 2025-01-24T02:44:49.2371490Z [3309/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-4x-scalar.c.o 2025-01-24T02:44:49.2377960Z [3310/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-int.c.o 2025-01-24T02:44:49.2394280Z [3311/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-float.c.o 2025-01-24T02:44:49.2395440Z [3312/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-int.c.o 2025-01-24T02:44:49.3105720Z [3313/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-int.c.o 2025-01-24T02:44:49.3113800Z [3314/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-float.c.o 2025-01-24T02:44:49.3176450Z [3315/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-float.c.o 2025-01-24T02:44:49.3179960Z [3316/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-float.c.o 2025-01-24T02:44:49.3202630Z [3317/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-int.c.o 2025-01-24T02:44:49.3321810Z [3318/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-int.c.o 2025-01-24T02:44:49.3340830Z [3319/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-float.c.o 2025-01-24T02:44:49.3344070Z [3320/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c1s1r-gemm-scalar-float.c.o 2025-01-24T02:44:49.3450220Z [3321/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-int.c.o 2025-01-24T02:44:49.3457780Z [3322/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-float.c.o 2025-01-24T02:44:49.4113690Z [3323/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c2s1r-gemm-scalar-int.c.o 2025-01-24T02:44:49.4131820Z [3324/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c2s1r-gemm-scalar-float.c.o 2025-01-24T02:44:49.4162030Z [3325/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c1s1r-gemm-scalar-int.c.o 2025-01-24T02:44:49.4172350Z [3326/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c1s1r-gemm-scalar-float.c.o 2025-01-24T02:44:49.4218420Z [3327/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-float.c.o 2025-01-24T02:44:49.4323860Z [3328/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c4s1r-gemm-scalar-float.c.o 2025-01-24T02:44:49.4368970Z [3329/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c4s1r-gemm-scalar-int.c.o 2025-01-24T02:44:49.4457990Z [3330/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c1s1r-gemm-scalar-int.c.o 2025-01-24T02:44:49.4688200Z [3331/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u8.c.o 2025-01-24T02:44:49.4689560Z [3332/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u4.c.o 2025-01-24T02:44:49.5424760Z [3333/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-neon-u8.c.o 2025-01-24T02:44:49.5523230Z [3334/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u16.c.o 2025-01-24T02:44:49.5534880Z [3335/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-neon-2x.c.o 2025-01-24T02:44:49.5579330Z [3336/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u12.c.o 2025-01-24T02:44:49.5614870Z [3337/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-neon-u4.c.o 2025-01-24T02:44:49.5771190Z [3338/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-neon-u4.c.o 2025-01-24T02:44:49.5984070Z [3339/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-neon-u8.c.o 2025-01-24T02:44:49.6197330Z [3340/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neon-u4.c.o 2025-01-24T02:44:49.6202990Z [3341/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neon-u4.c.o 2025-01-24T02:44:49.6261160Z [3342/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-neon-u4.c.o 2025-01-24T02:44:49.6693630Z [3343/4997] 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-01-24T02:44:49.6810000Z [3344/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u4.c.o 2025-01-24T02:44:49.6811630Z [3345/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neon-u4.c.o 2025-01-24T02:44:49.6943630Z [3346/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u8.c.o 2025-01-24T02:44:49.6948380Z [3347/4997] 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-01-24T02:44:49.6951520Z [3348/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neon-u4.c.o 2025-01-24T02:44:49.7384700Z [3349/4997] 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-01-24T02:44:49.7402150Z [3350/4997] 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-01-24T02:44:49.7861840Z [3351/4997] 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-01-24T02:44:49.7915600Z [3352/4997] 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-01-24T02:44:49.7931070Z [3353/4997] 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-01-24T02:44:49.8019610Z [3354/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u4.c.o 2025-01-24T02:44:49.8044990Z [3355/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u8.c.o 2025-01-24T02:44:49.8174230Z [3356/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u12.c.o 2025-01-24T02:44:49.8423350Z [3357/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neon-rational-9-8-nr.c.o 2025-01-24T02:44:49.8795670Z [3358/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u16.c.o 2025-01-24T02:44:49.9000480Z [3359/4997] 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-01-24T02:44:49.9108160Z [3360/4997] 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-01-24T02:44:49.9299000Z [3361/4997] 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-01-24T02:44:49.9470920Z [3362/4997] 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-01-24T02:44:49.9476090Z [3363/4997] 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-01-24T02:44:49.9569660Z [3364/4997] 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-01-24T02:44:49.9755440Z [3365/4997] 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-01-24T02:44:50.0126820Z [3366/4997] 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-01-24T02:44:50.0228890Z [3367/4997] 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-01-24T02:44:50.0332120Z [3368/4997] 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-01-24T02:44:50.0354120Z [3369/4997] 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-01-24T02:44:50.0697800Z [3370/4997] 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-01-24T02:44:50.0895570Z [3371/4997] 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-01-24T02:44:50.0923290Z [3372/4997] 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-01-24T02:44:50.0963860Z [3373/4997] 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-01-24T02:44:50.0979710Z [3374/4997] 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-01-24T02:44:50.0994400Z [3375/4997] 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-01-24T02:44:50.1806530Z [3376/4997] 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-01-24T02:44:50.1811490Z [3377/4997] 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-01-24T02:44:50.1830830Z [3378/4997] 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-01-24T02:44:50.1892970Z [3379/4997] 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-01-24T02:44:50.1927550Z [3380/4997] 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-01-24T02:44:50.2208700Z [3381/4997] 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-01-24T02:44:50.2275470Z [3382/4997] 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-01-24T02:44:50.2352580Z [3383/4997] 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-01-24T02:44:50.2583630Z [3384/4997] 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-01-24T02:44:50.2666130Z [3385/4997] 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-01-24T02:44:50.3085040Z [3386/4997] 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-01-24T02:44:50.3356430Z [3387/4997] 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-01-24T02:44:50.3365740Z [3388/4997] 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-01-24T02:44:50.3387540Z [3389/4997] 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-01-24T02:44:50.3981500Z [3390/4997] 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-01-24T02:44:50.4060020Z [3391/4997] 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-01-24T02:44:50.4093620Z [3392/4997] 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-01-24T02:44:50.4208610Z [3393/4997] 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-01-24T02:44:50.4219120Z [3394/4997] 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-01-24T02:44:50.4224260Z [3395/4997] 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-01-24T02:44:50.4227940Z [3396/4997] 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-01-24T02:44:50.4797880Z [3397/4997] 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-01-24T02:44:50.4816330Z [3398/4997] 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-01-24T02:44:50.4926350Z [3399/4997] 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-01-24T02:44:50.5453380Z [3400/4997] 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-01-24T02:44:50.5462600Z [3401/4997] 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-01-24T02:44:50.5466260Z [3402/4997] 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-01-24T02:44:50.5489070Z [3403/4997] 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-01-24T02:44:50.5495020Z [3404/4997] 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-01-24T02:44:50.5504040Z [3405/4997] 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-01-24T02:44:50.6170470Z [3406/4997] 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-01-24T02:44:50.6173250Z [3407/4997] 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-01-24T02:44:50.6178230Z [3408/4997] 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-01-24T02:44:50.6251090Z [3409/4997] 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-01-24T02:44:50.6794860Z [3410/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:50.6873360Z [3411/4997] 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-01-24T02:44:50.7027570Z [3412/4997] 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-01-24T02:44:50.7037570Z [3413/4997] 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-01-24T02:44:50.7060140Z [3414/4997] 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-01-24T02:44:50.7350930Z [3415/4997] 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-01-24T02:44:50.7556490Z [3416/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:50.7661250Z [3417/4997] 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-01-24T02:44:50.7724480Z [3418/4997] 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-01-24T02:44:50.8196480Z [3419/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:50.8257780Z [3420/4997] 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-01-24T02:44:50.8263830Z [3421/4997] 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-01-24T02:44:50.8269940Z [3422/4997] 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-01-24T02:44:50.8379380Z [3423/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:50.8506430Z [3424/4997] 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-01-24T02:44:50.8710160Z [3425/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:50.8950370Z [3426/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:50.9088390Z [3427/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:50.9118480Z [3428/4997] 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-01-24T02:44:50.9712350Z [3429/4997] 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-01-24T02:44:50.9783870Z [3430/4997] 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-01-24T02:44:50.9785360Z [3431/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:50.9794120Z [3432/4997] 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-01-24T02:44:50.9895090Z [3433/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:50.9913420Z [3434/4997] 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-01-24T02:44:50.9955670Z [3435/4997] 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-01-24T02:44:51.0486750Z [3436/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:51.0549320Z [3437/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:51.0672550Z [3438/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:51.0995020Z [3439/4997] 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-01-24T02:44:51.1039500Z [3440/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:51.1146100Z [3441/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:51.1173570Z [3442/4997] 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-01-24T02:44:51.1194200Z [3443/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:51.1199250Z [3444/4997] 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-01-24T02:44:51.1208270Z [3445/4997] 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-01-24T02:44:51.2031790Z [3446/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:51.2053480Z [3447/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:51.2066760Z [3448/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:51.2265670Z [3449/4997] 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-01-24T02:44:51.2312230Z [3450/4997] 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-01-24T02:44:51.2721980Z [3451/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:51.2756790Z [3452/4997] 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-01-24T02:44:51.2759890Z [3453/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:51.2764200Z [3454/4997] 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-01-24T02:44:51.2767670Z [3455/4997] 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-01-24T02:44:51.3212350Z [3456/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:51.3234780Z [3457/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:51.3301660Z [3458/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:51.3488560Z [3459/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:51.3549800Z [3460/4997] 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-01-24T02:44:51.4219840Z [3461/4997] 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-01-24T02:44:51.4320610Z [3462/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:51.4342080Z [3463/4997] 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-01-24T02:44:51.4449210Z [3464/4997] 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-01-24T02:44:51.4499140Z [3465/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:51.4553070Z [3466/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:51.4556190Z [3467/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2025-01-24T02:44:51.4797110Z [3468/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u8.c.o 2025-01-24T02:44:51.5002570Z [3469/4997] 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-01-24T02:44:51.5124740Z [3470/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-rndnu-neon-mul16.c.o 2025-01-24T02:44:51.5737260Z [3471/4997] 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-01-24T02:44:51.5748080Z [3472/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u24.c.o 2025-01-24T02:44:51.5751660Z [3473/4997] 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-01-24T02:44:51.5756480Z [3474/4997] 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-01-24T02:44:51.5894720Z [3475/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u16.c.o 2025-01-24T02:44:51.5935650Z [3476/4997] 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-01-24T02:44:51.5937000Z [3477/4997] 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-01-24T02:44:51.6202110Z [3478/4997] 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-01-24T02:44:51.6225710Z [3479/4997] 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-01-24T02:44:51.6853740Z [3480/4997] 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-01-24T02:44:51.7056750Z [3481/4997] 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-01-24T02:44:51.7156360Z [3482/4997] 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-01-24T02:44:51.7229680Z [3483/4997] 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-01-24T02:44:51.7246150Z [3484/4997] 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-01-24T02:44:51.7250610Z [3485/4997] 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-01-24T02:44:51.7253500Z [3486/4997] 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-01-24T02:44:51.7331030Z [3487/4997] 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-01-24T02:44:51.7899550Z [3488/4997] 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-01-24T02:44:51.8012220Z [3489/4997] 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-01-24T02:44:51.8174640Z [3490/4997] 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-01-24T02:44:51.8315190Z [3491/4997] 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-01-24T02:44:51.8462670Z [3492/4997] 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-01-24T02:44:51.8499740Z [3493/4997] 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-01-24T02:44:51.8537610Z [3494/4997] 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-01-24T02:44:51.8548270Z [3495/4997] 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-01-24T02:44:51.8706250Z [3496/4997] 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-01-24T02:44:51.8711110Z [3497/4997] 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-01-24T02:44:51.9456710Z [3498/4997] 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-01-24T02:44:51.9689370Z [3499/4997] 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-01-24T02:44:51.9711190Z [3500/4997] 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-01-24T02:44:51.9728360Z [3501/4997] 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-01-24T02:44:51.9732890Z [3502/4997] 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-01-24T02:44:51.9774480Z [3503/4997] 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-01-24T02:44:51.9817760Z [3504/4997] 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-01-24T02:44:51.9993110Z [3505/4997] 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-01-24T02:44:52.0039460Z [3506/4997] 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-01-24T02:44:52.0165130Z [3507/4997] 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-01-24T02:44:52.0899810Z [3508/4997] 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-01-24T02:44:52.1034840Z [3509/4997] 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-01-24T02:44:52.1141010Z [3510/4997] 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-01-24T02:44:52.1145740Z [3511/4997] 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-01-24T02:44:52.1149400Z [3512/4997] 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-01-24T02:44:52.1152960Z [3513/4997] 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-01-24T02:44:52.1501250Z [3514/4997] 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-01-24T02:44:52.1535250Z [3515/4997] 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-01-24T02:44:52.2091570Z [3516/4997] 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-01-24T02:44:52.2194830Z [3517/4997] 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-01-24T02:44:52.2376450Z [3518/4997] 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-01-24T02:44:52.2446580Z [3519/4997] 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-01-24T02:44:52.2565010Z [3520/4997] 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-01-24T02:44:52.2672680Z [3521/4997] 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-01-24T02:44:52.2677240Z [3522/4997] 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-01-24T02:44:52.2847430Z [3523/4997] 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-01-24T02:44:52.2912140Z [3524/4997] 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-01-24T02:44:52.3514670Z [3525/4997] 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-01-24T02:44:52.3613970Z [3526/4997] 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-01-24T02:44:52.3714090Z [3527/4997] 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-01-24T02:44:52.3715690Z [3528/4997] 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-01-24T02:44:52.3790610Z [3529/4997] 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-01-24T02:44:52.4120700Z [3530/4997] 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-01-24T02:44:52.4143130Z [3531/4997] 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-01-24T02:44:52.4197040Z [3532/4997] 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-01-24T02:44:52.4298460Z [3533/4997] 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-01-24T02:44:52.4591590Z [3534/4997] 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-01-24T02:44:52.4893650Z [3535/4997] 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-01-24T02:44:52.4971200Z [3536/4997] 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-01-24T02:44:52.5060700Z [3537/4997] 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-01-24T02:44:52.5186030Z [3538/4997] 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-01-24T02:44:52.5216260Z [3539/4997] 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-01-24T02:44:52.5650600Z [3540/4997] 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-01-24T02:44:52.5795260Z [3541/4997] 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-01-24T02:44:52.5837840Z [3542/4997] 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-01-24T02:44:52.5963320Z [3543/4997] 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-01-24T02:44:52.5968680Z [3544/4997] 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-01-24T02:44:52.6551350Z [3545/4997] 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-01-24T02:44:52.6654070Z [3546/4997] 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-01-24T02:44:52.6761780Z [3547/4997] 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-01-24T02:44:52.6894610Z [3548/4997] 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-01-24T02:44:52.6904070Z [3549/4997] 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-01-24T02:44:52.6905930Z [3550/4997] 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-01-24T02:44:52.7093970Z [3551/4997] 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-01-24T02:44:52.7169320Z [3552/4997] 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-01-24T02:44:52.7471850Z [3553/4997] 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-01-24T02:44:52.7583170Z [3554/4997] 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-01-24T02:44:52.8080760Z [3555/4997] 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-01-24T02:44:52.8170440Z [3556/4997] 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-01-24T02:44:52.8316880Z [3557/4997] 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-01-24T02:44:52.8340100Z [3558/4997] 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-01-24T02:44:52.8342530Z [3559/4997] 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-01-24T02:44:52.8353730Z [3560/4997] 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-01-24T02:44:52.8642390Z [3561/4997] 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-01-24T02:44:52.8830820Z [3562/4997] 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-01-24T02:44:52.8979200Z [3563/4997] 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-01-24T02:44:52.9356390Z [3564/4997] 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-01-24T02:44:52.9464150Z [3565/4997] 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-01-24T02:44:52.9480430Z [3566/4997] 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-01-24T02:44:52.9556840Z [3567/4997] 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-01-24T02:44:52.9617000Z [3568/4997] 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-01-24T02:44:52.9738010Z [3569/4997] 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-01-24T02:44:52.9798780Z [3570/4997] 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-01-24T02:44:52.9976480Z [3571/4997] 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-01-24T02:44:53.0468750Z [3572/4997] 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-01-24T02:44:53.0573760Z [3573/4997] 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-01-24T02:44:53.0884320Z [3574/4997] 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-01-24T02:44:53.0947290Z [3575/4997] 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-01-24T02:44:53.0961680Z [3576/4997] 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-01-24T02:44:53.1203980Z [3577/4997] 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-01-24T02:44:53.1278200Z [3578/4997] 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-01-24T02:44:53.1355440Z [3579/4997] 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-01-24T02:44:53.1647750Z [3580/4997] 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-01-24T02:44:53.1655310Z [3581/4997] 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-01-24T02:44:53.1668700Z [3582/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p4.c.o 2025-01-24T02:44:53.1906800Z [3583/4997] 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-01-24T02:44:53.1968260Z [3584/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p16.c.o 2025-01-24T02:44:53.2344830Z [3585/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neon-c4.c.o 2025-01-24T02:44:53.2432560Z [3586/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-dup-ld64.c.o 2025-01-24T02:44:53.2636290Z [3587/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:53.2742950Z [3588/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-neon.c.o 2025-01-24T02:44:53.2981440Z [3589/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x16-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:53.2999650Z [3590/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:53.3126110Z [3591/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:53.3145590Z [3592/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-dup-ld64.c.o 2025-01-24T02:44:53.3227420Z [3593/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-dup-ld128.c.o 2025-01-24T02:44:53.3244610Z [3594/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-neon-lane-ld64.c.o 2025-01-24T02:44:53.3967600Z [3595/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-neon.c.o 2025-01-24T02:44:53.3985650Z [3596/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-lane-ld64.c.o 2025-01-24T02:44:53.4090100Z [3597/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:53.4101910Z [3598/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:53.4336580Z [3599/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x2-minmax-neon-lane-ld64.c.o 2025-01-24T02:44:53.4353210Z [3600/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8s4-minmax-neon.c.o 2025-01-24T02:44:53.4375920Z [3601/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-lane-ld64.c.o 2025-01-24T02:44:53.4586200Z [3602/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:53.4851270Z [3603/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-dup-ld64.c.o 2025-01-24T02:44:53.4955960Z [3604/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-dup-ld128.c.o 2025-01-24T02:44:53.5283930Z [3605/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-neon.c.o 2025-01-24T02:44:53.5375880Z [3606/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-neon-prfm.c.o 2025-01-24T02:44:53.5385050Z [3607/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-neon.c.o 2025-01-24T02:44:53.5393560Z [3608/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-neon-prfm.c.o 2025-01-24T02:44:53.5493710Z [3609/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-neon-prfm.c.o 2025-01-24T02:44:53.5747600Z [3610/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8s4-minmax-neon.c.o 2025-01-24T02:44:53.5752750Z [3611/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-neon.c.o 2025-01-24T02:44:53.6084990Z [3612/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x16-minmax-neon-lane-ld128.c.o 2025-01-24T02:44:53.6461120Z [3613/4997] 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-01-24T02:44:53.6622150Z [3614/4997] 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-01-24T02:44:53.6631730Z [3615/4997] 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-01-24T02:44:53.6665850Z [3616/4997] 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-01-24T02:44:53.6914140Z [3617/4997] 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-01-24T02:44:53.6960180Z [3618/4997] 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-01-24T02:44:53.7153870Z [3619/4997] 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-01-24T02:44:53.7385010Z [3620/4997] 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-01-24T02:44:53.7478420Z [3621/4997] 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-01-24T02:44:53.7551210Z [3622/4997] 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-01-24T02:44:53.7676230Z [3623/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u8.c.o 2025-01-24T02:44:53.7944730Z [3624/4997] 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-01-24T02:44:53.8024870Z [3625/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u16.c.o 2025-01-24T02:44:53.8443430Z [3626/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u24.c.o 2025-01-24T02:44:53.8553460Z [3627/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u8.c.o 2025-01-24T02:44:53.8557470Z [3628/4997] 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-01-24T02:44:53.8561640Z [3629/4997] 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-01-24T02:44:53.8566760Z [3630/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u4.c.o 2025-01-24T02:44:53.8570080Z [3631/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u16.c.o 2025-01-24T02:44:53.8587400Z [3632/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u24.c.o 2025-01-24T02:44:53.8840420Z [3633/4997] 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-01-24T02:44:53.9225550Z [3634/4997] 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-01-24T02:44:53.9337830Z [3635/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u4.c.o 2025-01-24T02:44:53.9658000Z [3636/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u16-acc2.c.o 2025-01-24T02:44:53.9678900Z [3637/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u8-acc2.c.o 2025-01-24T02:44:53.9682720Z [3638/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u16-acc4.c.o 2025-01-24T02:44:53.9858170Z [3639/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c64.c.o 2025-01-24T02:44:53.9893130Z [3640/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u4.c.o 2025-01-24T02:44:53.9897340Z [3641/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c32.c.o 2025-01-24T02:44:54.0093730Z [3642/4997] 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-01-24T02:44:54.0096420Z [3643/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u8-acc2.c.o 2025-01-24T02:44:54.0732130Z [3644/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u16-acc2.c.o 2025-01-24T02:44:54.0933490Z [3645/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u12-acc3.c.o 2025-01-24T02:44:54.0941780Z [3646/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u12-acc3.c.o 2025-01-24T02:44:54.0955280Z [3647/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u4.c.o 2025-01-24T02:44:54.0976300Z [3648/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u8-acc2.c.o 2025-01-24T02:44:54.1053020Z [3649/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u8-acc2.c.o 2025-01-24T02:44:54.1308720Z [3650/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u16-acc2.c.o 2025-01-24T02:44:54.1442130Z [3651/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u4.c.o 2025-01-24T02:44:54.1552300Z [3652/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u16-acc2.c.o 2025-01-24T02:44:54.2008270Z [3653/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u16-acc4.c.o 2025-01-24T02:44:54.2081110Z [3654/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u12-acc3.c.o 2025-01-24T02:44:54.2094760Z [3655/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u4.c.o 2025-01-24T02:44:54.2124300Z [3656/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u8-acc2.c.o 2025-01-24T02:44:54.2211440Z [3657/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u12-acc3.c.o 2025-01-24T02:44:54.2215080Z [3658/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon-pipelined.c.o 2025-01-24T02:44:54.2453810Z [3659/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon-x2.c.o 2025-01-24T02:44:54.2474010Z [3660/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u16-acc2.c.o 2025-01-24T02:44:54.2800350Z [3661/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon-x2.c.o 2025-01-24T02:44:54.2868220Z [3662/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon.c.o 2025-01-24T02:44:54.3227490Z [3663/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon-pipelined.c.o 2025-01-24T02:44:54.3303460Z [3664/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon-x2.c.o 2025-01-24T02:44:54.3315590Z [3665/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon.c.o 2025-01-24T02:44:54.3327050Z [3666/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon-pipelined.c.o 2025-01-24T02:44:54.3539080Z [3667/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon-x2.c.o 2025-01-24T02:44:54.3682690Z [3668/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon-pipelined.c.o 2025-01-24T02:44:54.3905260Z [3669/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon.c.o 2025-01-24T02:44:54.4093180Z [3670/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-neon-u4.c.o 2025-01-24T02:44:54.4144380Z [3671/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x1-minmax-neon.c.o 2025-01-24T02:44:54.4429850Z [3672/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-neon-u4.c.o 2025-01-24T02:44:54.4473970Z [3673/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-neon-u4.c.o 2025-01-24T02:44:54.4475300Z [3674/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-neon-u4.c.o 2025-01-24T02:44:54.4500500Z [3675/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-neon-u4.c.o 2025-01-24T02:44:54.4759440Z [3676/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-neon-u4.c.o 2025-01-24T02:44:54.4792080Z [3677/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-neon-u4.c.o 2025-01-24T02:44:54.5009500Z [3678/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-neon-u4.c.o 2025-01-24T02:44:54.5061800Z [3679/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-neon-u4.c.o 2025-01-24T02:44:54.5482810Z [3680/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-neon-u4.c.o 2025-01-24T02:44:54.5585740Z [3681/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-neon-u4.c.o 2025-01-24T02:44:54.5732580Z [3682/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-neon-u4.c.o 2025-01-24T02:44:54.5735460Z [3683/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-neon-u4.c.o 2025-01-24T02:44:54.6079660Z [3684/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-neon-u4.c.o 2025-01-24T02:44:54.6116970Z [3685/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-neon-u4.c.o 2025-01-24T02:44:54.6125480Z [3686/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-neon-u4.c.o 2025-01-24T02:44:54.6129920Z [3687/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-neon-u4.c.o 2025-01-24T02:44:54.6296900Z [3688/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-neon-u8.c.o 2025-01-24T02:44:54.6337530Z [3689/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u4.c.o 2025-01-24T02:44:54.6561790Z [3690/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u16.c.o 2025-01-24T02:44:54.6719820Z [3691/4997] Generating ../../../torch/utils/data/datapipes/datapipe.pyi 2025-01-24T02:44:54.6815000Z [3692/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u12.c.o 2025-01-24T02:44:54.6929250Z [3693/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u12.c.o 2025-01-24T02:44:54.7373560Z [3694/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u4.c.o 2025-01-24T02:44:54.7398030Z [3695/4997] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u16.c.o 2025-01-24T02:44:54.7427550Z [3696/4997] 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-01-24T02:44:54.7448330Z [3697/4997] Building C object sleef/src/libm/CMakeFiles/mkrename_gnuabi.dir/mkrename_gnuabi.c.o 2025-01-24T02:44:54.7471250Z [3698/4997] Building C object sleef/src/libm/CMakeFiles/mkmasked_gnuabi.dir/mkmasked_gnuabi.c.o 2025-01-24T02:44:54.7558400Z [3699/4997] Building C object sleef/src/libm/CMakeFiles/mkalias.dir/mkalias.c.o 2025-01-24T02:44:54.7768310Z [3700/4997] Building C object sleef/src/libm/CMakeFiles/mkdisp.dir/mkdisp.c.o 2025-01-24T02:44:54.7965700Z [3701/4997] Generating include/renameadvsimdnofma.h 2025-01-24T02:44:54.7966230Z Generating renameadvsimdnofma.h: mkrename cinz_ 2 4 advsimdnofma 2025-01-24T02:44:54.7966940Z [3702/4997] Generating include/renameadvsimd.h 2025-01-24T02:44:54.7967300Z Generating renameadvsimd.h: mkrename finz_ 2 4 advsimd 2025-01-24T02:44:54.8791340Z [3703/4997] Linking C executable sleef/bin/mkmasked_gnuabi 2025-01-24T02:44:54.8908990Z [3704/4997] Linking C executable sleef/bin/mkalias 2025-01-24T02:44:54.8994800Z [3705/4997] Linking C executable sleef/bin/mkrename_gnuabi 2025-01-24T02:44:54.9100300Z [3706/4997] Linking C executable sleef/bin/mkdisp 2025-01-24T02:44:54.9194460Z [3707/4997] Generating include/renamepurec_scalar.h 2025-01-24T02:44:54.9202560Z Generating renamepurec_scalar.h: mkrename cinz_ 1 1 purec 2025-01-24T02:44:54.9209720Z [3708/4997] Generating include/renamepurecfma_scalar.h 2025-01-24T02:44:54.9224260Z Generating renamepurecfma_scalar.h: mkrename finz_ 1 1 purecfma 2025-01-24T02:44:54.9416190Z [3709/4997] Building C object sleef/src/libm/CMakeFiles/sleefadvsimdnofma.dir/sleefsimdsp.c.o 2025-01-24T02:44:54.9613750Z [3710/4997] Building C object sleef/src/libm/CMakeFiles/sleefadvsimdnofma.dir/sleefsimddp.c.o 2025-01-24T02:44:54.9939710Z [3711/4997] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimdsp.c.o 2025-01-24T02:44:55.0023050Z [3712/4997] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimdnofma.dir/sleefsimdsp.c.o 2025-01-24T02:44:55.0038780Z [3713/4997] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimddp.c.o 2025-01-24T02:44:55.0200310Z [3714/4997] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimdsp.c.o 2025-01-24T02:44:55.0384340Z [3715/4997] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimddp.c.o 2025-01-24T02:44:55.0418840Z [3716/4997] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimdnofma.dir/sleefsimddp.c.o 2025-01-24T02:44:55.0452690Z [3717/4997] Generating include/renamecuda.h 2025-01-24T02:44:55.0460950Z Generating renamecuda.h: mkrename finz_ 1 1 cuda 2025-01-24T02:44:55.0499890Z [3718/4997] Generating sleeflibm_ADVSIMD.h.tmp 2025-01-24T02:44:55.0526730Z [3719/4997] Generating sleeflibm_ADVSIMDNOFMA.h.tmp 2025-01-24T02:44:55.0586850Z [3720/4997] Generating sleeflibm_ADVSIMD_.h.tmp 2025-01-24T02:44:55.0617350Z [3721/4997] Generating sleeflibm_DSP_SCALAR.h.tmp 2025-01-24T02:44:55.0655930Z [3722/4997] Generating sleeflibm_PURECFMA_SCALAR.h.tmp 2025-01-24T02:44:55.0688090Z [3723/4997] Generating sleeflibm_PUREC_SCALAR.h.tmp 2025-01-24T02:44:55.0738700Z [3724/4997] Generating sleeflibm_SVE.h.tmp 2025-01-24T02:44:55.0755620Z [3725/4997] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimdsp.c.o 2025-01-24T02:44:55.0798400Z [3726/4997] Generating sleeflibm_SVENOFMA.h.tmp 2025-01-24T02:44:55.0860040Z [3727/4997] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimddp.c.o 2025-01-24T02:44:55.0911730Z [3728/4997] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimdsp.c.o 2025-01-24T02:44:55.0981490Z [3729/4997] Generating include/renamedspscalar.h 2025-01-24T02:44:55.1022180Z [3730/4997] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimddp.c.o 2025-01-24T02:44:55.1121030Z [3731/4997] Generating ../../../include/sleef.h 2025-01-24T02:44:55.1256380Z [3732/4997] Generating alias_ADVSIMD_dp.h.tmp 2025-01-24T02:44:55.1256880Z [3733/4997] Generating alias_ADVSIMD_sp.h.tmp 2025-01-24T02:44:55.1469900Z [3734/4997] Generating dispscalar.c.body 2025-01-24T02:44:55.1550430Z [3735/4997] Generating include/alias_advsimd.h 2025-01-24T02:44:55.1702800Z [3736/4997] Generating dispscalar.c 2025-01-24T02:44:55.1833260Z [3737/4997] Building C object sleef/src/common/CMakeFiles/common.dir/common.c.o 2025-01-24T02:44:55.1841650Z [3738/4997] Building C object sleef/src/common/CMakeFiles/arraymap.dir/arraymap.c.o 2025-01-24T02:44:55.2072840Z [3739/4997] Building C object sleef/src/common/CMakeFiles/addSuffix.dir/addSuffix.c.o 2025-01-24T02:44:55.2738620Z [3740/4997] Building C object sleef/src/libm/CMakeFiles/sleef.dir/rempitab.c.o 2025-01-24T02:44:55.2914300Z [3741/4997] Building C object sleef/src/libm/CMakeFiles/sleefadvsimd.dir/sleefsimddp.c.o 2025-01-24T02:44:55.2916420Z [3742/4997] Building C object sleef/src/libm/CMakeFiles/sleefadvsimd.dir/sleefsimdsp.c.o 2025-01-24T02:44:55.2936580Z [3743/4997] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimd.dir/sleefsimdsp.c.o 2025-01-24T02:44:55.2953910Z [3744/4997] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimd.dir/sleefsimddp.c.o 2025-01-24T02:44:55.3072190Z [3745/4997] Building C object sleef/src/libm/CMakeFiles/dispscalar_obj.dir/dispscalar.c.o 2025-01-24T02:44:55.3348350Z [3746/4997] Linking C executable sleef/bin/addSuffix 2025-01-24T02:44:55.4335530Z [3747/4997] Linking C static library sleef/lib/libsleef.a 2025-01-24T02:44:55.5879430Z [3748/4997] Linking C static library lib/libmicrokernels-all.a 2025-01-24T02:44:59.0557940Z [3749/4997] Generating ../../../torch/_C/__init__.pyi, ../../../torch/_C/_VariableFunctions.pyi, ../../../torch/nn/functional.pyi 2025-01-24T02:44:59.7394280Z [3750/4997] Regenerating version file... 2025-01-24T02:45:00.1194210Z [3751/4997] Generating ../../torch/csrc/autograd/generated/Functions.cpp, ../../torch/csrc/autograd/generated/ViewFuncs.cpp, ../../torch/csrc/autograd/generated/VariableType_0.cpp, ../../torch/csrc/autograd/generated/VariableType_1.cpp, ../../torch/csrc/autograd/generated/VariableType_2.cpp, ../../torch/csrc/autograd/generated/VariableType_3.cpp, ../../torch/csrc/autograd/generated/VariableType_4.cpp, ../../torch/csrc/autograd/generated/TraceType_0.cpp, ../../torch/csrc/autograd/generated/TraceType_1.cpp, ../../torch/csrc/autograd/generated/TraceType_2.cpp, ../../torch/csrc/autograd/generated/TraceType_3.cpp, ../../torch/csrc/autograd/generated/TraceType_4.cpp, ../../torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp, ../../torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp, ../../torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp, ../../torch/csrc/lazy/generated/LazyNativeFunctions.cpp, ../../torch/csrc/lazy/generated/RegisterAutogradLazy.cpp, ../../torch/csrc/lazy/generated/RegisterLazy.cpp, ../../torch/csrc/autograd/generated/Functions.h, ../../torch/csrc/autograd/generated/variable_factories.h, ../../torch/csrc/autograd/generated/ViewFuncs.h, ../../torch/csrc/autograd/generated/VariableType.h, ../../torch/csrc/lazy/generated/LazyIr.h, ../../torch/csrc/lazy/generated/LazyNonNativeIr.h, ../../torch/csrc/lazy/generated/LazyNativeFunctions.h, ../../torch/csrc/autograd/generated/python_functions_0.cpp, ../../torch/csrc/autograd/generated/python_functions_1.cpp, ../../torch/csrc/autograd/generated/python_functions_2.cpp, ../../torch/csrc/autograd/generated/python_functions_3.cpp, ../../torch/csrc/autograd/generated/python_functions_4.cpp, ../../torch/csrc/autograd/generated/python_variable_methods.cpp, ../../torch/csrc/autograd/generated/python_torch_functions_0.cpp, ../../torch/csrc/autograd/generated/python_torch_functions_1.cpp, ../../torch/csrc/autograd/generated/python_torch_functions_2.cpp, ../../torch/csrc/autograd/generated/python_nn_functions.cpp, ../../torch/csrc/autograd/generated/python_fft_functions.cpp, ../../torch/csrc/autograd/generated/python_linalg_functions.cpp, ../../torch/csrc/autograd/generated/python_nested_functions.cpp, ../../torch/csrc/autograd/generated/python_sparse_functions.cpp, ../../torch/csrc/autograd/generated/python_special_functions.cpp, ../../torch/csrc/autograd/generated/python_return_types.cpp, ../../torch/csrc/autograd/generated/python_enum_tag.cpp, ../../torch/csrc/autograd/generated/python_functions.h, ../../torch/csrc/autograd/generated/python_return_types.h, ../../torch/testing/_internal/generated/annotated_fn_args.py, ../../torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.cpp 2025-01-24T02:45:00.4045080Z [3752/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Dispatch.cpp.o 2025-01-24T02:45:00.4202610Z [3753/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/AccumulateType.cpp.o 2025-01-24T02:45:00.4529090Z [3754/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CPUGeneratorImpl.cpp.o 2025-01-24T02:45:00.4983950Z [3755/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DynamicLibrary.cpp.o 2025-01-24T02:45:00.5533610Z [3756/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FuncTorchTLS.cpp.o 2025-01-24T02:45:01.4778290Z [3757/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DeviceAccelerator.cpp.o 2025-01-24T02:45:01.8617150Z [3758/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/EmptyTensor.cpp.o 2025-01-24T02:45:02.0572280Z [3759/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Context.cpp.o 2025-01-24T02:45:03.1972910Z [3760/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedTensorImpl.cpp.o 2025-01-24T02:45:03.2592220Z [3761/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ExpandUtils.cpp.o 2025-01-24T02:45:03.7149440Z [3762/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ConjugateFallback.cpp.o 2025-01-24T02:45:03.7492400Z [3763/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalStorageImpl.cpp.o 2025-01-24T02:45:03.9515620Z [3764/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapMode.cpp.o 2025-01-24T02:45:04.7061910Z [3765/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MapAllocator.cpp.o 2025-01-24T02:45:04.8154390Z [3766/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalTensorWrapper.cpp.o 2025-01-24T02:45:05.0207810Z [3767/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CachedTensorUtils.cpp.o 2025-01-24T02:45:05.1588380Z [3768/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DLConvertor.cpp.o 2025-01-24T02:45:05.1691360Z [3769/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NamedTensorUtils.cpp.o 2025-01-24T02:45:05.6934550Z [3770/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelNative.cpp.o 2025-01-24T02:45:05.7119240Z [3771/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelOpenMP.cpp.o 2025-01-24T02:45:05.9360960Z [3772/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MemoryOverlap.cpp.o 2025-01-24T02:45:06.2527210Z [3773/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelThreadPoolNative.cpp.o 2025-01-24T02:45:06.3604850Z [3774/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalInverses.cpp.o 2025-01-24T02:45:06.4388450Z [3775/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/PythonTorchFunctionTLS.cpp.o 2025-01-24T02:45:06.5337400Z [3776/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SavedTensorHooks.cpp.o 2025-01-24T02:45:06.6072640Z [3777/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SequenceNumber.cpp.o 2025-01-24T02:45:06.8322410Z [3778/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelCommon.cpp.o 2025-01-24T02:45:07.3996470Z [3779/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalizeFallbackKernel.cpp.o 2025-01-24T02:45:07.5315460Z [3780/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorGeometry.cpp.o 2025-01-24T02:45:08.3752930Z [3781/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedFallback.cpp.o 2025-01-24T02:45:09.2030220Z [3782/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapTransforms.cpp.o 2025-01-24T02:45:09.2877800Z [3783/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorMeta.cpp.o 2025-01-24T02:45:09.8037670Z [3784/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ScalarOps.cpp.o 2025-01-24T02:45:10.0995900Z [3785/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorNames.cpp.o 2025-01-24T02:45:10.1864940Z [3786/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NestedTensorImpl.cpp.o 2025-01-24T02:45:10.6597050Z [3787/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalPythonObjects.cpp.o 2025-01-24T02:45:11.5257960Z [3788/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/StorageUtils.cpp.o 2025-01-24T02:45:12.0489510Z [3789/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseCsrTensorImpl.cpp.o 2025-01-24T02:45:12.1121530Z [3790/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIndexing.cpp.o 2025-01-24T02:45:12.1423710Z [3791/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseTensorImpl.cpp.o 2025-01-24T02:45:12.4471010Z [3792/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/VmapModeRegistrations.cpp.o 2025-01-24T02:45:12.7059700Z [3793/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/FlushDenormal.cpp.o 2025-01-24T02:45:12.7635000Z [3794/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/Utils.cpp.o 2025-01-24T02:45:12.9922680Z [3795/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIterator.cpp.o 2025-01-24T02:45:13.0929030Z [3796/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchingRegistrations.cpp.o 2025-01-24T02:45:13.1019020Z [3797/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Version.cpp.o 2025-01-24T02:45:13.1770190Z [3798/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CPUGuardImpl.cpp.o 2025-01-24T02:45:13.2846660Z [3799/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CUDAHooksInterface.cpp.o 2025-01-24T02:45:13.3067780Z [3800/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HIPHooksInterface.cpp.o 2025-01-24T02:45:13.3989870Z [3801/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HPUHooksInterface.cpp.o 2025-01-24T02:45:13.4854180Z [3802/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/IPUHooksInterface.cpp.o 2025-01-24T02:45:13.5163680Z [3803/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MAIAHooksInterface.cpp.o 2025-01-24T02:45:13.6035390Z [3804/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MPSHooksInterface.cpp.o 2025-01-24T02:45:13.6670360Z [3805/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MTIAHooksInterface.cpp.o 2025-01-24T02:45:13.6913830Z [3806/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MetaGuardImpl.cpp.o 2025-01-24T02:45:13.7852220Z [3807/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/PrivateUse1HooksInterface.cpp.o 2025-01-24T02:45:13.8707210Z [3808/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/XPUHooksInterface.cpp.o 2025-01-24T02:45:13.9633980Z [3809/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/ADInterpreters.cpp.o 2025-01-24T02:45:15.9204830Z [3810/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorUtils.cpp.o 2025-01-24T02:45:16.1834080Z [3811/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Utils.cpp.o 2025-01-24T02:45:16.2984840Z [3812/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalState.cpp.o 2025-01-24T02:45:17.5715750Z [3813/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ZeroTensorFallback.cpp.o 2025-01-24T02:45:20.7626030Z [3814/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesActivation.cpp.o 2025-01-24T02:45:22.0575850Z [3815/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDynamic.cpp.o 2025-01-24T02:45:22.1485980Z [3816/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesConvolution.cpp.o 2025-01-24T02:45:23.6364600Z [3817/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/autocast_mode.cpp.o 2025-01-24T02:45:23.9666260Z [3818/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesHelper.cpp.o 2025-01-24T02:45:24.3789020Z [3819/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesBinaryOps.cpp.o 2025-01-24T02:45:24.5837070Z [3820/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesFactory.cpp.o 2025-01-24T02:45:25.9338690Z [3821/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDecompositions.cpp.o 2025-01-24T02:45:27.6383240Z [3822/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesIndexing.cpp.o 2025-01-24T02:45:29.9929640Z [3823/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLoss.cpp.o 2025-01-24T02:45:30.5107770Z [3824/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLinearAlgebra.cpp.o 2025-01-24T02:45:31.4051560Z [3825/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedTensorImpl.cpp.o 2025-01-24T02:45:31.9177380Z [3826/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesPooling.cpp.o 2025-01-24T02:45:32.0488660Z [3827/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesModules.cpp.o 2025-01-24T02:45:32.8831990Z [3828/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/FunctionalizeInterpreter.cpp.o 2025-01-24T02:45:33.1189930Z [3829/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesNorm.cpp.o 2025-01-24T02:45:33.1467070Z [3830/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/Interpreter.cpp.o 2025-01-24T02:45:33.6591610Z [3831/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesReduceOps.cpp.o 2025-01-24T02:45:33.9177700Z [3832/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PlumbingHelper.cpp.o 2025-01-24T02:45:33.9439680Z [3833/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesRandomness.cpp.o 2025-01-24T02:45:34.3694600Z [3834/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/TensorWrapper.cpp.o 2025-01-24T02:45:34.6844850Z [3835/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapInterpreter.cpp.o 2025-01-24T02:45:36.5054100Z [3836/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesScatterOps.cpp.o 2025-01-24T02:45:36.8866830Z [3837/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/record_function.cpp.o 2025-01-24T02:45:37.1390120Z [3838/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedFallback.cpp.o 2025-01-24T02:45:37.1601610Z [3839/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenGeneral.cpp.o 2025-01-24T02:45:37.4828750Z [3840/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/BackendSelectFallbackKernel.cpp.o 2025-01-24T02:45:38.8820440Z [3841/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyVmapTransforms.cpp.o 2025-01-24T02:45:39.0159180Z [3842/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesUnaryOps.cpp.o 2025-01-24T02:45:39.4901960Z [3843/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesViews.cpp.o 2025-01-24T02:45:39.8446390Z [3844/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/DynamicLayer.cpp.o 2025-01-24T02:45:40.8665550Z [3845/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PyTorchOperatorHacks.cpp.o 2025-01-24T02:45:41.2938960Z [3846/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOps.cpp.o 2025-01-24T02:45:41.3494630Z [3847/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapModeRegistrations.cpp.o 2025-01-24T02:45:41.5300940Z [3848/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyBatchingRegistrations.cpp.o 2025-01-24T02:45:41.6728880Z [3849/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorCompare.cpp.o 2025-01-24T02:45:41.8917730Z [3850/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypeProperties.cpp.o 2025-01-24T02:45:42.0917500Z [3851/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypePropertiesRegistry.cpp.o 2025-01-24T02:45:42.4488680Z [3852/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dict.cpp.o 2025-01-24T02:45:42.5973420Z [3853/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOpsUtils.cpp.o 2025-01-24T02:45:42.6043140Z [3854/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dimname.cpp.o 2025-01-24T02:45:42.8293520Z [3855/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Formatting.cpp.o 2025-01-24T02:45:43.0816780Z [3856/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Generator.cpp.o 2025-01-24T02:45:43.2805590Z [3857/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SegmentReduce.cpp.o 2025-01-24T02:45:43.2826730Z [3858/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/GeneratorForPrivateuseone.cpp.o 2025-01-24T02:45:43.5890370Z [3859/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/List.cpp.o 2025-01-24T02:45:43.6121350Z [3860/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/MetaFallbackKernel.cpp.o 2025-01-24T02:45:43.7386810Z [3861/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SoftMax.cpp.o 2025-01-24T02:45:43.7972150Z [3862/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedTensor.cpp.o 2025-01-24T02:45:43.9022390Z [3863/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NestedIntSymNodeImpl.cpp.o 2025-01-24T02:45:43.9153430Z [3864/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedRegistrations.cpp.o 2025-01-24T02:45:44.0775000Z [3865/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Range.cpp.o 2025-01-24T02:45:44.1247900Z [3866/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonFallbackKernel.cpp.o 2025-01-24T02:45:44.1802920Z [3867/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonOpRegistrationTrampoline.cpp.o 2025-01-24T02:45:44.3458850Z [3868/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Tensor.cpp.o 2025-01-24T02:45:44.4544290Z [3869/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TorchDispatchUtils.cpp.o 2025-01-24T02:45:44.5335640Z [3870/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableFallbackKernel.cpp.o 2025-01-24T02:45:44.6005800Z [3871/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableHooksInterface.cpp.o 2025-01-24T02:45:44.6197910Z [3872/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Vitals.cpp.o 2025-01-24T02:45:44.7511880Z [3873/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/adaption.cpp.o 2025-01-24T02:45:44.7692120Z [3874/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/blob.cpp.o 2025-01-24T02:45:44.7760870Z [3875/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SummaryOps.cpp.o 2025-01-24T02:45:44.9089620Z [3876/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/boxing/KernelFunction.cpp.o 2025-01-24T02:45:45.0729990Z [3877/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/class_type.cpp.o 2025-01-24T02:45:45.0933410Z [3878/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/custom_class.cpp.o 2025-01-24T02:45:45.1011120Z [3879/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/ObservedOperators.cpp.o 2025-01-24T02:45:45.1091740Z [3880/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/DispatchKeyExtractor.cpp.o 2025-01-24T02:45:45.3191510Z [3881/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/Dispatcher.cpp.o 2025-01-24T02:45:45.3450480Z [3882/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/OperatorEntry.cpp.o 2025-01-24T02:45:45.3913170Z [3883/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dynamic_type.cpp.o 2025-01-24T02:45:45.4216780Z [3884/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/function_schema.cpp.o 2025-01-24T02:45:45.5848070Z [3885/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/interned_strings.cpp.o 2025-01-24T02:45:45.7034730Z [3886/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SpectralOps.cpp.o 2025-01-24T02:45:45.7052610Z [3887/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ivalue.cpp.o 2025-01-24T02:45:45.7435230Z [3888/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/infer_schema.cpp.o 2025-01-24T02:45:45.7591150Z [3889/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/library.cpp.o 2025-01-24T02:45:45.8697900Z [3890/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/operator_name.cpp.o 2025-01-24T02:45:45.8705880Z [3891/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/op_registration.cpp.o 2025-01-24T02:45:45.8882390Z [3892/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/register_symbols.cpp.o 2025-01-24T02:45:46.0340790Z [3893/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/tensor_type.cpp.o 2025-01-24T02:45:46.0944710Z [3894/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type_factory.cpp.o 2025-01-24T02:45:46.1150370Z [3895/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type.cpp.o 2025-01-24T02:45:46.1298520Z [3896/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/union_type.cpp.o 2025-01-24T02:45:46.1904250Z [3897/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/error_report.cpp.o 2025-01-24T02:45:46.2250440Z [3898/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SparseTensorUtils.cpp.o 2025-01-24T02:45:46.2815490Z [3899/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/function_schema_parser.cpp.o 2025-01-24T02:45:46.2843640Z [3900/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/lexer.cpp.o 2025-01-24T02:45:46.2929850Z [3901/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/strtod.cpp.o 2025-01-24T02:45:46.4708720Z [3902/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_type_parser.cpp.o 2025-01-24T02:45:46.5115890Z [3903/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/source_range.cpp.o 2025-01-24T02:45:46.6432390Z [3904/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling3d.cpp.o 2025-01-24T02:45:46.7712940Z [3905/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling2d.cpp.o 2025-01-24T02:45:47.6091880Z [3906/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Sorting.cpp.o 2025-01-24T02:45:48.9669170Z [3907/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling.cpp.o 2025-01-24T02:45:49.0298170Z [3908/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AmpKernels.cpp.o 2025-01-24T02:45:49.0545650Z [3909/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AffineGridGenerator.cpp.o 2025-01-24T02:45:49.2505340Z [3910/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling3d.cpp.o 2025-01-24T02:45:49.4103040Z [3911/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Activation.cpp.o 2025-01-24T02:45:49.5805280Z [3912/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AutogradComposite.cpp.o 2025-01-24T02:45:50.0463880Z [3913/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool2d.cpp.o 2025-01-24T02:45:51.4440360Z [3914/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BlasKernel.cpp.o 2025-01-24T02:45:51.8691440Z [3915/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool3d.cpp.o 2025-01-24T02:45:52.4893720Z [3916/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BinaryOps.cpp.o 2025-01-24T02:45:52.8804590Z [3917/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Blas.cpp.o 2025-01-24T02:45:53.1497590Z [3918/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ComparisonUtils.cpp.o 2025-01-24T02:45:53.3061850Z [3919/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Bucketization.cpp.o 2025-01-24T02:45:53.4119130Z [3920/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorAdvancedIndexing.cpp.o 2025-01-24T02:45:54.0553440Z [3921/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUBlas.cpp.o 2025-01-24T02:45:54.5185710Z [3922/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebra.cpp.o 2025-01-24T02:45:55.0038330Z [3923/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ChanelShuffle.cpp.o 2025-01-24T02:45:55.6511940Z [3924/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUFallback.cpp.o 2025-01-24T02:45:55.8032060Z [3925/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Col2Im.cpp.o 2025-01-24T02:45:56.0523440Z [3926/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Constraints.cpp.o 2025-01-24T02:45:56.5668930Z [3927/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebraKernel.cpp.o 2025-01-24T02:45:57.6422190Z [3928/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM2d.cpp.o 2025-01-24T02:45:57.8241850Z [3929/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DispatchStub.cpp.o 2025-01-24T02:45:57.8854300Z [3930/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM3d.cpp.o 2025-01-24T02:45:57.9143120Z [3931/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionTBC.cpp.o 2025-01-24T02:45:58.3434390Z [3932/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Correlation.cpp.o 2025-01-24T02:45:58.7709020Z [3933/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Cross.cpp.o 2025-01-24T02:45:58.8110640Z [3934/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Copy.cpp.o 2025-01-24T02:45:58.9942790Z [3935/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool2d.cpp.o 2025-01-24T02:45:58.9960780Z [3936/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Convolution.cpp.o 2025-01-24T02:45:59.5285540Z [3937/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool2d.cpp.o 2025-01-24T02:46:00.3363350Z [3938/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool3d.cpp.o 2025-01-24T02:46:01.2789200Z [3939/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Dropout.cpp.o 2025-01-24T02:46:01.4039050Z [3940/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distance.cpp.o 2025-01-24T02:46:01.6229410Z [3941/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Embedding.cpp.o 2025-01-24T02:46:01.9538520Z [3942/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Fill.cpp.o 2025-01-24T02:46:02.6314250Z [3943/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ForeachOpsKernels.cpp.o 2025-01-24T02:46:02.8477410Z [3944/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distributions.cpp.o 2025-01-24T02:46:03.5771230Z [3945/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool3d.cpp.o 2025-01-24T02:46:03.7121390Z [3946/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FunctionOfAMatrixUtils.cpp.o 2025-01-24T02:46:03.8519920Z [3947/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/EmbeddingBag.cpp.o 2025-01-24T02:46:03.9529320Z [3948/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedAdagrad.cpp.o 2025-01-24T02:46:04.0836290Z [3949/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedAdam.cpp.o 2025-01-24T02:46:04.4604740Z [3950/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedSGD.cpp.o 2025-01-24T02:46:04.5919550Z [3951/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Lerp.cpp.o 2025-01-24T02:46:04.5973170Z [3952/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LegacyBatching.cpp.o 2025-01-24T02:46:05.2162780Z [3953/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GatedLinearUnit.cpp.o 2025-01-24T02:46:06.3616110Z [3954/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Histogram.cpp.o 2025-01-24T02:46:06.4764240Z [3955/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/IndexingUtils.cpp.o 2025-01-24T02:46:06.5197560Z [3956/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Im2Col.cpp.o 2025-01-24T02:46:06.8740940Z [3957/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Itertools.cpp.o 2025-01-24T02:46:06.8844950Z [3958/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Integration.cpp.o 2025-01-24T02:46:07.7822120Z [3959/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GridSampler.cpp.o 2025-01-24T02:46:09.2559260Z [3960/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiLabelMargin.cpp.o 2025-01-24T02:46:09.2644920Z [3961/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Linear.cpp.o 2025-01-24T02:46:09.5552440Z [3962/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiMargin.cpp.o 2025-01-24T02:46:09.7196150Z [3963/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Loss.cpp.o 2025-01-24T02:46:09.9142360Z [3964/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MetaTensor.cpp.o 2025-01-24T02:46:10.4306260Z [3965/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossCTC.cpp.o 2025-01-24T02:46:11.3516100Z [3966/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL2d.cpp.o 2025-01-24T02:46:11.6303410Z [3967/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxPooling.cpp.o 2025-01-24T02:46:12.0413680Z [3968/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL.cpp.o 2025-01-24T02:46:12.1334770Z [3969/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxUnpooling.cpp.o 2025-01-24T02:46:12.4323040Z [3970/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Memory.cpp.o 2025-01-24T02:46:12.8254680Z [3971/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NNPACK.cpp.o 2025-01-24T02:46:12.9772050Z [3972/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LinearAlgebra.cpp.o 2025-01-24T02:46:14.0081150Z [3973/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose2d.cpp.o 2025-01-24T02:46:14.5249560Z [3974/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NamedTensor.cpp.o 2025-01-24T02:46:14.8553450Z [3975/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PointwiseOps.cpp.o 2025-01-24T02:46:14.8758840Z [3976/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose3d.cpp.o 2025-01-24T02:46:15.2256830Z [3977/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Onehot.cpp.o 2025-01-24T02:46:15.6460170Z [3978/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NegateFallback.cpp.o 2025-01-24T02:46:15.9575970Z [3979/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PackedSequence.cpp.o 2025-01-24T02:46:16.7495390Z [3980/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveDilatedConvolution.cpp.o 2025-01-24T02:46:16.8547970Z [3981/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PadNd.cpp.o 2025-01-24T02:46:17.2200900Z [3982/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PixelShuffle.cpp.o 2025-01-24T02:46:17.8559890Z [3983/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pooling.cpp.o 2025-01-24T02:46:18.0319600Z [3984/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pow.cpp.o 2025-01-24T02:46:18.1106120Z [3985/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/QuantizedLinear.cpp.o 2025-01-24T02:46:19.2208350Z [3986/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Normalization.cpp.o 2025-01-24T02:46:19.6023690Z [3987/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceAllOps.cpp.o 2025-01-24T02:46:20.2398230Z [3988/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReflectionPad.cpp.o 2025-01-24T02:46:20.3422250Z [3989/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RangeFactories.cpp.o 2025-01-24T02:46:20.4921090Z [3990/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Repeat.cpp.o 2025-01-24T02:46:21.3610300Z [3991/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReplicationPadding.cpp.o 2025-01-24T02:46:21.9800580Z [3992/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Resize.cpp.o 2025-01-24T02:46:21.9841290Z [3993/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RowwisePrune.cpp.o 2025-01-24T02:46:22.9074700Z [3994/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Scalar.cpp.o 2025-01-24T02:46:23.5155380Z [3995/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorProperties.cpp.o 2025-01-24T02:46:23.5352840Z [3996/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceOps.cpp.o 2025-01-24T02:46:23.5844680Z [3997/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorIteratorReduce.cpp.o 2025-01-24T02:46:24.0990830Z [3998/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold2d.cpp.o 2025-01-24T02:46:24.2141700Z [3999/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold3d.cpp.o 2025-01-24T02:46:25.0751780Z [4000/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TestOps.cpp.o 2025-01-24T02:46:25.2922450Z [4001/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorTransformations.cpp.o 2025-01-24T02:46:25.4020980Z [4002/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorFactories.cpp.o 2025-01-24T02:46:25.6318620Z [4003/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSample.cpp.o 2025-01-24T02:46:25.7030180Z [4004/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RNN.cpp.o 2025-01-24T02:46:26.2184600Z [4005/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TypeProperties.cpp.o 2025-01-24T02:46:27.1635000Z [4006/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnaryOps.cpp.o 2025-01-24T02:46:27.4446730Z [4007/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TriangularOps.cpp.o 2025-01-24T02:46:27.5598060Z [4008/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnfoldBackward.cpp.o 2025-01-24T02:46:28.7408850Z [4009/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBilinear2d.cpp.o 2025-01-24T02:46:28.8328310Z [4010/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleLinear1d.cpp.o 2025-01-24T02:46:28.8468480Z [4011/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBicubic2d.cpp.o 2025-01-24T02:46:29.2790650Z [4012/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorShape.cpp.o 2025-01-24T02:46:29.5172420Z [4013/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest1d.cpp.o 2025-01-24T02:46:29.7993200Z [4014/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/prim_native_functions.cpp.o 2025-01-24T02:46:29.8666400Z [4015/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/verbose_wrapper.cpp.o 2025-01-24T02:46:29.9930800Z [4016/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest2d.cpp.o 2025-01-24T02:46:30.2704550Z [4017/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/library.cpp.o 2025-01-24T02:46:30.9037540Z [4018/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/VariableMethodStubs.cpp.o 2025-01-24T02:46:30.9960440Z [4019/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest3d.cpp.o 2025-01-24T02:46:31.3286400Z [4020/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleTrilinear3d.cpp.o 2025-01-24T02:46:31.4880820Z [4021/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ParamUtils.cpp.o 2025-01-24T02:46:31.8959310Z [4022/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/WeightNorm.cpp.o 2025-01-24T02:46:32.0432160Z [4023/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/group_norm.cpp.o 2025-01-24T02:46:32.8105480Z [4024/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/layer_norm.cpp.o 2025-01-24T02:46:33.2277210Z [4025/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unique.cpp.o 2025-01-24T02:46:34.2129810Z [4026/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear.cpp.o 2025-01-24T02:46:34.7465470Z [4027/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_dynamic.cpp.o 2025-01-24T02:46:35.1396340Z [4028/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.cpp.o 2025-01-24T02:46:35.1522930Z [4029/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_prepack.cpp.o 2025-01-24T02:46:35.7492690Z [4030/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_deserialize.cpp.o 2025-01-24T02:46:35.9362750Z [4031/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_unpack.cpp.o 2025-01-24T02:46:36.5272600Z [4032/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/FlattenIndicesKernel.cpp.o 2025-01-24T02:46:37.1371310Z [4033/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_serialize.cpp.o 2025-01-24T02:46:38.1982830Z [4034/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SoftMax.cpp.o 2025-01-24T02:46:38.3665570Z [4035/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlas.cpp.o 2025-01-24T02:46:38.8522300Z [4036/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseFactories.cpp.o 2025-01-24T02:46:39.1372850Z [4037/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlasImpl.cpp.o 2025-01-24T02:46:40.1943220Z [4038/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensor.cpp.o 2025-01-24T02:46:40.3667170Z [4039/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBinaryOpIntersectionKernel.cpp.o 2025-01-24T02:46:40.8090690Z [4040/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseMatMul.cpp.o 2025-01-24T02:46:42.4972760Z [4041/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensor.cpp.o 2025-01-24T02:46:42.5899530Z [4042/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseUnaryOps.cpp.o 2025-01-24T02:46:43.3289520Z [4043/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ValidateCompressedIndicesKernel.cpp.o 2025-01-24T02:46:45.1093990Z [4044/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBackward.cpp.o 2025-01-24T02:46:45.2029060Z [4045/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorAliases.cpp.o 2025-01-24T02:46:45.5621950Z [4046/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensorMath.cpp.o 2025-01-24T02:46:46.3880700Z [4047/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizer.cpp.o 2025-01-24T02:46:46.5943170Z [4048/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizerBase.cpp.o 2025-01-24T02:46:46.7098350Z [4049/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensorMath.cpp.o 2025-01-24T02:46:47.0036920Z [4050/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorFactories.cpp.o 2025-01-24T02:46:47.0736220Z [4051/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBinaryOps.cpp.o 2025-01-24T02:46:47.4928670Z [4052/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUtils.cpp.o 2025-01-24T02:46:48.6649020Z [4053/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMath.cpp.o 2025-01-24T02:46:49.4980000Z [4054/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMatmul.cpp.o 2025-01-24T02:46:49.9108160Z [4055/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorTransformerFunctions.cpp.o 2025-01-24T02:46:51.0311380Z [4056/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUnaryOps.cpp.o 2025-01-24T02:46:51.4278450Z [4057/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/Copy.cpp.o 2025-01-24T02:46:51.8620200Z [4058/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerChannelAffine.cpp.o 2025-01-24T02:46:52.1914620Z [4059/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorAdvancedIndexing.cpp.o 2025-01-24T02:46:52.8086460Z [4060/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerTensorAffine.cpp.o 2025-01-24T02:46:53.2350090Z [4061/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/QTensor.cpp.o 2025-01-24T02:46:53.5159050Z [4062/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorCompare.cpp.o 2025-01-24T02:46:53.9061160Z [4063/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool3d.cpp.o 2025-01-24T02:46:53.9551820Z [4064/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AdaptiveAveragePooling.cpp.o 2025-01-24T02:46:55.0516460Z [4065/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ChannelShuffle.cpp.o 2025-01-24T02:46:55.0868750Z [4066/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorFactories.cpp.o 2025-01-24T02:46:55.0958340Z [4067/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool2d.cpp.o 2025-01-24T02:46:55.1587790Z [4068/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/RuyUtils.cpp.o 2025-01-24T02:46:55.9455730Z [4069/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/IntReprQuant.cpp.o 2025-01-24T02:46:56.6132170Z [4070/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/LinearUnpackImpl.cpp.o 2025-01-24T02:46:56.6980980Z [4071/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/BinaryOps.cpp.o 2025-01-24T02:46:56.8791510Z [4072/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/MakePerTensorQuantizedTensor.cpp.o 2025-01-24T02:46:57.7451030Z [4073/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ReduceOps.cpp.o 2025-01-24T02:46:57.9811130Z [4074/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Normalization.cpp.o 2025-01-24T02:46:58.2864210Z [4075/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Sorting.cpp.o 2025-01-24T02:46:58.3362930Z [4076/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorOperators.cpp.o 2025-01-24T02:46:58.5257140Z [4077/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/QTensorImpl.cpp.o 2025-01-24T02:46:59.1648330Z [4078/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Pooling.cpp.o 2025-01-24T02:46:59.6116760Z [4079/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CopyKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:47:00.0796500Z [4080/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleBilinear2d.cpp.o 2025-01-24T02:47:00.2340230Z [4081/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorShape.cpp.o 2025-01-24T02:47:00.3205200Z [4082/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CrossKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:47:00.3933580Z [4083/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest3d.cpp.o 2025-01-24T02:47:00.5573690Z [4084/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ChannelShuffleKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:47:00.7176350Z [4085/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CatKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:47:00.7229610Z [4086/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest2d.cpp.o 2025-01-24T02:47:00.7242680Z [4087/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BlasKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:47:00.8817550Z [4088/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:47:01.0135320Z [4089/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AvgPoolKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:47:01.0877750Z [4090/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:47:01.2023420Z [4091/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AmpGradScalerKernels.cpp.DEFAULT.cpp.o 2025-01-24T02:47:01.3214240Z [4092/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:47:01.3701960Z [4093/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp.o 2025-01-24T02:47:01.4546970Z [4094/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/kleidiai/kai_ukernel_interface.cpp.o 2025-01-24T02:47:01.6413640Z [4095/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/vulkan/Context.cpp.o 2025-01-24T02:47:01.7559300Z [4096/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/metal/Context.cpp.o 2025-01-24T02:47:02.0172860Z [4097/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DepthwiseConvKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:47:02.1928830Z [4098/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/XnnpackUtils.cpp.o 2025-01-24T02:47:02.3434900Z [4099/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalConvParams.mm.o 2025-01-24T02:47:02.5281570Z [4100/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalGuardImpl.cpp.o 2025-01-24T02:47:02.6449750Z [4101/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalContext.mm.o 2025-01-24T02:47:02.6516910Z [4102/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalCommandBuffer.mm.o 2025-01-24T02:47:03.1416660Z [4103/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalTensorImplStorage.mm.o 2025-01-24T02:47:03.1470960Z [4104/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalTensorUtils.mm.o 2025-01-24T02:47:03.3861330Z [4105/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ComplexKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:47:03.4877270Z [4106/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNClampOp.mm.o 2025-01-24T02:47:03.9099280Z [4107/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNUtils.mm.o 2025-01-24T02:47:04.1231870Z [4108/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/Quantizer.cpp.o 2025-01-24T02:47:04.3324760Z [4109/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/kleidiai/kai_kernels.cpp.o 2025-01-24T02:47:04.3770110Z [4110/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNNeuronOp.mm.o 2025-01-24T02:47:04.4147360Z [4111/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImage+Tensor.mm.o 2025-01-24T02:47:04.9596470Z [4112/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImageWrapper.mm.o 2025-01-24T02:47:05.5445530Z [4113/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalBinaryElementwise.mm.o 2025-01-24T02:47:05.7438910Z [4114/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalChunk.mm.o 2025-01-24T02:47:05.8888010Z [4115/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalClamp.mm.o 2025-01-24T02:47:06.4774190Z [4116/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalConcat.mm.o 2025-01-24T02:47:07.8075300Z [4117/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalCopy.mm.o 2025-01-24T02:47:07.9687970Z [4118/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorConversions.cpp.o 2025-01-24T02:47:08.4009080Z [4119/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalHardshrink.mm.o 2025-01-24T02:47:08.7969290Z [4120/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNConvOp.mm.o 2025-01-24T02:47:08.8126780Z [4121/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.mm.o 2025-01-24T02:47:09.0190360Z [4122/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalHardswish.mm.o 2025-01-24T02:47:09.3743500Z [4123/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalLeakyReLU.mm.o 2025-01-24T02:47:09.3928910Z [4124/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalNeurons.mm.o 2025-01-24T02:47:09.5959240Z [4125/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalPadding.mm.o 2025-01-24T02:47:09.9635330Z [4126/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalPooling.mm.o 2025-01-24T02:47:10.1309340Z [4127/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalReshape.mm.o 2025-01-24T02:47:10.1872290Z [4128/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalPrepackOpRegister.cpp.o 2025-01-24T02:47:10.5714540Z [4129/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImageUtils.mm.o 2025-01-24T02:47:10.6190270Z [4130/4997] Building C object caffe2/CMakeFiles/torch_cpu.dir/__/third_party/miniz-3.0.2/miniz.c.o 2025-01-24T02:47:10.7329680Z [4131/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalUpsamplingNearest.mm.o 2025-01-24T02:47:10.9504020Z [4132/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/istream_adapter.cc.o 2025-01-24T02:47:10.9658290Z [4133/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/inline_container.cc.o 2025-01-24T02:47:11.1060950Z [4134/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/crc.cc.o 2025-01-24T02:47:11.1430350Z [4135/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/read_adapter_interface.cc.o 2025-01-24T02:47:11.1754400Z [4136/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalAten.mm.o 2025-01-24T02:47:11.1856660Z [4137/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/file_adapter.cc.o 2025-01-24T02:47:11.2766370Z [4138/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/core/common.cc.o 2025-01-24T02:47:11.3471720Z [4139/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/string_utils.cc.o 2025-01-24T02:47:11.3583070Z [4140/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/thread_pool_guard.cpp.o 2025-01-24T02:47:11.4139940Z [4141/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/ThreadPool.cc.o 2025-01-24T02:47:11.5230860Z [4142/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/proto_wrap.cc.o 2025-01-24T02:47:11.5331970Z [4143/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/pthreadpool-cpp.cc.o 2025-01-24T02:47:11.7093140Z [4144/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/perfkernels/embedding_lookup_idx.cc.o 2025-01-24T02:47:11.7852090Z [4145/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ViewFuncs.cpp.o 2025-01-24T02:47:11.8961940Z [4146/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalAddmm.mm.o 2025-01-24T02:47:14.1788720Z [4147/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalConvolution.mm.o 2025-01-24T02:47:16.2703330Z [4148/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalReduce.mm.o 2025-01-24T02:47:16.3269180Z [4149/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalSoftmax.mm.o 2025-01-24T02:47:16.6256310Z [4150/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalTranspose.mm.o 2025-01-24T02:47:39.5447290Z [4151/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/Functions.cpp.o 2025-01-24T02:47:50.2239660Z [4152/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_1.cpp.o 2025-01-24T02:47:51.8138130Z [4153/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_1.cpp.o 2025-01-24T02:47:53.5124510Z [4154/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_0.cpp.o 2025-01-24T02:47:53.8613310Z [4155/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_0.cpp.o 2025-01-24T02:47:56.4805680Z [4156/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_2.cpp.o 2025-01-24T02:47:58.9651110Z [4157/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_3.cpp.o 2025-01-24T02:47:59.3098880Z [4158/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_4.cpp.o 2025-01-24T02:48:01.5839020Z [4159/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp.o 2025-01-24T02:48:02.4430840Z [4160/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp.o 2025-01-24T02:48:05.0596630Z [4161/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/anomaly_mode.cpp.o 2025-01-24T02:48:08.0322120Z [4162/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd.cpp.o 2025-01-24T02:48:11.8559560Z [4163/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_meta.cpp.o 2025-01-24T02:48:16.3448130Z [4164/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_not_implemented_fallback.cpp.o 2025-01-24T02:48:16.4836800Z [4165/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp.o 2025-01-24T02:48:17.6730600Z [4166/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/forward_grad.cpp.o 2025-01-24T02:48:19.0455860Z [4167/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp.o 2025-01-24T02:48:19.3398260Z [4168/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/cpp_hook.cpp.o 2025-01-24T02:48:19.3531870Z [4169/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_2.cpp.o 2025-01-24T02:48:19.9845930Z [4170/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterLazy.cpp.o 2025-01-24T02:48:21.9954740Z [4171/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_4.cpp.o 2025-01-24T02:48:22.5216270Z [4172/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_3.cpp.o 2025-01-24T02:48:23.5256820Z [4173/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/custom_function.cpp.o 2025-01-24T02:48:24.0037260Z [4174/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/LazyNativeFunctions.cpp.o 2025-01-24T02:48:24.2882170Z [4175/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/function.cpp.o 2025-01-24T02:48:24.4050850Z [4176/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/jit_decomp_interface.cpp.o 2025-01-24T02:48:25.2425510Z [4177/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/engine.cpp.o 2025-01-24T02:48:25.3177660Z [4178/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/utils.cpp.o 2025-01-24T02:48:25.7784590Z [4179/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/accumulate_grad.cpp.o 2025-01-24T02:48:26.2161590Z [4180/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/tensor.cpp.o 2025-01-24T02:48:26.3141940Z [4181/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/utils/warnings.cpp.o 2025-01-24T02:48:26.7289380Z [4182/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_metadata.cpp.o 2025-01-24T02:48:27.1614110Z [4183/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_package/model_package_loader.cpp.o 2025-01-24T02:48:27.5610070Z [4184/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/basic_ops.cpp.o 2025-01-24T02:48:28.0807730Z [4185/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner.cpp.o 2025-01-24T02:48:28.5719190Z [4186/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_buffer.cpp.o 2025-01-24T02:48:28.8719770Z [4187/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.cpp.o 2025-01-24T02:48:29.2106260Z [4188/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/saved_variable.cpp.o 2025-01-24T02:48:29.5234130Z [4189/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/oss_proxy_executor.cpp.o 2025-01-24T02:48:29.7917670Z [4190/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/mkldnn_tensor.cpp.o 2025-01-24T02:48:29.9293380Z [4191/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable_info.cpp.o 2025-01-24T02:48:30.0202990Z [4192/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_legacy.cpp.o 2025-01-24T02:48:30.2800690Z [4193/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_mkldnn.cpp.o 2025-01-24T02:48:30.3401130Z [4194/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/record_function_ops.cpp.o 2025-01-24T02:48:30.4006830Z [4195/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/tensor_converter.cpp.o 2025-01-24T02:48:30.7014550Z [4196/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_kineto.cpp.o 2025-01-24T02:48:31.0602540Z [4197/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/object.cpp.o 2025-01-24T02:48:31.0761560Z [4198/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_handler.cpp.o 2025-01-24T02:48:31.3845560Z [4199/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_info.cpp.o 2025-01-24T02:48:31.6866800Z [4200/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_detail.cpp.o 2025-01-24T02:48:32.0338490Z [4201/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_interface.cpp.o 2025-01-24T02:48:32.3795050Z [4202/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_resolver.cpp.o 2025-01-24T02:48:33.8640500Z [4203/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable.cpp.o 2025-01-24T02:48:35.2841910Z [4204/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/mkldnn_rewrite.cpp.o 2025-01-24T02:48:35.4967900Z [4205/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/metal_rewrite.cpp.o 2025-01-24T02:48:35.6535910Z [4206/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_common.cpp.o 2025-01-24T02:48:36.1145560Z [4207/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/inductor_ops.cpp.o 2025-01-24T02:48:36.4798410Z [4208/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/builtin_functions.cpp.o 2025-01-24T02:48:36.8138880Z [4209/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/function_impl.cpp.o 2025-01-24T02:48:36.8254510Z [4210/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/canonicalize_modified_loop.cpp.o 2025-01-24T02:48:37.1108970Z [4211/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/convert_to_ssa.cpp.o 2025-01-24T02:48:37.2010350Z [4212/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module.cpp.o 2025-01-24T02:48:37.3658120Z [4213/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/edit_distance.cpp.o 2025-01-24T02:48:37.4564610Z [4214/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/exit_transforms.cpp.o 2025-01-24T02:48:37.6650170Z [4215/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/inline_loop_condition.cpp.o 2025-01-24T02:48:37.7797650Z [4216/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/ir_emitter.cpp.o 2025-01-24T02:48:37.8341720Z [4217/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/name_mangler.cpp.o 2025-01-24T02:48:37.9553540Z [4218/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/parser.cpp.o 2025-01-24T02:48:38.1670080Z [4219/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_matching.cpp.o 2025-01-24T02:48:38.3063630Z [4220/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/script_type_parser.cpp.o 2025-01-24T02:48:38.4725330Z [4221/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/sugared_value.cpp.o 2025-01-24T02:48:38.7759730Z [4222/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/versioned_symbols.cpp.o 2025-01-24T02:48:38.9470510Z [4223/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/alias_analysis.cpp.o 2025-01-24T02:48:39.0832070Z [4224/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/attributes.cpp.o 2025-01-24T02:48:39.9376670Z [4225/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/graph_utils.cpp.o 2025-01-24T02:48:40.2604490Z [4226/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/ir.cpp.o 2025-01-24T02:48:40.2905750Z [4227/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/codegen.cpp.o 2025-01-24T02:48:40.3024550Z [4228/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/compiler.cpp.o 2025-01-24T02:48:40.6638100Z [4229/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/node_hashing.cpp.o 2025-01-24T02:48:40.8999830Z [4230/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/scope.cpp.o 2025-01-24T02:48:41.0692590Z [4231/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/subgraph_matcher.cpp.o 2025-01-24T02:48:41.3888970Z [4232/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/type_hashing.cpp.o 2025-01-24T02:48:41.6597680Z [4233/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/executor.cpp.o 2025-01-24T02:48:41.7101570Z [4234/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_log.cpp.o 2025-01-24T02:48:41.9727380Z [4235/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_opt_limit.cpp.o 2025-01-24T02:48:42.0470320Z [4236/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/fallback.cpp.o 2025-01-24T02:48:42.0734780Z [4237/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/model_compatibility.cpp.o 2025-01-24T02:48:42.1874600Z [4238/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/interface.cpp.o 2025-01-24T02:48:42.2369250Z [4239/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/kernel_cache.cpp.o 2025-01-24T02:48:42.2772790Z [4240/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/function.cpp.o 2025-01-24T02:48:42.3822500Z [4241/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/runtime_compatibility.cpp.o 2025-01-24T02:48:42.5127140Z [4242/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import.cpp.o 2025-01-24T02:48:42.6157370Z [4243/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/module.cpp.o 2025-01-24T02:48:42.7969280Z [4244/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/backend.cpp.o 2025-01-24T02:48:42.8217310Z [4245/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/registry.cpp.o 2025-01-24T02:48:42.9993690Z [4246/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/observer.cpp.o 2025-01-24T02:48:43.2552530Z [4247/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_operators.cpp.o 2025-01-24T02:48:43.2622380Z [4248/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_bytecode.cpp.o 2025-01-24T02:48:43.5226900Z [4249/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/prim_ops_registery.cpp.o 2025-01-24T02:48:45.2492910Z [4250/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/tracer.cpp.o 2025-01-24T02:48:45.7912720Z [4251/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/interpreter.cpp.o 2025-01-24T02:48:46.7292740Z [4252/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/irparser.cpp.o 2025-01-24T02:48:46.9430800Z [4253/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/constants.cpp.o 2025-01-24T02:48:47.0154700Z [4254/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/type_parser.cpp.o 2025-01-24T02:48:47.2295070Z [4255/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/upgrader_mobile.cpp.o 2025-01-24T02:48:47.3064110Z [4256/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders.cpp.o 2025-01-24T02:48:47.5207920Z [4257/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/utils.cpp.o 2025-01-24T02:48:47.5723290Z [4258/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders_entry.cpp.o 2025-01-24T02:48:47.7090670Z [4259/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/version_map.cpp.o 2025-01-24T02:48:47.9041830Z [4260/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/add_if_then_else.cpp.o 2025-01-24T02:48:48.0100610Z [4261/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/annotate_warns.cpp.o 2025-01-24T02:48:48.2573310Z [4262/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/context.cpp.o 2025-01-24T02:48:48.4323370Z [4263/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/register_ops_common_utils.cpp.o 2025-01-24T02:48:48.5351000Z [4264/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize.cpp.o 2025-01-24T02:48:48.6673930Z [4265/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.cpp.o 2025-01-24T02:48:48.7454020Z [4266/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/check_strict_fusion.cpp.o 2025-01-24T02:48:49.2195990Z [4267/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/quantization.cpp.o 2025-01-24T02:48:49.2799640Z [4268/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/common_subexpression_elimination.cpp.o 2025-01-24T02:48:49.5620480Z [4269/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/concat_opt.cpp.o 2025-01-24T02:48:49.8887260Z [4270/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/promoted_prim_ops.cpp.o 2025-01-24T02:48:49.8931860Z [4271/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_pooling.cpp.o 2025-01-24T02:48:50.1808690Z [4272/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/aot_compiler.cpp.o 2025-01-24T02:48:50.2146970Z [4273/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_propagation.cpp.o 2025-01-24T02:48:50.2261110Z [4274/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_autodiff_subgraphs.cpp.o 2025-01-24T02:48:50.5046940Z [4275/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_functional_graphs.cpp.o 2025-01-24T02:48:50.5312110Z [4276/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.cpp.o 2025-01-24T02:48:50.5971240Z [4277/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dead_code_elimination.cpp.o 2025-01-24T02:48:50.7759300Z [4278/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/device_type_analysis.cpp.o 2025-01-24T02:48:50.9238710Z [4279/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/decompose_ops.cpp.o 2025-01-24T02:48:51.0824360Z [4280/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/eliminate_no_ops.cpp.o 2025-01-24T02:48:51.2420780Z [4281/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fixup_trace_scope_blocks.cpp.o 2025-01-24T02:48:51.8360990Z [4282/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/flatbuffer_loader.cpp.o 2025-01-24T02:48:54.2291410Z [4283/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_undefinedness.cpp.o 2025-01-24T02:48:54.2988730Z [4284/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_profiling.cpp.o 2025-01-24T02:48:54.3288690Z [4285/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/bailout_graph.cpp.o 2025-01-24T02:48:54.6651890Z [4286/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.cpp.o 2025-01-24T02:48:54.7832890Z [4287/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/erase_number_types.cpp.o 2025-01-24T02:48:54.9903760Z [4288/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_graph_optimizations.cpp.o 2025-01-24T02:48:55.0238090Z [4289/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dtype_analysis.cpp.o 2025-01-24T02:48:55.1618410Z [4290/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/batch_mm.cpp.o 2025-01-24T02:48:55.5960930Z [4291/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_linear_bn.cpp.o 2025-01-24T02:48:55.6448950Z [4292/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_relu.cpp.o 2025-01-24T02:48:55.6702940Z [4293/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_linear.cpp.o 2025-01-24T02:48:56.5933620Z [4294/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_rewrite_helper.cpp.o 2025-01-24T02:48:57.2783400Z [4295/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_conv_bn.cpp.o 2025-01-24T02:48:57.5718910Z [4296/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/hoist_conv_packed_params.cpp.o 2025-01-24T02:48:58.6651300Z [4297/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_concat_linear.cpp.o 2025-01-24T02:48:58.9057720Z [4298/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_transpose.cpp.o 2025-01-24T02:48:59.0115340Z [4299/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_folding.cpp.o 2025-01-24T02:48:59.0297290Z [4300/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_autodiff_subgraphs.cpp.o 2025-01-24T02:48:59.2209030Z [4301/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_fork_wait.cpp.o 2025-01-24T02:48:59.2489790Z [4302/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_folding.cpp.o 2025-01-24T02:48:59.3492800Z [4303/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_forked_closures.cpp.o 2025-01-24T02:48:59.3517900Z [4304/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inliner.cpp.o 2025-01-24T02:48:59.5110280Z [4305/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inplace_check.cpp.o 2025-01-24T02:48:59.6444850Z [4306/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lift_closures.cpp.o 2025-01-24T02:48:59.6458270Z [4307/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/integer_value_refinement.cpp.o 2025-01-24T02:48:59.7987050Z [4308/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/loop_unrolling.cpp.o 2025-01-24T02:48:59.9415000Z [4309/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_grad_of.cpp.o 2025-01-24T02:49:00.1271210Z [4310/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_tuples.cpp.o 2025-01-24T02:49:00.6516410Z [4311/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/init_qnnpack.cpp.o 2025-01-24T02:49:01.2236720Z [4312/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_ops_to_mkldnn.cpp.o 2025-01-24T02:49:02.9874480Z [4313/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fused_obs_fake_quant.cpp.o 2025-01-24T02:49:03.4542510Z [4314/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/guard_elimination.cpp.o 2025-01-24T02:49:04.2642270Z [4315/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/freeze_module.cpp.o 2025-01-24T02:49:04.3049410Z [4316/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_fuser.cpp.o 2025-01-24T02:49:04.3421980Z [4317/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qclamp.cpp.o 2025-01-24T02:49:05.1726290Z [4318/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/insert_guards.cpp.o 2025-01-24T02:49:05.6339360Z [4319/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/liveness.cpp.o 2025-01-24T02:49:07.1073790Z [4320/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_dynamic.cpp.o 2025-01-24T02:49:08.0970690Z [4321/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_prepack.cpp.o 2025-01-24T02:49:08.2630110Z [4322/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv.cpp.o 2025-01-24T02:49:08.3056080Z [4323/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qelu.cpp.o 2025-01-24T02:49:08.3290950Z [4324/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_unpack_impl.cpp.o 2025-01-24T02:49:08.5856770Z [4325/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qgelu.cpp.o 2025-01-24T02:49:08.6251230Z [4326/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fbgemm_utils.cpp.o 2025-01-24T02:49:09.8987730Z [4327/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qdropout.cpp.o 2025-01-24T02:49:10.0561890Z [4328/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag.cpp.o 2025-01-24T02:49:10.6433900Z [4329/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardsigmoid.cpp.o 2025-01-24T02:49:10.9058780Z [4330/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_prepack.cpp.o 2025-01-24T02:49:11.6479210Z [4331/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_unpack.cpp.o 2025-01-24T02:49:11.8119560Z [4332/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardswish.cpp.o 2025-01-24T02:49:12.5311360Z [4333/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear.cpp.o 2025-01-24T02:49:12.6772230Z [4334/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_dynamic.cpp.o 2025-01-24T02:49:13.3437790Z [4335/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/library.cpp.o 2025-01-24T02:49:13.4525940Z [4336/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_prepack.cpp.o 2025-01-24T02:49:14.4041580Z [4337/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmatmul.cpp.o 2025-01-24T02:49:14.6962570Z [4338/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qnormalization.cpp.o 2025-01-24T02:49:14.9093080Z [4339/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsigmoid.cpp.o 2025-01-24T02:49:14.9224230Z [4340/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/LinearAlgebra.cpp.o 2025-01-24T02:49:14.9471730Z [4341/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/MklAllocationHelper.cpp.o 2025-01-24T02:49:15.1109760Z [4342/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qrelu.cpp.o 2025-01-24T02:49:15.8144450Z [4343/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmul.cpp.o 2025-01-24T02:49:15.8942170Z [4344/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qtanh.cpp.o 2025-01-24T02:49:16.3546030Z [4345/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qthreshold.cpp.o 2025-01-24T02:49:17.3734020Z [4346/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Copy.cpp.o 2025-01-24T02:49:17.7640270Z [4347/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseCsrLinearAlgebra.cpp.o 2025-01-24T02:49:17.8479930Z [4348/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseBlasImpl.cpp.o 2025-01-24T02:49:18.0112500Z [4349/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/BinaryOps.cpp.o 2025-01-24T02:49:18.0557130Z [4350/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Gelu.cpp.o 2025-01-24T02:49:18.1972350Z [4351/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsoftmax.cpp.o 2025-01-24T02:49:18.2295320Z [4352/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/IDeepRegistration.cpp.o 2025-01-24T02:49:18.2894780Z [4353/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qconv_unpack.cpp.o 2025-01-24T02:49:18.4646390Z [4354/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNCommon.cpp.o 2025-01-24T02:49:18.6178050Z [4355/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MkldnnTensorMath.cpp.o 2025-01-24T02:49:19.9380450Z [4356/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Conv.cpp.o 2025-01-24T02:49:20.1383400Z [4357/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qlinear_unpack.cpp.o 2025-01-24T02:49:20.8495640Z [4358/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Linear.cpp.o 2025-01-24T02:49:20.9383310Z [4359/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Matmul.cpp.o 2025-01-24T02:49:20.9475760Z [4360/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNConversions.cpp.o 2025-01-24T02:49:20.9708250Z [4361/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RegisterMkldnnOpContextClass.cpp.o 2025-01-24T02:49:21.2730280Z [4362/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/SoftMax.cpp.o 2025-01-24T02:49:21.3664530Z [4363/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Normalization.cpp.o 2025-01-24T02:49:21.5290920Z [4364/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Relu.cpp.o 2025-01-24T02:49:21.6333130Z [4365/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorShape.cpp.o 2025-01-24T02:49:21.6371110Z [4366/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorFactories.cpp.o 2025-01-24T02:49:21.7535040Z [4367/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/UnaryOps.cpp.o 2025-01-24T02:49:21.9900090Z [4368/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/ConvPrepack.cpp.o 2025-01-24T02:49:22.2864140Z [4369/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Pooling.cpp.o 2025-01-24T02:49:22.4731560Z [4370/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/utils/Factory.cpp.o 2025-01-24T02:49:24.0783050Z [4371/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/OpContext.cpp.o 2025-01-24T02:49:24.1597000Z [4372/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Utils.cpp.o 2025-01-24T02:49:24.4230130Z [4373/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Activation.cpp.o 2025-01-24T02:49:24.4245250Z [4374/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/AveragePooling.cpp.o 2025-01-24T02:49:24.6299940Z [4375/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/sdp_utils_cpp.cpp.o 2025-01-24T02:49:24.7272410Z [4376/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/ChannelShuffle.cpp.o 2025-01-24T02:49:24.7396700Z [4377/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Convolution.cpp.o 2025-01-24T02:49:24.8974290Z [4378/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Init.cpp.o 2025-01-24T02:49:24.9912060Z [4379/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Linear.cpp.o 2025-01-24T02:49:25.0503090Z [4380/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/MaxPooling.cpp.o 2025-01-24T02:49:25.0779730Z [4381/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Shim.cpp.o 2025-01-24T02:49:25.2518190Z [4382/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/RegisterOpContextClass.cpp.o 2025-01-24T02:49:25.3374200Z [4383/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/transformer.cpp.o 2025-01-24T02:49:25.4173380Z [4384/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Prelu.cpp.o 2025-01-24T02:49:25.5876920Z [4385/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/attention.cpp.o 2025-01-24T02:49:25.8633920Z [4386/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RNN.cpp.o 2025-01-24T02:49:26.4624840Z [4387/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterBackendSelect.cpp.o 2025-01-24T02:49:27.0742050Z [4388/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SpectralOps.cpp.o 2025-01-24T02:49:27.5972160Z [4389/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/OpContext.cpp.o 2025-01-24T02:49:29.3799480Z [4390/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Functions.cpp.o 2025-01-24T02:49:30.7817530Z [4391/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CompositeViewCopyKernels.cpp.o 2025-01-24T02:49:41.9689550Z [4392/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_0.cpp.o 2025-01-24T02:49:42.9745110Z [4393/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_2.cpp.o 2025-01-24T02:49:45.4590210Z [4394/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_1.cpp.o 2025-01-24T02:49:49.6798990Z [4395/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_4.cpp.o 2025-01-24T02:49:50.8533670Z [4396/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_3.cpp.o 2025-01-24T02:49:51.2332270Z [4397/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_0.cpp.o 2025-01-24T02:49:51.7017290Z [4398/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_0.cpp.o 2025-01-24T02:49:52.0926460Z [4399/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_1.cpp.o 2025-01-24T02:49:52.4744130Z [4400/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_2.cpp.o 2025-01-24T02:49:52.6706010Z [4401/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_1.cpp.o 2025-01-24T02:49:52.8526030Z [4402/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_3.cpp.o 2025-01-24T02:49:53.6859570Z [4403/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutogradNestedTensor_0.cpp.o 2025-01-24T02:49:57.3222690Z [4404/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_2.cpp.o 2025-01-24T02:49:57.7853930Z [4405/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_3.cpp.o 2025-01-24T02:49:59.9028080Z [4406/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorCPU_0.cpp.o 2025-01-24T02:50:01.4213030Z [4407/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorMeta_0.cpp.o 2025-01-24T02:50:02.3434730Z [4408/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMkldnnCPU_0.cpp.o 2025-01-24T02:50:02.5211500Z [4409/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorXPU_0.cpp.o 2025-01-24T02:50:02.8862340Z [4410/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSchema.cpp.o 2025-01-24T02:50:06.1894030Z [4411/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedMeta_0.cpp.o 2025-01-24T02:50:07.3683490Z [4412/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutogradNonFunctional_0.cpp.o 2025-01-24T02:50:08.2027960Z [4413/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedCPU_0.cpp.o 2025-01-24T02:50:10.6215390Z [4414/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCPU_0.cpp.o 2025-01-24T02:50:12.6075930Z [4415/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrCPU_0.cpp.o 2025-01-24T02:50:12.9256930Z [4416/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseMeta_0.cpp.o 2025-01-24T02:50:13.1082900Z [4417/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseXPU_0.cpp.o 2025-01-24T02:50:13.1777460Z [4418/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPU_add.cpp.o 2025-01-24T02:50:13.2689910Z [4419/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenOpList.cpp.o 2025-01-24T02:50:13.3739980Z [4420/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrMeta_0.cpp.o 2025-01-24T02:50:13.4178910Z [4421/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TensorMethods.cpp.o 2025-01-24T02:50:13.5474620Z [4422/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_model_loader.cpp.o 2025-01-24T02:50:13.7444530Z [4423/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_wrapper.cpp.o 2025-01-24T02:50:13.9812520Z [4424/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPUKernel_add.cpp.DEFAULT.cpp.o 2025-01-24T02:50:14.2220940Z [4425/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/spherical_bessel_j0.cpp.DEFAULT.cpp.o 2025-01-24T02:50:14.4690090Z [4426/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k0.cpp.DEFAULT.cpp.o 2025-01-24T02:50:16.1003150Z [4427/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterZeroTensor_0.cpp.o 2025-01-24T02:50:16.4045760Z [4428/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k1.cpp.DEFAULT.cpp.o 2025-01-24T02:50:16.9525980Z [4429/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/int8mm_kernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:18.3759590Z [4430/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_bind.cpp.o 2025-01-24T02:50:19.6183340Z [4431/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_register.cpp.o 2025-01-24T02:50:20.0102230Z [4432/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutograd_0.cpp.o 2025-01-24T02:50:20.2368810Z [4433/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/airy_ai.cpp.DEFAULT.cpp.o 2025-01-24T02:50:22.1020300Z [4434/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/layer_norm_kernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:22.3932080Z [4435/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/WeightNormKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:22.6713160Z [4436/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:22.8642620Z [4437/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/int4mm_kernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:23.2436940Z [4438/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Unfold2d.cpp.DEFAULT.cpp.o 2025-01-24T02:50:25.9246880Z [4439/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:26.1837250Z [4440/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/batch_norm_kernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:26.5560180Z [4441/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/StackKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:26.7438630Z [4442/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMeta_0.cpp.o 2025-01-24T02:50:26.8083780Z [4443/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SumKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:27.0594020Z [4444/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutograd_0.cpp.o 2025-01-24T02:50:27.2487630Z [4445/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SparseFactories.cpp.DEFAULT.cpp.o 2025-01-24T02:50:27.3219680Z [4446/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/group_norm_kernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:27.3693790Z [4447/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SortingKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:27.5861030Z [4448/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:27.8264970Z [4449/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMPS_0.cpp.o 2025-01-24T02:50:28.0392360Z [4450/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RenormKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:28.6376340Z [4451/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/kernels/QuantizedOpKernels.cpp.DEFAULT.cpp.o 2025-01-24T02:50:29.4484950Z [4452/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:29.7360720Z [4453/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PowKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:30.9922530Z [4454/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:31.2952590Z [4455/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:31.5430890Z [4456/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:31.8812000Z [4457/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/NativeMultiheadAttnKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:31.9279850Z [4458/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SampledAddmmKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:32.0976510Z [4459/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PixelShuffleKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:32.2328120Z [4460/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PaddingKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:32.5123840Z [4461/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxUnpoolKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:32.6614460Z [4462/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPooling.cpp.DEFAULT.cpp.o 2025-01-24T02:50:33.1116710Z [4463/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:34.4629520Z [4464/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:34.7061590Z [4465/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LerpKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:35.2348120Z [4466/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MultinomialKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:35.8140670Z [4467/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:36.0492320Z [4468/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedSGDKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:36.7611430Z [4469/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:37.0613800Z [4470/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:37.1288390Z [4471/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedAdamKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:37.3978180Z [4472/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedAdagradKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:37.6096620Z [4473/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:37.7156220Z [4474/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FillKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:38.2864580Z [4475/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:39.1128840Z [4476/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:39.9580430Z [4477/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/HistogramKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:40.7140130Z [4478/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPoolKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:40.9179630Z [4479/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:44.4465570Z [4480/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/IndexKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:44.5970440Z [4481/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistributionKernels.cpp.DEFAULT.cpp.o 2025-01-24T02:50:45.5838850Z [4482/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pixelshuffle.cpp.o 2025-01-24T02:50:46.4940380Z [4483/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:50:48.2510310Z [4484/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pooling.cpp.o 2025-01-24T02:50:48.9184640Z [4485/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/upsampling.cpp.o 2025-01-24T02:50:50.2991190Z [4486/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/container/functional.cpp.o 2025-01-24T02:50:50.4013060Z [4487/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/rnn.cpp.o 2025-01-24T02:50:51.2369650Z [4488/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/activation.cpp.o 2025-01-24T02:50:51.8900170Z [4489/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/adaptive.cpp.o 2025-01-24T02:50:52.7667760Z [4490/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/batchnorm.cpp.o 2025-01-24T02:50:53.0491900Z [4491/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/transformer.cpp.o 2025-01-24T02:50:53.3908550Z [4492/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/embedding.cpp.o 2025-01-24T02:50:55.5897720Z [4493/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/instancenorm.cpp.o 2025-01-24T02:50:55.6897920Z [4494/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/normalization.cpp.o 2025-01-24T02:50:56.0612180Z [4495/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/conv.cpp.o 2025-01-24T02:50:57.0141950Z [4496/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/dropout.cpp.o 2025-01-24T02:50:57.2687060Z [4497/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/linear.cpp.o 2025-01-24T02:50:58.3434480Z [4498/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/padding.cpp.o 2025-01-24T02:50:58.9384260Z [4499/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/pooling.cpp.o 2025-01-24T02:51:00.1247650Z [4500/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/rnn.cpp.o 2025-01-24T02:51:00.2402600Z [4501/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/vision.cpp.o 2025-01-24T02:51:03.5698770Z [4502/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/transformer.cpp.o 2025-01-24T02:51:03.8082830Z [4503/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adagrad.cpp.o 2025-01-24T02:51:04.7351510Z [4504/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adamw.cpp.o 2025-01-24T02:51:04.7869340Z [4505/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adam.cpp.o 2025-01-24T02:51:04.9582440Z [4506/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/lr_scheduler.cpp.o 2025-01-24T02:51:05.0784530Z [4507/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/step_lr.cpp.o 2025-01-24T02:51:05.2362200Z [4508/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/reduce_on_plateau_scheduler.cpp.o 2025-01-24T02:51:06.0178350Z [4509/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/optimizer.cpp.o 2025-01-24T02:51:06.4876450Z [4510/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/lbfgs.cpp.o 2025-01-24T02:51:07.1558420Z [4511/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSAllocator.mm.o 2025-01-24T02:51:07.3593910Z [4512/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/xpu.cpp.o 2025-01-24T02:51:07.7680430Z [4513/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/rmsprop.cpp.o 2025-01-24T02:51:07.9068490Z [4514/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSDevice.mm.o 2025-01-24T02:51:08.2398990Z [4515/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSEvent.mm.o 2025-01-24T02:51:08.4575450Z [4516/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSFallback.mm.o 2025-01-24T02:51:08.4823930Z [4517/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSGeneratorImpl.mm.o 2025-01-24T02:51:09.0410940Z [4518/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSHooks.mm.o 2025-01-24T02:51:09.5234820Z [4519/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/serialize.cpp.o 2025-01-24T02:51:09.5446640Z [4520/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSStream.mm.o 2025-01-24T02:51:09.5561340Z [4521/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSProfiler.mm.o 2025-01-24T02:51:09.8709630Z [4522/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Equal.cpp.o 2025-01-24T02:51:10.3208890Z [4523/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/sgd.cpp.o 2025-01-24T02:51:11.6009800Z [4524/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSGuardImpl.mm.o 2025-01-24T02:51:11.9743490Z [4525/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/EmptyTensor.cpp.o 2025-01-24T02:51:12.0951150Z [4526/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/input-archive.cpp.o 2025-01-24T02:51:12.2012710Z [4527/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/output-archive.cpp.o 2025-01-24T02:51:15.2089230Z [4528/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/AdaptivePooling.mm.o 2025-01-24T02:51:15.2344340Z [4529/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/TensorFactory.cpp.o 2025-01-24T02:51:15.5511120Z [4530/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Attention.mm.o 2025-01-24T02:51:16.8891120Z [4531/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BinaryKernel.mm.o 2025-01-24T02:51:17.3482180Z [4532/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BinaryOps.mm.o 2025-01-24T02:51:17.4665200Z [4533/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/OperationUtils.mm.o 2025-01-24T02:51:17.6302320Z [4534/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Activation.mm.o 2025-01-24T02:51:19.1516260Z [4535/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Blas.mm.o 2025-01-24T02:51:20.6123010Z [4536/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BitwiseOps.mm.o 2025-01-24T02:51:20.6271190Z [4537/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Bucketization.mm.o 2025-01-24T02:51:20.8655220Z [4538/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ConstantOps.mm.o 2025-01-24T02:51:21.6854820Z [4539/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Convolution.mm.o 2025-01-24T02:51:21.8463330Z [4540/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamKernel.mm.o 2025-01-24T02:51:22.3947270Z [4541/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/CrossKernel.mm.o 2025-01-24T02:51:22.5017580Z [4542/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Copy.mm.o 2025-01-24T02:51:22.9048730Z [4543/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWKernel.mm.o 2025-01-24T02:51:23.8699430Z [4544/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Distributions.mm.o 2025-01-24T02:51:24.2011620Z [4545/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Eye.mm.o 2025-01-24T02:51:25.5508450Z [4546/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.mm.o 2025-01-24T02:51:25.5629660Z [4547/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FastFourierTransform.mm.o 2025-01-24T02:51:26.1909190Z [4548/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamKernelImpl.mm.o 2025-01-24T02:51:26.6631910Z [4549/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.mm.o 2025-01-24T02:51:27.6170330Z [4550/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWKernelImpl.mm.o 2025-01-24T02:51:28.7360180Z [4551/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedSgdKernel.mm.o 2025-01-24T02:51:29.2166700Z [4552/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/GridSampler.mm.o 2025-01-24T02:51:29.2317620Z [4553/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Gamma.mm.o 2025-01-24T02:51:30.8676270Z [4554/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Im2Col.mm.o 2025-01-24T02:51:31.3392400Z [4555/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/HistogramKernel.mm.o 2025-01-24T02:51:31.3567570Z [4556/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Inverse.mm.o 2025-01-24T02:51:32.1716330Z [4557/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Lerp.mm.o 2025-01-24T02:51:32.6910030Z [4558/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Indexing.mm.o 2025-01-24T02:51:34.4592920Z [4559/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Linear.mm.o 2025-01-24T02:51:35.3569310Z [4560/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Normalization.mm.o 2025-01-24T02:51:35.7740640Z [4561/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/LinearAlgebra.mm.o 2025-01-24T02:51:35.7843000Z /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/LinearAlgebra.mm:586:21: warning: instance method '-encodeToCommandEncoder:commandBuffer:sourceArrays:destinationArray:' not found (return type defaults to 'id') [-Wobjc-method-access] 2025-01-24T02:51:35.7855340Z [matmul encodeToCommandEncoder:computeEncoder 2025-01-24T02:51:35.7855720Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-01-24T02:51:35.7856870Z /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-01-24T02:51:35.7858120Z @interface MPSNDArrayMatrixMultiplication : MPSNDArrayMultiaryKernel 2025-01-24T02:51:35.7858490Z ^ 2025-01-24T02:51:35.7858670Z 1 warning generated. 2025-01-24T02:51:36.2212170Z [4562/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/LossOps.mm.o 2025-01-24T02:51:36.3831140Z [4563/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/PointwiseOps.mm.o 2025-01-24T02:51:36.4609350Z [4564/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Pad.mm.o 2025-01-24T02:51:37.0153050Z [4565/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/PixelShuffle.mm.o 2025-01-24T02:51:39.1510320Z [4566/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Pooling.mm.o 2025-01-24T02:51:40.0959610Z [4567/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FlashAttentionKernel.cpp.DEFAULT.cpp.o 2025-01-24T02:51:40.8057060Z [4568/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RenormKernel.mm.o 2025-01-24T02:51:41.0867300Z [4569/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RangeFactories.mm.o 2025-01-24T02:51:41.1101250Z [4570/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Quantized.mm.o 2025-01-24T02:51:41.2572130Z [4571/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RMSNorm.mm.o 2025-01-24T02:51:42.6462640Z [4572/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ReduceOps.mm.o 2025-01-24T02:51:43.3857690Z [4573/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RnnOps.mm.o 2025-01-24T02:51:43.4731010Z [4574/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Scalar.mm.o 2025-01-24T02:51:43.7010140Z [4575/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Repeat.mm.o 2025-01-24T02:51:45.4656210Z [4576/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ScatterGather.mm.o 2025-01-24T02:51:45.5431520Z [4577/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SoftMax.mm.o 2025-01-24T02:51:45.8246280Z [4578/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Sort.mm.o 2025-01-24T02:51:46.2198320Z [4579/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Shape.mm.o 2025-01-24T02:51:47.0037940Z [4580/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SummaryOps.mm.o 2025-01-24T02:51:47.6232070Z [4581/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SpecialOps.mm.o 2025-01-24T02:51:48.7703570Z [4582/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/TriangularOps.mm.o 2025-01-24T02:51:48.7936090Z [4583/4997] Building CXX object caffe2/CMakeFiles/torch.dir/__/empty.cpp.o 2025-01-24T02:51:49.1038270Z [4584/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/TensorCompare.mm.o 2025-01-24T02:51:49.4053670Z [4585/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/normalize_ops.cpp.o 2025-01-24T02:51:49.6790380Z [4586/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnaryOps.mm.o 2025-01-24T02:51:49.7019430Z [4587/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/pass_manager.cpp.o 2025-01-24T02:51:50.0086110Z [4588/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_alias_sensitive.cpp.o 2025-01-24T02:51:50.0324610Z [4589/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole.cpp.o 2025-01-24T02:51:50.3354990Z [4590/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_dict_idioms.cpp.o 2025-01-24T02:51:50.3460970Z [4591/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnfoldBackward.mm.o 2025-01-24T02:51:50.3561740Z [4592/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_list_idioms.cpp.o 2025-01-24T02:51:50.6501920Z [4593/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_non_tensor.cpp.o 2025-01-24T02:51:50.6755540Z [4594/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/prepack_folding.cpp.o 2025-01-24T02:51:50.6929160Z [4595/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Unique.mm.o 2025-01-24T02:51:50.7579580Z [4596/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/dedup_module_uses.cpp.o 2025-01-24T02:51:50.8459750Z [4597/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnaryKernel.mm.o 2025-01-24T02:51:50.9692420Z [4598/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/fusion_passes.cpp.o 2025-01-24T02:51:51.0165050Z [4599/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/helper.cpp.o 2025-01-24T02:51:51.0828670Z [4600/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_observers.cpp.o 2025-01-24T02:51:51.1543120Z [4601/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp.o 2025-01-24T02:51:51.1723400Z [4602/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/quantization_type.cpp.o 2025-01-24T02:51:51.3697420Z [4603/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_dropout.cpp.o 2025-01-24T02:51:51.4414140Z [4604/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/refine_tuple_types.cpp.o 2025-01-24T02:51:51.5036240Z [4605/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_exceptions.cpp.o 2025-01-24T02:51:51.6789230Z [4606/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_mutation.cpp.o 2025-01-24T02:51:51.6942500Z [4607/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_expands.cpp.o 2025-01-24T02:51:51.7749620Z [4608/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UpSample.mm.o 2025-01-24T02:51:51.8818190Z [4609/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_redundant_profiles.cpp.o 2025-01-24T02:51:51.9242060Z [4610/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/replacement_of_old_operators.cpp.o 2025-01-24T02:51:51.9847230Z [4611/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/requires_grad_analysis.cpp.o 2025-01-24T02:51:52.0882070Z [4612/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/restore_mutation.cpp.o 2025-01-24T02:51:52.2857590Z [4613/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/subgraph_rewrite.cpp.o 2025-01-24T02:51:52.4362160Z [4614/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_analysis.cpp.o 2025-01-24T02:51:52.5122830Z [4615/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_cache.cpp.o 2025-01-24T02:51:52.7461280Z [4616/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/View.mm.o 2025-01-24T02:51:52.8523540Z [4617/4997] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/WeightNorm.mm.o 2025-01-24T02:51:53.0160340Z [4618/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.cpp.o 2025-01-24T02:51:53.1434120Z [4619/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/op_registry.cpp.o 2025-01-24T02:51:53.1505650Z [4620/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/memory_dag.cpp.o 2025-01-24T02:51:53.2739010Z [4621/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/optimization_utils.cpp.o 2025-01-24T02:51:53.4248560Z [4622/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/subgraph_utils.cpp.o 2025-01-24T02:51:53.5724670Z [4623/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/value_refinement_utils.cpp.o 2025-01-24T02:51:53.7103250Z [4624/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/variadic_ops.cpp.o 2025-01-24T02:51:54.2218990Z [4625/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/update_graph_executor_opt.cpp.o 2025-01-24T02:51:54.2667260Z [4626/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/utf8_decoding_ignore.cpp.o 2025-01-24T02:51:54.6878550Z [4627/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/argument_spec.cpp.o 2025-01-24T02:51:57.7972960Z [4628/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/register_packed_params.cpp.o 2025-01-24T02:51:58.1504500Z [4629/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/autodiff.cpp.o 2025-01-24T02:51:58.4504270Z [4630/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry.cpp.o 2025-01-24T02:51:58.8057770Z [4631/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry_util.cpp.o 2025-01-24T02:51:58.8672860Z [4632/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/specialize_autogradzero.cpp.o 2025-01-24T02:51:59.0755700Z [4633/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/instruction.cpp.o 2025-01-24T02:51:59.7225590Z [4634/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/shape_analysis.cpp.o 2025-01-24T02:51:59.9526210Z [4635/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/preprocess_graph.cpp.o 2025-01-24T02:52:00.1806660Z [4636/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_exception.cpp.o 2025-01-24T02:52:01.2104370Z [4637/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/finalize.cpp.o 2025-01-24T02:52:01.2728020Z [4638/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/vulkan_rewrite.cpp.o 2025-01-24T02:52:01.4348010Z [4639/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/xnnpack_rewrite.cpp.o 2025-01-24T02:52:01.4447640Z [4640/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/logging.cpp.o 2025-01-24T02:52:01.5563890Z [4641/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/print_handler.cpp.o 2025-01-24T02:52:02.0492850Z [4642/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.cpp.o 2025-01-24T02:52:02.2396970Z [4643/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/tensorexpr_fuser.cpp.o 2025-01-24T02:52:02.5550670Z [4644/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/script_profile.cpp.o 2025-01-24T02:52:02.8492160Z [4645/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/serialized_shape_function_registry.cpp.o 2025-01-24T02:52:05.7062000Z [4646/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/frame.cpp.o 2025-01-24T02:52:05.9209370Z [4647/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/slice_indices_adjust.cpp.o 2025-01-24T02:52:06.7106450Z [4648/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/fusion.cpp.o 2025-01-24T02:52:07.4163750Z [4649/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/operator.cpp.o 2025-01-24T02:52:07.7062060Z [4650/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/impl.cpp.o 2025-01-24T02:52:08.1681320Z [4651/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_record.cpp.o 2025-01-24T02:52:08.4028760Z [4652/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_trace.cpp.o 2025-01-24T02:52:08.4445690Z [4653/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/memory_planner.cpp.o 2025-01-24T02:52:09.1794890Z [4654/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/graph_executor.cpp.o 2025-01-24T02:52:09.2860540Z [4655/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/passes.cpp.o 2025-01-24T02:52:09.9424710Z [4656/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_script.cpp.o 2025-01-24T02:52:10.0360850Z [4657/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_graph_executor_impl.cpp.o 2025-01-24T02:52:10.2767260Z [4658/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry.cpp.o 2025-01-24T02:52:10.5704920Z [4659/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry_util.cpp.o 2025-01-24T02:52:10.7171310Z [4660/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_ops_utils.cpp.o 2025-01-24T02:52:11.0082270Z [4661/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/callstack_debug_info_serialization.cpp.o 2025-01-24T02:52:11.2955090Z [4662/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_export_helpers.cpp.o 2025-01-24T02:52:11.5241670Z [4663/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter.cpp.o 2025-01-24T02:52:11.8772000Z [4664/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_read.cpp.o 2025-01-24T02:52:11.8814140Z [4665/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_source.cpp.o 2025-01-24T02:52:12.2484600Z [4666/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickle.cpp.o 2025-01-24T02:52:12.5249920Z [4667/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/python_print.cpp.o 2025-01-24T02:52:13.3507370Z [4668/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/source_range_serialization.cpp.o 2025-01-24T02:52:13.5657960Z [4669/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/simple_graph_executor_impl.cpp.o 2025-01-24T02:52:14.1873340Z [4670/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/type_name_uniquer.cpp.o 2025-01-24T02:52:15.8610730Z [4671/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/vararg_functions.cpp.o 2025-01-24T02:52:18.4696430Z [4672/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/te_wrapper.cpp.o 2025-01-24T02:52:20.4891400Z [4673/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickler.cpp.o 2025-01-24T02:52:21.4516170Z [4674/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import.cpp.o 2025-01-24T02:52:22.4899310Z [4675/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/block_codegen.cpp.o 2025-01-24T02:52:23.4604040Z [4676/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/native_ops.cpp.o 2025-01-24T02:52:23.8616250Z [4677/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/unpickler.cpp.o 2025-01-24T02:52:25.7602490Z [4678/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/ops.cpp.o 2025-01-24T02:52:25.9336870Z [4679/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_inference.cpp.o 2025-01-24T02:52:26.8982840Z [4680/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_registry.cpp.o 2025-01-24T02:52:27.5251900Z [4681/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_overlap.cpp.o 2025-01-24T02:52:28.8529370Z [4682/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/cpp_codegen.cpp.o 2025-01-24T02:52:29.1295820Z [4683/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/codegen.cpp.o 2025-01-24T02:52:29.4823070Z [4684/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/intrinsic_symbols.cpp.o 2025-01-24T02:52:29.7493190Z [4685/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir.cpp.o 2025-01-24T02:52:31.3246930Z [4686/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_core.cpp.o 2025-01-24T02:52:31.4523090Z [4687/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/expr.cpp.o 2025-01-24T02:52:31.7566940Z [4688/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_codegen.cpp.o 2025-01-24T02:52:33.5486810Z [4689/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions.cpp.o 2025-01-24T02:52:36.3001040Z [4690/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/eval.cpp.o 2025-01-24T02:52:36.4654240Z [4691/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/hash_provider.cpp.o 2025-01-24T02:52:36.6481620Z [4692/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/generated_ops.cpp.o 2025-01-24T02:52:37.0490850Z [4693/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_codegen.cpp.o 2025-01-24T02:52:37.1063100Z [4694/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_jit.cpp.o 2025-01-24T02:52:37.1837320Z [4695/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/graph_opt.cpp.o 2025-01-24T02:52:38.6727060Z [4696/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_printer.cpp.o 2025-01-24T02:52:38.8006970Z [4697/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_cloner.cpp.o 2025-01-24T02:52:39.0524170Z [4698/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_mutator.cpp.o 2025-01-24T02:52:41.8877500Z [4699/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_verifier.cpp.o 2025-01-24T02:52:42.5477010Z [4700/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_visitor.cpp.o 2025-01-24T02:52:45.3676510Z [4701/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest_randomization.cpp.o 2025-01-24T02:52:46.0797800Z [4702/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_simplifier.cpp.o 2025-01-24T02:52:48.7838860Z [4703/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp.o 2025-01-24T02:52:49.1559270Z [4704/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/conv2d.cpp.o 2025-01-24T02:52:49.6133050Z [4705/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/matmul.cpp.o 2025-01-24T02:52:49.6390340Z [4706/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/kernel.cpp.o 2025-01-24T02:52:50.4620080Z [4707/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/reduction.cpp.o 2025-01-24T02:52:50.8595190Z [4708/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest.cpp.o 2025-01-24T02:52:51.1206410Z [4709/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/tensor.cpp.o 2025-01-24T02:52:53.7160200Z [4710/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/norm.cpp.o 2025-01-24T02:52:54.0026590Z [4711/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/types.cpp.o 2025-01-24T02:52:54.3198920Z [4712/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/unique_name_manager.cpp.o 2025-01-24T02:52:54.6683120Z [4713/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/file_check.cpp.o 2025-01-24T02:52:55.0175130Z [4714/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/hooks_for_testing.cpp.o 2025-01-24T02:52:55.3455060Z [4715/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_device.cpp.o 2025-01-24T02:52:55.5202900Z [4716/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/misc.cpp.o 2025-01-24T02:52:55.6493950Z [4717/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_interface.cpp.o 2025-01-24T02:52:55.8186170Z [4718/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/lowering_context.cpp.o 2025-01-24T02:52:55.8199430Z [4719/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/config.cpp.o 2025-01-24T02:52:56.0820990Z [4720/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/hash.cpp.o 2025-01-24T02:52:56.1994930Z [4721/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/debug_util.cpp.o 2025-01-24T02:52:56.4782130Z [4722/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/pointwise.cpp.o 2025-01-24T02:52:56.4998660Z [4723/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/helpers.cpp.o 2025-01-24T02:52:56.5663650Z [4724/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir.cpp.o 2025-01-24T02:52:56.8140990Z [4725/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_dump_util.cpp.o 2025-01-24T02:52:56.8176000Z [4726/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_metadata.cpp.o 2025-01-24T02:52:56.8756480Z [4727/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_util.cpp.o 2025-01-24T02:52:57.0526980Z [4728/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/multi_wait.cpp.o 2025-01-24T02:52:57.1083830Z [4729/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/quantization.cpp.o 2025-01-24T02:52:57.1382920Z [4730/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/metrics.cpp.o 2025-01-24T02:52:57.2812380Z [4731/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/permutation_util.cpp.o 2025-01-24T02:52:57.3891890Z [4732/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/utils.cpp.o 2025-01-24T02:52:57.4006650Z [4733/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/arithmetic_ir_ops.cpp.o 2025-01-24T02:52:57.5252630Z [4734/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/reduction.cpp.o 2025-01-24T02:52:57.6009520Z [4735/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape.cpp.o 2025-01-24T02:52:57.6966620Z [4736/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor.cpp.o 2025-01-24T02:52:57.8016300Z [4737/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_util.cpp.o 2025-01-24T02:52:57.8731180Z [4738/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/thread_pool.cpp.o 2025-01-24T02:52:57.8967540Z [4739/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_impl.cpp.o 2025-01-24T02:52:58.0640460Z [4740/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/counters.cpp.o 2025-01-24T02:52:58.0940790Z [4741/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/events.cpp.o 2025-01-24T02:52:58.1508640Z [4742/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/trie.cpp.o 2025-01-24T02:52:58.4042540Z [4743/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/softmax.cpp.o 2025-01-24T02:52:58.4177690Z [4744/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/combined_traceback.cpp.o 2025-01-24T02:52:58.8680920Z [4745/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/observer.cpp.o 2025-01-24T02:52:58.9999930Z [4746/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/python_tracer.cpp.o 2025-01-24T02:52:59.9654180Z [4747/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/registerizer.cpp.o 2025-01-24T02:53:00.2824010Z [4748/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/vulkan.cpp.o 2025-01-24T02:53:00.4560580Z [4749/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/perf.cpp.o 2025-01-24T02:53:00.8068070Z [4750/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/execution_trace_observer.cpp.o 2025-01-24T02:53:01.0941240Z [4751/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/nvtx_observer.cpp.o 2025-01-24T02:53:01.4175370Z [4752/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/itt_observer.cpp.o 2025-01-24T02:53:01.5656640Z [4753/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_client_interface.cpp.o 2025-01-24T02:53:01.6961880Z [4754/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/privateuse1_observer.cpp.o 2025-01-24T02:53:01.7641290Z [4755/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/stubs/base.cpp.o 2025-01-24T02:53:01.8076370Z [4756/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/unwind/unwind_fb.cpp.o 2025-01-24T02:53:01.8638850Z [4757/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/data_flow.cpp.o 2025-01-24T02:53:01.9132690Z [4758/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/unwind/unwind.cpp.o 2025-01-24T02:53:02.0529590Z [4759/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/cpp_stacktraces.cpp.o 2025-01-24T02:53:02.2592620Z [4760/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/schema_info.cpp.o 2025-01-24T02:53:02.4358150Z [4761/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/variadic.cpp.o 2025-01-24T02:53:02.7940190Z [4762/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/lazy_graph_executor.cpp.o 2025-01-24T02:53:03.0999540Z [4763/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_graph.cpp.o 2025-01-24T02:53:03.4055240Z [4764/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_inplace_ops.cpp.o 2025-01-24T02:53:03.5213830Z [4765/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_shim.cpp.o 2025-01-24T02:53:03.6415740Z [4766/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/lowerings.cpp.o 2025-01-24T02:53:03.8945300Z [4767/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/check_alias_annotation.cpp.o 2025-01-24T02:53:03.9455230Z [4768/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_c10_ops.cpp.o 2025-01-24T02:53:04.7867940Z [4769/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/debug_info.cpp.o 2025-01-24T02:53:05.7371450Z [4770/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape_inference.cpp.o 2025-01-24T02:53:06.0101200Z [4771/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/dynamic_ir.cpp.o 2025-01-24T02:53:06.7393900Z [4772/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/collection.cpp.o 2025-01-24T02:53:06.9128730Z [4773/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/config.cpp.o 2025-01-24T02:53:07.2425220Z [4774/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/device_data.cpp.o 2025-01-24T02:53:07.5428920Z [4775/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/tensor_flatten.cpp.o 2025-01-24T02:53:07.5530770Z [4776/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/generic.cpp.o 2025-01-24T02:53:07.8663180Z [4777/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/tensor_aten_ops.cpp.o 2025-01-24T02:53:08.2622890Z [4778/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/util.cpp.o 2025-01-24T02:53:08.6000370Z [4779/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_lowering_context.cpp.o 2025-01-24T02:53:09.3278790Z [4780/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/cuda/interface.cpp.o 2025-01-24T02:53:09.4647190Z [4781/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/autocast.cpp.o 2025-01-24T02:53:09.7692110Z [4782/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node.cpp.o 2025-01-24T02:53:10.4990200Z [4783/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/export_data.cpp.o 2025-01-24T02:53:12.0730830Z [4784/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_autograd_functions.cpp.o 2025-01-24T02:53:14.0885810Z [4785/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_eager_fallback.cpp.o 2025-01-24T02:53:14.2471830Z [4786/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_special_ops.cpp.o 2025-01-24T02:53:14.8313900Z [4787/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_backend_impl.cpp.o 2025-01-24T02:53:15.3710120Z [4788/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops_fulljit.cpp.o 2025-01-24T02:53:16.6084530Z [4789/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node_lowering.cpp.o 2025-01-24T02:53:16.8767690Z [4790/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/out_types.cpp.o 2025-01-24T02:53:18.8604680Z [4791/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_native_functions.cpp.o 2025-01-24T02:53:19.0248900Z [4792/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import_data.cpp.o 2025-01-24T02:53:19.2018110Z [4793/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/TraceTypeManual.cpp.o 2025-01-24T02:53:19.5655250Z [4794/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/jit.cpp.o 2025-01-24T02:53:19.5883630Z [4795/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/optim/sgd.cpp.o 2025-01-24T02:53:19.6011220Z [4796/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/random.cpp.o 2025-01-24T02:53:19.7713680Z [4797/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/sequential.cpp.o 2025-01-24T02:53:19.8769190Z [4798/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport.cpp.o 2025-01-24T02:53:19.9621220Z [4799/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport_manager.cpp.o 2025-01-24T02:53:19.9798140Z [4800/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/onnx.cpp.o 2025-01-24T02:53:20.1516430Z [4801/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops.cpp.o 2025-01-24T02:53:20.1892940Z [4802/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_bytecode.cpp.o 2025-01-24T02:53:20.3759140Z [4803/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/byte_order.cpp.o 2025-01-24T02:53:20.4532120Z [4804/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module_save.cpp.o 2025-01-24T02:53:22.0031340Z [4805/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/cuda.cpp.o 2025-01-24T02:53:23.8670660Z [4806/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/flatbuffer_serializer.cpp.o 2025-01-24T02:53:25.9140070Z [4807/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/datasets/mnist.cpp.o 2025-01-24T02:53:25.9958730Z [4808/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.cpp.o 2025-01-24T02:53:26.6741060Z [4809/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/enum.cpp.o 2025-01-24T02:53:26.7574480Z [4810/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/imethod.cpp.o 2025-01-24T02:53:26.9027790Z [4811/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/VariableTypeManual.cpp.o 2025-01-24T02:53:27.6375610Z [4812/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/distributed.cpp.o 2025-01-24T02:53:28.8067170Z [4813/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/FunctionsManual.cpp.o 2025-01-24T02:53:29.0265290Z [4814/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_module.cpp.o 2025-01-24T02:53:29.5464390Z [4815/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/random.cpp.o 2025-01-24T02:53:29.6381500Z [4816/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/mps.cpp.o 2025-01-24T02:53:30.6057180Z [4817/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export.cpp.o 2025-01-24T02:53:30.6176760Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/jit/serialization/export.cpp:23: 2025-01-24T02:53:30.6294400Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/checker.h:13: 2025-01-24T02:53:30.6315370Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/function.h:17: 2025-01-24T02:53:30.6438510Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/schema.h:27: 2025-01-24T02:53:30.6561430Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/shape_inference.h:32:106: warning: extra ';' after member function definition [-Wextra-semi] 2025-01-24T02:53:30.6680750Z : check_type(check_type_val), error_mode(strict_mode_val), enable_data_propagation(data_prop_val){}; 2025-01-24T02:53:30.6805660Z ^ 2025-01-24T02:53:30.6828940Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/shape_inference.h:141:56: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-01-24T02:53:30.6837600Z inline void dummyInferenceFunction(InferenceContext&){}; 2025-01-24T02:53:30.6939540Z ^ 2025-01-24T02:53:30.6979380Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/shape_inference.h:144:68: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-01-24T02:53:30.6986080Z inline void dummyDataPropagationFunction(DataPropagationContext&){}; 2025-01-24T02:53:30.6995310Z ^ 2025-01-24T02:53:30.6997480Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/jit/serialization/export.cpp:23: 2025-01-24T02:53:30.7089510Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/checker.h:13: 2025-01-24T02:53:30.7093140Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/function.h:17: 2025-01-24T02:53:30.7111770Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/schema.h:1562:2: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-01-24T02:53:30.7113960Z }; 2025-01-24T02:53:30.7114370Z ^ 2025-01-24T02:53:30.7114820Z 4 warnings generated. 2025-01-24T02:53:32.0991350Z [4818/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/sequential.cpp.o 2025-01-24T02:53:32.2121350Z [4819/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/stream.cpp.o 2025-01-24T02:53:33.3756360Z [4820/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize.cpp.o 2025-01-24T02:53:33.7682750Z [4821/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/init.cpp.o 2025-01-24T02:53:35.5728710Z [4822/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/module.cpp.o 2025-01-24T02:53:36.1230950Z [4823/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/_functions.cpp.o 2025-01-24T02:53:37.7973650Z [4824/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/adaptive.cpp.o 2025-01-24T02:53:38.4918740Z [4825/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/batchnorm.cpp.o 2025-01-24T02:53:38.6957380Z [4826/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/activation.cpp.o 2025-01-24T02:53:40.0975540Z [4827/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/instancenorm.cpp.o 2025-01-24T02:53:41.5126330Z [4828/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/normalization.cpp.o 2025-01-24T02:53:41.6571210Z [4829/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/dropout.cpp.o 2025-01-24T02:53:41.9163080Z [4830/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/distance.cpp.o 2025-01-24T02:53:42.2042960Z [4831/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/list_model_parameters.cpp.o 2025-01-24T02:53:42.4994960Z [4832/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_substitution.cpp.o 2025-01-24T02:53:42.6601840Z [4833/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/conv.cpp.o 2025-01-24T02:53:43.1418650Z [4834/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/prepare_division_for_onnx.cpp.o 2025-01-24T02:53:45.1159020Z [4835/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/embedding.cpp.o 2025-01-24T02:53:45.2717320Z [4836/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/fold.cpp.o 2025-01-24T02:53:45.5622390Z [4837/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/scalar_type_analysis.cpp.o 2025-01-24T02:53:46.0294530Z [4838/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/linear.cpp.o 2025-01-24T02:53:46.3630740Z [4839/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.cpp.o 2025-01-24T02:53:46.9329820Z [4840/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_extraction.cpp.o 2025-01-24T02:53:47.0347340Z [4841/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/helper.cpp.o 2025-01-24T02:53:47.1013500Z [4842/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/onnx_log.cpp.o 2025-01-24T02:53:47.3989680Z [4843/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/naming.cpp.o 2025-01-24T02:53:47.4098470Z [4844/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/peephole.cpp.o 2025-01-24T02:53:47.6954300Z [4845/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.cpp.o 2025-01-24T02:53:47.7893870Z [4846/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/loss.cpp.o 2025-01-24T02:53:48.0262460Z [4847/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/common.cpp.o 2025-01-24T02:53:48.0789790Z [4848/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.cpp.o 2025-01-24T02:53:48.2175560Z [4849/4997] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/padding.cpp.o 2025-01-24T02:53:49.2425790Z [4850/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/preprocess_for_onnx.cpp.o 2025-01-24T02:53:49.3503300Z [4851/4997] Linking CXX shared library lib/libtorch_cpu.dylib 2025-01-24T02:53:49.3606760Z ld: warning: ignoring duplicate libraries: 'lib/libcpuinfo.a', 'lib/libnnpack.a', 'lib/libpthreadpool.a' 2025-01-24T02:53:49.5703780Z [4852/4997] Linking CXX shared library lib/libtorch.dylib 2025-01-24T02:53:51.1578120Z [4853/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/fixup_onnx_controlflow.cpp.o 2025-01-24T02:53:53.5262010Z [4854/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/unpack_quantized_weights.cpp.o 2025-01-24T02:53:54.6363620Z [4855/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.cpp.o 2025-01-24T02:53:56.8487240Z [4856/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_dict.cpp.o 2025-01-24T02:53:57.4267620Z [4857/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/pybind_utils.cpp.o 2025-01-24T02:53:57.5621980Z [4858/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_custom_class.cpp.o 2025-01-24T02:53:57.9999220Z [4859/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_arg_flatten.cpp.o 2025-01-24T02:53:58.0488870Z [4860/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/tree_views.cpp.o 2025-01-24T02:53:58.4345220Z [4861/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tree_views.cpp.o 2025-01-24T02:54:01.3821510Z [4862/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/shape_type_inference.cpp.o 2025-01-24T02:54:01.3828670Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/jit/passes/onnx/shape_type_inference.cpp:6: 2025-01-24T02:54:01.3832580Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/jit/passes/onnx/constant_map.h:5: 2025-01-24T02:54:01.3835210Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/shape_inference/implementation.h:15: 2025-01-24T02:54:01.3838570Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/function.h:17: 2025-01-24T02:54:01.3841180Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/schema.h:27: 2025-01-24T02:54:01.3845760Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/shape_inference.h:32:106: warning: extra ';' after member function definition [-Wextra-semi] 2025-01-24T02:54:01.3848780Z : check_type(check_type_val), error_mode(strict_mode_val), enable_data_propagation(data_prop_val){}; 2025-01-24T02:54:01.3850620Z ^ 2025-01-24T02:54:01.3853750Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/shape_inference.h:141:56: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-01-24T02:54:01.3857200Z inline void dummyInferenceFunction(InferenceContext&){}; 2025-01-24T02:54:01.3858700Z ^ 2025-01-24T02:54:01.3862330Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/shape_inference.h:144:68: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-01-24T02:54:01.3865510Z inline void dummyDataPropagationFunction(DataPropagationContext&){}; 2025-01-24T02:54:01.3866960Z ^ 2025-01-24T02:54:01.3869120Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/jit/passes/onnx/shape_type_inference.cpp:6: 2025-01-24T02:54:01.3879640Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/jit/passes/onnx/constant_map.h:5: 2025-01-24T02:54:01.3925590Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/shape_inference/implementation.h:15: 2025-01-24T02:54:01.4040080Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/function.h:17: 2025-01-24T02:54:01.4179630Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/schema.h:1562:2: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-01-24T02:54:01.4293450Z }; 2025-01-24T02:54:01.4348590Z ^ 2025-01-24T02:54:01.4349040Z 4 warnings generated. 2025-01-24T02:54:01.7802120Z [4863/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_interpreter.cpp.o 2025-01-24T02:54:02.7231760Z [4864/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/multiprocessing/init.cpp.o 2025-01-24T02:54:03.0905990Z [4865/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_list.cpp.o 2025-01-24T02:54:07.0729070Z [4866/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/concrete_module_type.cpp.o 2025-01-24T02:54:08.4581010Z [4867/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/profiler/python/combined_traceback.cpp.o 2025-01-24T02:54:09.0478030Z [4868/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tracer.cpp.o 2025-01-24T02:54:09.0717320Z [4869/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_sugared_value.cpp.o 2025-01-24T02:54:10.0624390Z [4870/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/runtime/static/init.cpp.o 2025-01-24T02:54:10.6778160Z [4871/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/monitor/python_init.cpp.o 2025-01-24T02:54:14.9085350Z [4872/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_ir.cpp.o 2025-01-24T02:54:17.7480190Z [4873/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/serialization.cpp.o 2025-01-24T02:54:17.7953880Z [4874/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/tensor/python_tensor.cpp.o 2025-01-24T02:54:17.8453490Z [4875/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/init.cpp.o 2025-01-24T02:54:18.1590870Z [4876/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/device_lazy_init.cpp.o 2025-01-24T02:54:18.2628370Z [4877/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/invalid_arguments.cpp.o 2025-01-24T02:54:18.4050580Z [4878/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/object_ptr.cpp.o 2025-01-24T02:54:19.2889250Z [4879/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_symnode.cpp.o 2025-01-24T02:54:20.6182200Z [4880/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/profiler/python/init.cpp.o 2025-01-24T02:54:22.2146600Z [4881/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/onnx/init.cpp.o 2025-01-24T02:54:22.3524700Z [4882/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/pyobject_preservation.cpp.o 2025-01-24T02:54:22.6698310Z [4883/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/throughput_benchmark.cpp.o 2025-01-24T02:54:22.9782570Z [4884/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/structseq.cpp.o 2025-01-24T02:54:23.8690520Z [4885/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_dtypes.cpp.o 2025-01-24T02:54:24.1894280Z [4886/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_layouts.cpp.o 2025-01-24T02:54:24.5569590Z [4887/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/tensorexpr/tensorexpr_init.cpp.o 2025-01-24T02:54:24.8548280Z [4888/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_memoryformats.cpp.o 2025-01-24T02:54:25.1860600Z [4889/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_qschemes.cpp.o 2025-01-24T02:54:27.3873660Z [4890/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils.cpp.o 2025-01-24T02:54:27.4568530Z [4891/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/pybind.cpp.o 2025-01-24T02:54:27.7369490Z [4892/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_arg_parser.cpp.o 2025-01-24T02:54:27.9474130Z [4893/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/script_init.cpp.o 2025-01-24T02:54:28.2077780Z [4894/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/disable_torch_function.cpp.o 2025-01-24T02:54:28.4380210Z [4895/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/verbose.cpp.o 2025-01-24T02:54:28.5284110Z [4896/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/cpu/Module.cpp.o 2025-01-24T02:54:28.8458000Z [4897/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/instruction_counter/Module.cpp.o 2025-01-24T02:54:29.4612290Z [4898/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/nested.cpp.o 2025-01-24T02:54:29.6682280Z [4899/4997] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/shm.dir/core.cpp.o 2025-01-24T02:54:29.7998330Z [4900/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/python_util.cpp.o 2025-01-24T02:54:29.8897660Z [4901/4997] Linking CXX shared library lib/libshm.dylib 2025-01-24T02:54:29.9592320Z [4902/4997] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/torch_shm_manager.dir/manager.cpp.o 2025-01-24T02:54:30.1274670Z [4903/4997] Linking CXX executable bin/torch_shm_manager 2025-01-24T02:54:30.5823890Z [4904/4997] Building C object functorch/CMakeFiles/functorch.dir/csrc/dim/dim_opcode.c.o 2025-01-24T02:54:31.0924820Z [4905/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_apply.cpp.o 2025-01-24T02:54:32.0915040Z [4906/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_types.cpp.o 2025-01-24T02:54:33.5129480Z [4907/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_list.cpp.o 2025-01-24T02:54:35.1304040Z [4908/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_numpy.cpp.o 2025-01-24T02:54:35.7527740Z [4909/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_dispatch.cpp.o 2025-01-24T02:54:35.7787890Z [4910/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_new.cpp.o 2025-01-24T02:54:37.5911190Z [4911/4997] Building CXX object functorch/CMakeFiles/functorch.dir/csrc/dim/dim.cpp.o 2025-01-24T02:54:41.1069820Z [4912/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/init.cpp.o 2025-01-24T02:54:41.2822070Z [4913/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_0.cpp.o 2025-01-24T02:54:41.8073580Z [4914/4997] Building CXX object functorch/CMakeFiles/functorch.dir/csrc/init_dim_only.cpp.o 2025-01-24T02:54:43.2873700Z [4915/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_1.cpp.o 2025-01-24T02:54:45.0231500Z [4916/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_2.cpp.o 2025-01-24T02:54:45.2798960Z [4917/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_3.cpp.o 2025-01-24T02:54:46.6960640Z [4918/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_4.cpp.o 2025-01-24T02:54:51.2388240Z [4919/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nn_functions.cpp.o 2025-01-24T02:54:51.5742740Z [4920/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_fft_functions.cpp.o 2025-01-24T02:54:51.7494740Z [4921/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_variable_methods.cpp.o 2025-01-24T02:54:52.0619730Z [4922/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_return_types.cpp.o 2025-01-24T02:54:52.1759770Z [4923/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nested_functions.cpp.o 2025-01-24T02:54:52.2992940Z [4924/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_enum_tag.cpp.o 2025-01-24T02:54:52.4136890Z [4925/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DataLoader.cpp.o 2025-01-24T02:54:52.5803560Z [4926/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DeviceAccelerator.cpp.o 2025-01-24T02:54:52.6165300Z [4927/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_linalg_functions.cpp.o 2025-01-24T02:54:52.8750770Z [4928/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Dtype.cpp.o 2025-01-24T02:54:53.5171850Z [4929/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Layout.cpp.o 2025-01-24T02:54:55.2673370Z [4930/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_0.cpp.o 2025-01-24T02:54:55.4991590Z [4931/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_1.cpp.o 2025-01-24T02:54:55.8608830Z [4932/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/MemoryFormat.cpp.o 2025-01-24T02:54:56.2051890Z [4933/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/QScheme.cpp.o 2025-01-24T02:54:56.4103230Z [4934/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_sparse_functions.cpp.o 2025-01-24T02:54:56.7190080Z [4935/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_2.cpp.o 2025-01-24T02:54:57.0808490Z [4936/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/python_dimname.cpp.o 2025-01-24T02:54:57.8864820Z [4937/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Device.cpp.o 2025-01-24T02:54:59.5685790Z [4938/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_special_functions.cpp.o 2025-01-24T02:54:59.7877500Z [4939/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DynamicTypes.cpp.o 2025-01-24T02:55:02.2161920Z [4940/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Exceptions.cpp.o 2025-01-24T02:55:02.4831840Z [4941/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Size.cpp.o 2025-01-24T02:55:02.8389690Z [4942/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Generator.cpp.o 2025-01-24T02:55:05.6449730Z [4943/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/PyInterpreter.cpp.o 2025-01-24T02:55:07.3719930Z [4944/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Storage.cpp.o 2025-01-24T02:55:08.9451450Z [4945/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageSharing.cpp.o 2025-01-24T02:55:09.0717270Z [4946/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageMethods.cpp.o 2025-01-24T02:55:10.0073020Z [4947/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Stream.cpp.o 2025-01-24T02:55:10.0965460Z [4948/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Event.cpp.o 2025-01-24T02:55:11.4962260Z [4949/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/TypeInfo.cpp.o 2025-01-24T02:55:12.0752890Z [4950/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Module.cpp.o 2025-01-24T02:55:14.5921120Z [4951/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/functions/init.cpp.o 2025-01-24T02:55:14.8392540Z [4952/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_anomaly_mode.cpp.o 2025-01-24T02:55:15.5528360Z [4953/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/api/src/python/init.cpp.o 2025-01-24T02:55:17.3252650Z [4954/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_cpp_function.cpp.o 2025-01-24T02:55:18.4086150Z [4955/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_saved_variable_hooks.cpp.o 2025-01-24T02:55:18.5003070Z [4956/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/profiler_python.cpp.o 2025-01-24T02:55:19.6253160Z [4957/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_engine.cpp.o 2025-01-24T02:55:23.1182600Z [4958/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_hook.cpp.o 2025-01-24T02:55:23.4843130Z [4959/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cache_entry.cpp.o 2025-01-24T02:55:23.6791530Z [4960/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_legacy_variable.cpp.o 2025-01-24T02:55:23.9900540Z [4961/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cpp_shim.cpp.o 2025-01-24T02:55:24.0884180Z [4962/4997] Building C object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cpython_defs.c.o 2025-01-24T02:55:24.1786000Z [4963/4997] Building C object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/eval_frame.c.o 2025-01-24T02:55:24.4768600Z [4964/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/extra_state.cpp.o 2025-01-24T02:55:24.7757180Z [4965/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/framelocals_mapping.cpp.o 2025-01-24T02:55:25.4302840Z [4966/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/init.cpp.o 2025-01-24T02:55:25.7655750Z [4967/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/utils.cpp.o 2025-01-24T02:55:25.7842300Z [4968/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/init.cpp.o 2025-01-24T02:55:26.2598620Z [4969/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_nested_functions_manual.cpp.o 2025-01-24T02:55:26.4600860Z [4970/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/fx/node.cpp.o 2025-01-24T02:55:27.2368650Z [4971/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_torch_functions_manual.cpp.o 2025-01-24T02:55:27.2621350Z [4972/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_function.cpp.o 2025-01-24T02:55:27.3943220Z [4973/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/pybind.cpp.o 2025-01-24T02:55:28.1014450Z [4974/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_runner/pybind.cpp.o 2025-01-24T02:55:28.3777130Z [4975/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable_indexing.cpp.o 2025-01-24T02:55:30.0334480Z [4976/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable.cpp.o 2025-01-24T02:55:33.4344710Z [4977/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_package/pybind.cpp.o 2025-01-24T02:55:33.4783890Z [4978/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/mtia/Module.cpp.o 2025-01-24T02:55:33.9317130Z [4979/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/python_compiled_autograd.cpp.o 2025-01-24T02:55:34.8182080Z [4980/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/cast_all_constant_to_floating.cpp.o 2025-01-24T02:55:35.2739890Z [4981/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_eager/kernel_meta_info.cpp.o 2025-01-24T02:55:36.4312630Z [4982/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/resize_storage_bytes.cpp.o 2025-01-24T02:55:36.4792510Z [4983/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/mps/Module.cpp.o 2025-01-24T02:55:36.8032060Z [4984/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/deduplicate_initializers.cpp.o 2025-01-24T02:55:37.3716000Z [4985/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_eager/kernel_holder.cpp.o 2025-01-24T02:55:37.5547110Z [4986/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_map.cpp.o 2025-01-24T02:55:37.5650800Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/jit/passes/onnx/constant_map.cpp:3: 2025-01-24T02:55:37.5748250Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/jit/passes/onnx/constant_map.h:5: 2025-01-24T02:55:37.5848810Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/shape_inference/implementation.h:15: 2025-01-24T02:55:37.5952720Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/function.h:17: 2025-01-24T02:55:37.6053200Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/schema.h:27: 2025-01-24T02:55:37.6154230Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/shape_inference.h:32:106: warning: extra ';' after member function definition [-Wextra-semi] 2025-01-24T02:55:37.6255450Z : check_type(check_type_val), error_mode(strict_mode_val), enable_data_propagation(data_prop_val){}; 2025-01-24T02:55:37.6355470Z ^ 2025-01-24T02:55:37.6457690Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/shape_inference.h:141:56: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-01-24T02:55:37.6556180Z inline void dummyInferenceFunction(InferenceContext&){}; 2025-01-24T02:55:37.6570100Z ^ 2025-01-24T02:55:37.6573010Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/shape_inference.h:144:68: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-01-24T02:55:37.6588630Z inline void dummyDataPropagationFunction(DataPropagationContext&){}; 2025-01-24T02:55:37.6592460Z ^ 2025-01-24T02:55:37.6593250Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/jit/passes/onnx/constant_map.cpp:3: 2025-01-24T02:55:37.6680740Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/jit/passes/onnx/constant_map.h:5: 2025-01-24T02:55:37.6683330Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/shape_inference/implementation.h:15: 2025-01-24T02:55:37.6782310Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/function.h:17: 2025-01-24T02:55:37.6882710Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/schema.h:1562:2: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-01-24T02:55:37.6955920Z }; 2025-01-24T02:55:37.6956420Z ^ 2025-01-24T02:55:37.6956740Z 4 warnings generated. 2025-01-24T02:55:37.6957550Z [4987/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eliminate_unused_items.cpp.o 2025-01-24T02:55:39.2857800Z [4988/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/functorch/init.cpp.o 2025-01-24T02:55:42.4616100Z [4989/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_fold.cpp.o 2025-01-24T02:55:43.5989690Z [4990/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/backends/backend_init.cpp.o 2025-01-24T02:55:43.6111210Z [4991/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eval_peephole.cpp.o 2025-01-24T02:55:44.3874390Z [4992/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/guards.cpp.o 2025-01-24T02:55:44.7041140Z [4993/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx.cpp.o 2025-01-24T02:55:44.7042120Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/jit/passes/onnx.cpp:11: 2025-01-24T02:55:44.7042960Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/jit/passes/onnx/constant_map.h:5: 2025-01-24T02:55:44.7043870Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/shape_inference/implementation.h:15: 2025-01-24T02:55:44.7044780Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/function.h:17: 2025-01-24T02:55:44.7045590Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/schema.h:27: 2025-01-24T02:55:44.7046630Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/shape_inference.h:32:106: warning: extra ';' after member function definition [-Wextra-semi] 2025-01-24T02:55:44.7047570Z : check_type(check_type_val), error_mode(strict_mode_val), enable_data_propagation(data_prop_val){}; 2025-01-24T02:55:44.7048100Z ^ 2025-01-24T02:55:44.7049050Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/shape_inference.h:141:56: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-01-24T02:55:44.7049940Z inline void dummyInferenceFunction(InferenceContext&){}; 2025-01-24T02:55:44.7050290Z ^ 2025-01-24T02:55:44.7051190Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/shape_inference.h:144:68: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-01-24T02:55:44.7052110Z inline void dummyDataPropagationFunction(DataPropagationContext&){}; 2025-01-24T02:55:44.7059070Z ^ 2025-01-24T02:55:44.7059760Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/jit/passes/onnx.cpp:11: 2025-01-24T02:55:44.7060570Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/jit/passes/onnx/constant_map.h:5: 2025-01-24T02:55:44.7061440Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/shape_inference/implementation.h:15: 2025-01-24T02:55:44.7062280Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/function.h:17: 2025-01-24T02:55:44.7063370Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/defs/schema.h:1562:2: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-01-24T02:55:44.7064510Z }; 2025-01-24T02:55:44.7064660Z ^ 2025-01-24T02:55:44.7064810Z 4 warnings generated. 2025-01-24T02:55:52.7537270Z [4994/4997] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/init.cpp.o 2025-01-24T02:55:52.9412090Z [4995/4997] Linking CXX shared library lib/libtorch_python.dylib 2025-01-24T02:55:53.0477860Z [4996/4997] Linking CXX shared module functorch/functorch.so 2025-01-24T02:55:53.0478250Z [4996/4997] Install the project... 2025-01-24T02:55:53.0801020Z -- Install configuration: "Release" 2025-01-24T02:55:59.4081440Z Building wheel torch-2.7.0a0+gitd087145 2025-01-24T02:55:59.4082010Z -- Building version 2.7.0a0+gitd087145 2025-01-24T02:55:59.4084660Z cmake -GNinja -DBUILD_ENVIRONMENT=macos-py3-arm64 -DBUILD_PYTHON=True -DBUILD_TEST=False -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXEC=/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/cmake -DCMAKE_INSTALL_PREFIX=/Users/ec2-user/runner/_work/pytorch/pytorch/torch -DCMAKE_PREFIX_PATH=/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib/python3.9/site-packages -DPython_EXECUTABLE=/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/bin/python -DTORCH_BUILD_VERSION=2.7.0a0+gitd087145 -DUSE_DISTRIBUTED=0 -DUSE_NUMPY=True -DUSE_OPENMP=1 -DUSE_PYTORCH_METAL=1 -DWERROR=1 /Users/ec2-user/runner/_work/pytorch/pytorch 2025-01-24T02:55:59.4087030Z cmake --build . --target install --config Release 2025-01-24T02:55:59.4087320Z running bdist_wheel 2025-01-24T02:56:02.8079160Z running build 2025-01-24T02:56:02.8079370Z running build_py 2025-01-24T02:56:02.8139350Z creating build/lib.macosx-11.1-arm64-cpython-39 2025-01-24T02:56:02.8139780Z creating build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8140680Z copying torch/_storage_docs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8148160Z copying torch/_meta_registrations.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8186180Z copying torch/version.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8198050Z copying torch/library.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8226740Z copying torch/_jit_internal.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8244400Z copying torch/_thread_safe_fork.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8245120Z copying torch/_custom_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8252600Z copying torch/return_types.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8258740Z copying torch/_size_docs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8265100Z copying torch/_torch_docs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8320670Z copying torch/_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8343360Z copying torch/_utils_internal.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8344820Z copying torch/quasirandom.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8356400Z copying torch/torch_version.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8365560Z copying torch/_VF.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8371200Z copying torch/_streambase.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8376530Z copying torch/_tensor_docs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8405440Z copying torch/_weights_only_unpickler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8417390Z copying torch/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8443230Z copying torch/overrides.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8479610Z copying torch/_namedtensor_internals.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8485780Z copying torch/types.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8491760Z copying torch/_linalg_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8497690Z copying torch/__config__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8503630Z copying torch/_tensor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8529730Z copying torch/random.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8539940Z copying torch/hub.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8553470Z copying torch/_tensor_str.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8566770Z copying torch/_sources.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8573350Z copying torch/_vmap_internals.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8580830Z copying torch/functional.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8620110Z copying torch/_lowrank.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8630250Z copying torch/_appdirs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8644020Z copying torch/_environment.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8650660Z copying torch/storage.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8673270Z copying torch/_compile.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8679850Z copying torch/_lobpcg.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8692560Z copying torch/__future__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8699900Z copying torch/_guards.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8712730Z copying torch/_deploy.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8719680Z copying torch/_python_dispatcher.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8725920Z copying torch/_classes.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8732010Z copying torch/serialization.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8754080Z copying torch/_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:02.8770900Z creating build/lib.macosx-11.1-arm64-cpython-39/torchgen 2025-01-24T02:56:02.8771480Z copying torchgen/native_function_generation.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen 2025-01-24T02:56:02.8785960Z copying torchgen/gen_vmap_plumbing.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen 2025-01-24T02:56:02.8793930Z copying torchgen/gen.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen 2025-01-24T02:56:02.8824580Z copying torchgen/gen_executorch.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen 2025-01-24T02:56:02.8839030Z copying torchgen/local.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen 2025-01-24T02:56:02.8846070Z copying torchgen/gen_functionalization_type.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen 2025-01-24T02:56:02.8859480Z copying torchgen/code_template.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen 2025-01-24T02:56:02.8872900Z copying torchgen/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen 2025-01-24T02:56:02.8885490Z copying torchgen/yaml_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen 2025-01-24T02:56:02.8893500Z copying torchgen/gen_aoti_c_shim.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen 2025-01-24T02:56:02.8907390Z copying torchgen/model.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen 2025-01-24T02:56:02.8936130Z copying torchgen/gen_schema_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen 2025-01-24T02:56:02.8945210Z copying torchgen/context.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen 2025-01-24T02:56:02.8956730Z copying torchgen/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen 2025-01-24T02:56:02.8972780Z copying torchgen/gen_backend_stubs.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen 2025-01-24T02:56:02.8984560Z copying torchgen/gen_lazy_tensor.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen 2025-01-24T02:56:02.8999180Z creating build/lib.macosx-11.1-arm64-cpython-39/functorch 2025-01-24T02:56:02.8999690Z copying functorch/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch 2025-01-24T02:56:02.9009660Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9010360Z copying torch/_higher_order_ops/foreach_map.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9017380Z copying torch/_higher_order_ops/effects.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9024420Z copying torch/_higher_order_ops/invoke_subgraph.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9032000Z copying torch/_higher_order_ops/while_loop.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9045900Z copying torch/_higher_order_ops/prim_hop_base.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9053820Z copying torch/_higher_order_ops/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9061620Z copying torch/_higher_order_ops/strict_mode.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9067770Z copying torch/_higher_order_ops/torchbind.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9074510Z copying torch/_higher_order_ops/cond.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9088960Z copying torch/_higher_order_ops/map.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9096900Z copying torch/_higher_order_ops/hints_wrap.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9108390Z copying torch/_higher_order_ops/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9124910Z copying torch/_higher_order_ops/out_dtype.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9131960Z copying torch/_higher_order_ops/executorch_call_delegate.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9139460Z copying torch/_higher_order_ops/scan.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9163220Z copying torch/_higher_order_ops/run_const_graph.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9169370Z copying torch/_higher_order_ops/associative_scan.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9182550Z copying torch/_higher_order_ops/auto_functionalize.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9196530Z copying torch/_higher_order_ops/triton_kernel_wrap.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9227170Z copying torch/_higher_order_ops/flex_attention.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9249500Z copying torch/_higher_order_ops/wrap.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops 2025-01-24T02:56:02.9259960Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_prims 2025-01-24T02:56:02.9260560Z copying torch/_prims/debug_prims.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_prims 2025-01-24T02:56:02.9267170Z copying torch/_prims/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_prims 2025-01-24T02:56:02.9294530Z copying torch/_prims/context.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_prims 2025-01-24T02:56:02.9305740Z copying torch/_prims/rng_prims.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_prims 2025-01-24T02:56:02.9313910Z copying torch/_prims/executor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_prims 2025-01-24T02:56:02.9321360Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_logging 2025-01-24T02:56:02.9321940Z copying torch/_logging/_internal.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_logging 2025-01-24T02:56:02.9333210Z copying torch/_logging/scribe.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_logging 2025-01-24T02:56:02.9339910Z copying torch/_logging/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_logging 2025-01-24T02:56:02.9346450Z copying torch/_logging/_registrations.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_logging 2025-01-24T02:56:02.9352240Z copying torch/_logging/structured.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_logging 2025-01-24T02:56:02.9362910Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9371560Z copying torch/_functorch/partitioners.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9391320Z copying torch/_functorch/compile_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9398880Z copying torch/_functorch/config.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9404960Z copying torch/_functorch/autograd_function.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9416880Z copying torch/_functorch/python_key.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9423770Z copying torch/_functorch/pytree_hacks.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9430080Z copying torch/_functorch/pyfunctorch.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9437320Z copying torch/_functorch/deprecated.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9444750Z copying torch/_functorch/top_operators_github_usage.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9457670Z copying torch/_functorch/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9463620Z copying torch/_functorch/batch_norm_replacement.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9469800Z copying torch/_functorch/fx_minifier.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9482530Z copying torch/_functorch/apis.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9494710Z copying torch/_functorch/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9501480Z copying torch/_functorch/aot_autograd.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9522580Z copying torch/_functorch/compilers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9531380Z copying torch/_functorch/eager_transforms.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9551630Z copying torch/_functorch/vmap.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9565280Z copying torch/_functorch/benchmark_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9571760Z copying torch/_functorch/make_functional.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9585530Z copying torch/_functorch/functional_call.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch 2025-01-24T02:56:02.9595360Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9595940Z copying torch/_numpy/_reductions_impl.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9603790Z copying torch/_numpy/_getlimits.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9611390Z copying torch/_numpy/_unary_ufuncs_impl.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9618620Z copying torch/_numpy/_casting_dicts.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9639330Z copying torch/_numpy/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9649400Z copying torch/_numpy/_binary_ufuncs_impl.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9657380Z copying torch/_numpy/random.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9665820Z copying torch/_numpy/_dtypes.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9673950Z copying torch/_numpy/linalg.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9680840Z copying torch/_numpy/_ndarray.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9697930Z copying torch/_numpy/_ufuncs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9704720Z copying torch/_numpy/_util.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9712150Z copying torch/_numpy/_normalizations.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9719650Z copying torch/_numpy/_dtypes_impl.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9725320Z copying torch/_numpy/fft.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9731610Z copying torch/_numpy/_funcs_impl.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9756800Z copying torch/_numpy/_funcs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy 2025-01-24T02:56:02.9763740Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_export 2025-01-24T02:56:02.9764290Z copying torch/_export/error.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export 2025-01-24T02:56:02.9772450Z copying torch/_export/tools.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export 2025-01-24T02:56:02.9785000Z copying torch/_export/converter.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export 2025-01-24T02:56:02.9804160Z copying torch/_export/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export 2025-01-24T02:56:02.9811890Z copying torch/_export/pass_base.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export 2025-01-24T02:56:02.9825050Z copying torch/_export/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export 2025-01-24T02:56:02.9844920Z copying torch/_export/wrappers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export 2025-01-24T02:56:02.9852190Z copying torch/_export/non_strict_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export 2025-01-24T02:56:02.9866720Z copying torch/_export/verifier.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export 2025-01-24T02:56:02.9881820Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/monitor 2025-01-24T02:56:02.9882390Z copying torch/monitor/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/monitor 2025-01-24T02:56:02.9889220Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_dispatch 2025-01-24T02:56:02.9889790Z copying torch/_dispatch/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dispatch 2025-01-24T02:56:02.9890820Z copying torch/_dispatch/python.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dispatch 2025-01-24T02:56:02.9898820Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_subclasses 2025-01-24T02:56:02.9899460Z copying torch/_subclasses/functional_tensor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_subclasses 2025-01-24T02:56:02.9912250Z copying torch/_subclasses/meta_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_subclasses 2025-01-24T02:56:02.9951770Z copying torch/_subclasses/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_subclasses 2025-01-24T02:56:02.9959080Z copying torch/_subclasses/_fake_tensor_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_subclasses 2025-01-24T02:56:02.9966210Z copying torch/_subclasses/fake_impls.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_subclasses 2025-01-24T02:56:02.9979400Z copying torch/_subclasses/fake_tensor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_subclasses 2025-01-24T02:56:03.0016630Z copying torch/_subclasses/schema_check_mode.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_subclasses 2025-01-24T02:56:03.0028220Z copying torch/_subclasses/fake_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_subclasses 2025-01-24T02:56:03.0043850Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/futures 2025-01-24T02:56:03.0044400Z copying torch/futures/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/futures 2025-01-24T02:56:03.0056150Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/linalg 2025-01-24T02:56:03.0056710Z copying torch/linalg/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/linalg 2025-01-24T02:56:03.0097840Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_custom_op 2025-01-24T02:56:03.0098430Z copying torch/_custom_op/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_custom_op 2025-01-24T02:56:03.0099300Z copying torch/_custom_op/autograd.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_custom_op 2025-01-24T02:56:03.0111880Z copying torch/_custom_op/impl.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_custom_op 2025-01-24T02:56:03.0128420Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn 2025-01-24T02:56:03.0128940Z copying torch/nn/common_types.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn 2025-01-24T02:56:03.0134430Z copying torch/nn/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn 2025-01-24T02:56:03.0140370Z copying torch/nn/_reduction.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn 2025-01-24T02:56:03.0151810Z copying torch/nn/cpp.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn 2025-01-24T02:56:03.0159280Z copying torch/nn/functional.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn 2025-01-24T02:56:03.0193410Z copying torch/nn/init.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn 2025-01-24T02:56:03.0204920Z copying torch/nn/grad.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn 2025-01-24T02:56:03.0210890Z copying torch/nn/parameter.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn 2025-01-24T02:56:03.0218140Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/mps 2025-01-24T02:56:03.0218660Z copying torch/mps/event.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/mps 2025-01-24T02:56:03.0226300Z copying torch/mps/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/mps 2025-01-24T02:56:03.0233350Z copying torch/mps/profiler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/mps 2025-01-24T02:56:03.0242470Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0247840Z copying torch/onnx/_type_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0258170Z copying torch/onnx/_constants.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0265320Z copying torch/onnx/symbolic_opset15.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0270780Z copying torch/onnx/_onnx_supported_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0276810Z copying torch/onnx/symbolic_opset7.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0282100Z copying torch/onnx/symbolic_caffe2.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0288340Z copying torch/onnx/symbolic_opset11.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0306580Z copying torch/onnx/verification.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0325880Z copying torch/onnx/_flags.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0333020Z copying torch/onnx/symbolic_opset10.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0346270Z copying torch/onnx/symbolic_opset20.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0353080Z copying torch/onnx/symbolic_opset14.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0359760Z copying torch/onnx/_globals.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0366320Z copying torch/onnx/symbolic_helper.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0393220Z copying torch/onnx/symbolic_opset9.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0435130Z copying torch/onnx/_deprecation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0442160Z copying torch/onnx/_exporter_states.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0448130Z copying torch/onnx/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0459910Z copying torch/onnx/symbolic_opset8.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0477610Z copying torch/onnx/symbolic_opset19.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0488930Z copying torch/onnx/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0508020Z copying torch/onnx/_experimental.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0514980Z copying torch/onnx/symbolic_opset18.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0520790Z copying torch/onnx/errors.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0526860Z copying torch/onnx/symbolic_opset13.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0539580Z copying torch/onnx/operators.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0546170Z copying torch/onnx/symbolic_opset17.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0553220Z copying torch/onnx/symbolic_opset16.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0560080Z copying torch/onnx/symbolic_opset12.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx 2025-01-24T02:56:03.0572760Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_vendor 2025-01-24T02:56:03.0579100Z copying torch/_vendor/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_vendor 2025-01-24T02:56:03.0579860Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/cpu 2025-01-24T02:56:03.0580810Z copying torch/cpu/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cpu 2025-01-24T02:56:03.0587090Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0587740Z copying torch/distributed/_composable_state.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0594840Z copying torch/distributed/logging_handlers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0601060Z copying torch/distributed/rendezvous.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0608170Z copying torch/distributed/run.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0634060Z copying torch/distributed/_state_dict_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0654720Z copying torch/distributed/distributed_c10d.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0687690Z copying torch/distributed/argparse_util.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0693860Z copying torch/distributed/_checkpointable.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0706660Z copying torch/distributed/constants.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0715040Z copying torch/distributed/c10d_logger.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0720470Z copying torch/distributed/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0726690Z copying torch/distributed/collective_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0732900Z copying torch/distributed/_functional_collectives.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0745270Z copying torch/distributed/launch.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0752330Z copying torch/distributed/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0762870Z copying torch/distributed/remote_device.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0769920Z copying torch/distributed/device_mesh.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0783960Z copying torch/distributed/_functional_collectives_impl.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed 2025-01-24T02:56:03.0792920Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/autograd 2025-01-24T02:56:03.0793530Z copying torch/autograd/anomaly_mode.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/autograd 2025-01-24T02:56:03.0800740Z copying torch/autograd/graph.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/autograd 2025-01-24T02:56:03.0814400Z copying torch/autograd/forward_ad.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/autograd 2025-01-24T02:56:03.0820800Z copying torch/autograd/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/autograd 2025-01-24T02:56:03.0833190Z copying torch/autograd/variable.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/autograd 2025-01-24T02:56:03.0839650Z copying torch/autograd/functional.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/autograd 2025-01-24T02:56:03.0857690Z copying torch/autograd/grad_mode.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/autograd 2025-01-24T02:56:03.0865530Z copying torch/autograd/profiler_util.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/autograd 2025-01-24T02:56:03.0878960Z copying torch/autograd/profiler_legacy.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/autograd 2025-01-24T02:56:03.0886580Z copying torch/autograd/gradcheck.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/autograd 2025-01-24T02:56:03.0949170Z copying torch/autograd/profiler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/autograd 2025-01-24T02:56:03.0964280Z copying torch/autograd/function.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/autograd 2025-01-24T02:56:03.0980410Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.0980920Z copying torch/fx/_pytree.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.0988470Z copying torch/fx/graph_module.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.1004500Z copying torch/fx/operator_schemas.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.1027430Z copying torch/fx/config.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.1033740Z copying torch/fx/proxy.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.1046740Z copying torch/fx/_lazy_graph_module.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.1053560Z copying torch/fx/traceback.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.1060150Z copying torch/fx/graph.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.1080860Z copying torch/fx/tensor_type.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.1089430Z copying torch/fx/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.1097910Z copying torch/fx/immutable_collections.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.1104090Z copying torch/fx/annotate.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.1110430Z copying torch/fx/subgraph_rewriter.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.1118100Z copying torch/fx/interpreter.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.1132210Z copying torch/fx/_symbolic_trace.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.1153150Z copying torch/fx/node.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.1171380Z copying torch/fx/_compatibility.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.1181160Z copying torch/fx/_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx 2025-01-24T02:56:03.1188350Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_prims_common 2025-01-24T02:56:03.1188990Z copying torch/_prims_common/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_prims_common 2025-01-24T02:56:03.1220100Z copying torch/_prims_common/wrappers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_prims_common 2025-01-24T02:56:03.1238430Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/multiprocessing 2025-01-24T02:56:03.1239100Z copying torch/multiprocessing/queue.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/multiprocessing 2025-01-24T02:56:03.1245690Z copying torch/multiprocessing/_atfork.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/multiprocessing 2025-01-24T02:56:03.1251960Z copying torch/multiprocessing/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/multiprocessing 2025-01-24T02:56:03.1258280Z copying torch/multiprocessing/spawn.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/multiprocessing 2025-01-24T02:56:03.1265670Z copying torch/multiprocessing/reductions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/multiprocessing 2025-01-24T02:56:03.1278260Z copying torch/multiprocessing/pool.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/multiprocessing 2025-01-24T02:56:03.1286810Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1287330Z copying torch/cuda/gds.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1294360Z copying torch/cuda/streams.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1302670Z copying torch/cuda/error.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1303330Z copying torch/cuda/comm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1311380Z copying torch/cuda/memory.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1332720Z copying torch/cuda/jiterator.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1339570Z copying torch/cuda/nccl.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1346270Z copying torch/cuda/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1365440Z copying torch/cuda/_gpu_trace.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1372370Z copying torch/cuda/_sanitizer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1387800Z copying torch/cuda/random.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1395590Z copying torch/cuda/_memory_viz.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1409140Z copying torch/cuda/tunable.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1425210Z copying torch/cuda/sparse.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1432790Z copying torch/cuda/nvtx.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1439970Z copying torch/cuda/graphs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1452590Z copying torch/cuda/profiler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1459240Z copying torch/cuda/_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda 2025-01-24T02:56:03.1468660Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends 2025-01-24T02:56:03.1473430Z copying torch/backends/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends 2025-01-24T02:56:03.1477260Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_decomp 2025-01-24T02:56:03.1477880Z copying torch/_decomp/decompositions_for_jvp.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_decomp 2025-01-24T02:56:03.1487890Z copying torch/_decomp/decompositions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_decomp 2025-01-24T02:56:03.1557520Z copying torch/_decomp/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_decomp 2025-01-24T02:56:03.1572300Z copying torch/_decomp/decompositions_for_rng.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_decomp 2025-01-24T02:56:03.1580840Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/xpu 2025-01-24T02:56:03.1581710Z copying torch/xpu/streams.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/xpu 2025-01-24T02:56:03.1589380Z copying torch/xpu/memory.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/xpu 2025-01-24T02:56:03.1596150Z copying torch/xpu/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/xpu 2025-01-24T02:56:03.1612380Z copying torch/xpu/_gpu_trace.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/xpu 2025-01-24T02:56:03.1618830Z copying torch/xpu/random.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/xpu 2025-01-24T02:56:03.1625110Z copying torch/xpu/_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/xpu 2025-01-24T02:56:03.1632960Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/masked 2025-01-24T02:56:03.1633500Z copying torch/masked/_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/masked 2025-01-24T02:56:03.1656000Z copying torch/masked/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/masked 2025-01-24T02:56:03.1667200Z copying torch/masked/_docs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/masked 2025-01-24T02:56:03.1690980Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1691550Z copying torch/optim/lr_scheduler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1731580Z copying torch/optim/rmsprop.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1748410Z copying torch/optim/_adafactor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1760590Z copying torch/optim/sparse_adam.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1767060Z copying torch/optim/rprop.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1779730Z copying torch/optim/sgd.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1791980Z copying torch/optim/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1798230Z copying torch/optim/adamax.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1814890Z copying torch/optim/adagrad.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1827030Z copying torch/optim/adamw.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1833660Z copying torch/optim/swa_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1847000Z copying torch/optim/lbfgs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1860400Z copying torch/optim/radam.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1878180Z copying torch/optim/adam.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1893090Z copying torch/optim/optimizer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1909910Z copying torch/optim/nadam.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1923050Z copying torch/optim/asgd.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1930860Z copying torch/optim/_functional.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1937920Z copying torch/optim/adadelta.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim 2025-01-24T02:56:03.1958330Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.1958970Z copying torch/_inductor/dtype_propagation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.1966530Z copying torch/_inductor/cudagraph_trees.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2008770Z copying torch/_inductor/select_algorithm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2035260Z copying torch/_inductor/ops_handler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2049070Z copying torch/_inductor/metrics.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2063000Z copying torch/_inductor/codecache.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2107450Z copying torch/_inductor/mock_cache.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2114230Z copying torch/_inductor/optimize_indexing.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2120130Z copying torch/_inductor/hooks.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2126330Z copying torch/_inductor/cpp_builder.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2154490Z copying torch/_inductor/cpu_vec_isa.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2166150Z copying torch/_inductor/config.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2197570Z copying torch/_inductor/comms.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2210770Z copying torch/_inductor/memory.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2222110Z copying torch/_inductor/mkldnn_lowerings.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2234110Z copying torch/_inductor/async_compile.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2242350Z copying torch/_inductor/pattern_matcher.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2269310Z copying torch/_inductor/quantized_lowerings.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2276400Z copying torch/_inductor/triton_bundler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2282180Z copying torch/_inductor/aoti_eager.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2288510Z copying torch/_inductor/graph.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2314690Z copying torch/_inductor/lowering.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2349180Z copying torch/_inductor/jagged_lowerings.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2355370Z copying torch/_inductor/test_operators.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2360460Z copying torch/_inductor/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2374570Z copying torch/_inductor/compile_fx.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2394390Z copying torch/_inductor/cudagraph_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2407920Z copying torch/_inductor/sizevars.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2420000Z copying torch/_inductor/ir.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2482390Z copying torch/_inductor/analyze_preserves_zero_mask.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2488540Z copying torch/_inductor/index_propagation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2495210Z copying torch/_inductor/constant_folding.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2502510Z copying torch/_inductor/inductor_prims.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2508900Z copying torch/_inductor/virtualized.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2515730Z copying torch/_inductor/test_case.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2521360Z copying torch/_inductor/autotune_process.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2532970Z copying torch/_inductor/exc.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2539060Z copying torch/_inductor/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2558840Z copying torch/_inductor/debug.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2584530Z copying torch/_inductor/fuzzer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2596950Z copying torch/_inductor/comm_lowering.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2604650Z copying torch/_inductor/decomposition.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2616660Z copying torch/_inductor/fx_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2623290Z copying torch/_inductor/scheduler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2661840Z copying torch/_inductor/mkldnn_ir.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2675970Z copying torch/_inductor/wrapper_benchmark.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2688030Z copying torch/_inductor/choices.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2690670Z copying torch/_inductor/remote_cache.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2698750Z copying torch/_inductor/comm_analysis.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2711560Z copying torch/_inductor/compiler_bisector.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2729360Z copying torch/_inductor/extern_node_serializer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2736890Z copying torch/_inductor/bounds.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2743750Z copying torch/_inductor/output_code.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2756040Z copying torch/_inductor/custom_graph_pass.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2762340Z copying torch/_inductor/freezing.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2768850Z copying torch/_inductor/dependencies.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2781440Z copying torch/_inductor/loop_body.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2793920Z copying torch/_inductor/subgraph_lowering.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor 2025-01-24T02:56:03.2806110Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2806660Z copying torch/utils/_pytree.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2826500Z copying torch/utils/_foreach_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2838950Z copying torch/utils/hooks.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2846380Z copying torch/utils/_traceback.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2853360Z copying torch/utils/_cpp_extension_versioner.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2859350Z copying torch/utils/_mode_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2865650Z copying torch/utils/checkpoint.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2888470Z copying torch/utils/show_pickle.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2895690Z copying torch/utils/deterministic.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2902840Z copying torch/utils/file_baton.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2909960Z copying torch/utils/_freeze.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2917050Z copying torch/utils/backend_registration.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2929590Z copying torch/utils/module_tracker.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2936660Z copying torch/utils/model_zoo.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2942560Z copying torch/utils/_zip.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2948850Z copying torch/utils/collect_env.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2966240Z copying torch/utils/throughput_benchmark.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2972160Z copying torch/utils/dlpack.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2978420Z copying torch/utils/_cxx_pytree.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2991700Z copying torch/utils/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.2998950Z copying torch/utils/_functools.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3005100Z copying torch/utils/_import_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3011670Z copying torch/utils/_cpp_embed_headers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3018020Z copying torch/utils/bundled_inputs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3031310Z copying torch/utils/mkldnn.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3039070Z copying torch/utils/cpp_backtrace.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3046650Z copying torch/utils/_contextlib.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3053940Z copying torch/utils/_python_dispatch.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3067930Z copying torch/utils/_exposed_in.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3075480Z copying torch/utils/_filelock.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3082170Z copying torch/utils/_thunk.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3088790Z copying torch/utils/_config_module.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3102810Z copying torch/utils/_device.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3110380Z copying torch/utils/flop_counter.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3124550Z copying torch/utils/_typing_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3131570Z copying torch/utils/_stats.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3138350Z copying torch/utils/cpp_extension.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3168850Z copying torch/utils/_backport_slots.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3177090Z copying torch/utils/_get_clean_triton.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3185110Z copying torch/utils/_triton.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3192710Z copying torch/utils/_content_store.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3200150Z copying torch/utils/_ordered_set.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3207290Z copying torch/utils/weak.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3214970Z copying torch/utils/mobile_optimizer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:03.3223520Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/contrib 2025-01-24T02:56:03.3224070Z copying torch/contrib/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/contrib 2025-01-24T02:56:03.3225000Z copying torch/contrib/_tensorboard_vis.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/contrib 2025-01-24T02:56:03.3235060Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/quantization 2025-01-24T02:56:03.3235700Z copying torch/quantization/observer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization 2025-01-24T02:56:03.3243040Z copying torch/quantization/fuse_modules.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization 2025-01-24T02:56:03.3249830Z copying torch/quantization/quantization_mappings.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization 2025-01-24T02:56:03.3256160Z copying torch/quantization/quantize.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization 2025-01-24T02:56:03.3262880Z copying torch/quantization/_numeric_suite.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization 2025-01-24T02:56:03.3269600Z copying torch/quantization/fake_quantize.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization 2025-01-24T02:56:03.3276410Z copying torch/quantization/qconfig.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization 2025-01-24T02:56:03.3283180Z copying torch/quantization/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization 2025-01-24T02:56:03.3289380Z copying torch/quantization/_quantized_conversions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization 2025-01-24T02:56:03.3296120Z copying torch/quantization/stubs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization 2025-01-24T02:56:03.3303590Z copying torch/quantization/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization 2025-01-24T02:56:03.3310750Z copying torch/quantization/fuser_method_mappings.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization 2025-01-24T02:56:03.3318260Z copying torch/quantization/quantize_jit.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization 2025-01-24T02:56:03.3325180Z copying torch/quantization/quant_type.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization 2025-01-24T02:56:03.3332170Z copying torch/quantization/quantize_fx.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization 2025-01-24T02:56:03.3339480Z copying torch/quantization/_numeric_suite_fx.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization 2025-01-24T02:56:03.3346630Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/special 2025-01-24T02:56:03.3347180Z copying torch/special/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/special 2025-01-24T02:56:03.3363030Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing 2025-01-24T02:56:03.3363590Z copying torch/testing/_creation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing 2025-01-24T02:56:03.3371600Z copying torch/testing/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing 2025-01-24T02:56:03.3378950Z copying torch/testing/_comparison.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing 2025-01-24T02:56:03.3401130Z copying torch/testing/_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing 2025-01-24T02:56:03.3410690Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_library 2025-01-24T02:56:03.3415370Z copying torch/_library/triton.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_library 2025-01-24T02:56:03.3418540Z copying torch/_library/infer_schema.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_library 2025-01-24T02:56:03.3431220Z copying torch/_library/simple_registry.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_library 2025-01-24T02:56:03.3441690Z copying torch/_library/custom_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_library 2025-01-24T02:56:03.3456320Z copying torch/_library/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_library 2025-01-24T02:56:03.3463280Z copying torch/_library/fake_impl.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_library 2025-01-24T02:56:03.3470880Z copying torch/_library/autograd.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_library 2025-01-24T02:56:03.3478780Z copying torch/_library/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_library 2025-01-24T02:56:03.3493240Z copying torch/_library/fake_class_registry.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_library 2025-01-24T02:56:03.3502330Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/accelerator 2025-01-24T02:56:03.3503040Z copying torch/accelerator/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/accelerator 2025-01-24T02:56:03.3511120Z copying torch/accelerator/_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/accelerator 2025-01-24T02:56:03.3518710Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/amp 2025-01-24T02:56:03.3519250Z copying torch/amp/autocast_mode.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/amp 2025-01-24T02:56:03.3533430Z copying torch/amp/grad_scaler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/amp 2025-01-24T02:56:03.3560380Z copying torch/amp/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/amp 2025-01-24T02:56:03.3570820Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3571340Z copying torch/jit/_ir_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3578090Z copying torch/jit/_monkeytype_config.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3584910Z copying torch/jit/_decompositions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3591560Z copying torch/jit/_recursive.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3604940Z copying torch/jit/_logging.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3611860Z copying torch/jit/_serialization.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3618820Z copying torch/jit/quantized.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3625320Z copying torch/jit/_script.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3646120Z copying torch/jit/_shape_functions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3660360Z copying torch/jit/_decomposition_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3668050Z copying torch/jit/_freeze.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3675340Z copying torch/jit/_pickle.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3682050Z copying torch/jit/_check.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3690160Z copying torch/jit/unsupported_tensor_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3697470Z copying torch/jit/frontend.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3713230Z copying torch/jit/supported_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3721800Z copying torch/jit/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3729830Z copying torch/jit/_fuser.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3737580Z copying torch/jit/_builtins.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3745660Z copying torch/jit/_dataclass_impls.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3753820Z copying torch/jit/_trace.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3774770Z copying torch/jit/generate_bytecode.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3781810Z copying torch/jit/_state.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3788340Z copying torch/jit/_async.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3794470Z copying torch/jit/annotations.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3827460Z copying torch/jit/_await.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:03.3839400Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.3844810Z copying torch/_dynamo/cache_size.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.3852100Z copying torch/_dynamo/callback.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.3858730Z copying torch/_dynamo/comptime.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.3866710Z copying torch/_dynamo/logging.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.3873290Z copying torch/_dynamo/_trace_wrapped_higher_order_op.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.3879530Z copying torch/_dynamo/hooks.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.3886090Z copying torch/_dynamo/config.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.3907100Z copying torch/_dynamo/guards.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.3936090Z copying torch/_dynamo/test_minifier_common.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.3943170Z copying torch/_dynamo/create_parameter_op.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.3949650Z copying torch/_dynamo/graph_region_tracker.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.3956970Z copying torch/_dynamo/device_interface.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.3964610Z copying torch/_dynamo/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.3971320Z copying torch/_dynamo/mutation_guard.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.3979640Z copying torch/_dynamo/types.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.3987560Z copying torch/_dynamo/metrics_context.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.3994480Z copying torch/_dynamo/bytecode_analysis.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4001740Z copying torch/_dynamo/tensor_version_op.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4008670Z copying torch/_dynamo/external_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4014930Z copying torch/_dynamo/test_case.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4021300Z copying torch/_dynamo/distributed.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4027500Z copying torch/_dynamo/resume_execution.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4046550Z copying torch/_dynamo/output_graph.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4084360Z copying torch/_dynamo/compiled_autograd.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4097490Z copying torch/_dynamo/exc.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4109480Z copying torch/_dynamo/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4136800Z copying torch/_dynamo/replay_record.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4143370Z copying torch/_dynamo/side_effects.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4155840Z copying torch/_dynamo/trace_rules.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4184150Z copying torch/_dynamo/bytecode_transformation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4205870Z copying torch/_dynamo/convert_frame.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4259090Z copying torch/_dynamo/funcname_cache.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4264570Z copying torch/_dynamo/testing.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4273540Z copying torch/_dynamo/pgo.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4285770Z copying torch/_dynamo/profiler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4292470Z copying torch/_dynamo/symbolic_convert.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4322710Z copying torch/_dynamo/codegen.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4337850Z copying torch/_dynamo/source.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4350450Z copying torch/_dynamo/eval_frame.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4371440Z copying torch/_dynamo/code_context.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4378700Z copying torch/_dynamo/graph_deduplication.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4385320Z copying torch/_dynamo/current_scope_id.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4391540Z copying torch/_dynamo/debug_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4405100Z copying torch/_dynamo/decorators.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo 2025-01-24T02:56:03.4419710Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy 2025-01-24T02:56:03.4420240Z copying torch/_lazy/metrics.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy 2025-01-24T02:56:03.4427290Z copying torch/_lazy/config.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy 2025-01-24T02:56:03.4433480Z copying torch/_lazy/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy 2025-01-24T02:56:03.4439700Z copying torch/_lazy/tensor_factory_functions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy 2025-01-24T02:56:03.4450270Z copying torch/_lazy/debug.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy 2025-01-24T02:56:03.4459160Z copying torch/_lazy/extract_compiled_graph.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy 2025-01-24T02:56:03.4465810Z copying torch/_lazy/ir_cache.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy 2025-01-24T02:56:03.4472020Z copying torch/_lazy/ts_backend.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy 2025-01-24T02:56:03.4478210Z copying torch/_lazy/computation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy 2025-01-24T02:56:03.4484350Z copying torch/_lazy/closure.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy 2025-01-24T02:56:03.4491290Z copying torch/_lazy/device_context.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy 2025-01-24T02:56:03.4498190Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao 2025-01-24T02:56:03.4498700Z copying torch/ao/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao 2025-01-24T02:56:03.4506470Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/mtia 2025-01-24T02:56:03.4507000Z copying torch/mtia/memory.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/mtia 2025-01-24T02:56:03.4515880Z copying torch/mtia/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/mtia 2025-01-24T02:56:03.4523970Z copying torch/mtia/_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/mtia 2025-01-24T02:56:03.4532160Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_refs 2025-01-24T02:56:03.4532710Z copying torch/_refs/_conversions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_refs 2025-01-24T02:56:03.4540300Z copying torch/_refs/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_refs 2025-01-24T02:56:03.4586530Z copying torch/_refs/fft.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_refs 2025-01-24T02:56:03.4605820Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/fft 2025-01-24T02:56:03.4606330Z copying torch/fft/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fft 2025-01-24T02:56:03.4625240Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/profiler 2025-01-24T02:56:03.4625850Z copying torch/profiler/_memory_profiler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/profiler 2025-01-24T02:56:03.4641010Z copying torch/profiler/itt.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/profiler 2025-01-24T02:56:03.4648920Z copying torch/profiler/_pattern_matcher.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/profiler 2025-01-24T02:56:03.4661500Z copying torch/profiler/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/profiler 2025-01-24T02:56:03.4667960Z copying torch/profiler/profiler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/profiler 2025-01-24T02:56:03.4681420Z copying torch/profiler/python_tracer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/profiler 2025-01-24T02:56:03.4688110Z copying torch/profiler/_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/profiler 2025-01-24T02:56:03.4697010Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/sparse 2025-01-24T02:56:03.4697610Z copying torch/sparse/_semi_structured_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/sparse 2025-01-24T02:56:03.4704750Z copying torch/sparse/_semi_structured_conversions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/sparse 2025-01-24T02:56:03.4711980Z copying torch/sparse/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/sparse 2025-01-24T02:56:03.4725250Z copying torch/sparse/semi_structured.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/sparse 2025-01-24T02:56:03.4739200Z copying torch/sparse/_triton_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/sparse 2025-01-24T02:56:03.4767250Z copying torch/sparse/_triton_ops_meta.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/sparse 2025-01-24T02:56:03.4828130Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_awaits 2025-01-24T02:56:03.4828680Z copying torch/_awaits/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_awaits 2025-01-24T02:56:03.4838500Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/export 2025-01-24T02:56:03.4839060Z copying torch/export/_safeguard.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/export 2025-01-24T02:56:03.4846180Z copying torch/export/exported_program.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/export 2025-01-24T02:56:03.4864980Z copying torch/export/unflatten.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/export 2025-01-24T02:56:03.4892910Z copying torch/export/custom_obj.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/export 2025-01-24T02:56:03.4903790Z copying torch/export/_remove_effect_tokens_pass.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/export 2025-01-24T02:56:03.4909900Z copying torch/export/_remove_auto_functionalized_pass.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/export 2025-01-24T02:56:03.4916080Z copying torch/export/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/export 2025-01-24T02:56:03.4928050Z copying torch/export/_unlift.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/export 2025-01-24T02:56:03.4936520Z copying torch/export/_trace.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/export 2025-01-24T02:56:03.4969680Z copying torch/export/graph_signature.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/export 2025-01-24T02:56:03.4993530Z copying torch/export/decomp_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/export 2025-01-24T02:56:03.4999670Z copying torch/export/_swap.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/export 2025-01-24T02:56:03.5011040Z copying torch/export/_draft_export.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/export 2025-01-24T02:56:03.5017390Z copying torch/export/dynamic_shapes.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/export 2025-01-24T02:56:03.5029200Z copying torch/export/_tree_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/export 2025-01-24T02:56:03.5036320Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nested 2025-01-24T02:56:03.5036860Z copying torch/nested/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nested 2025-01-24T02:56:03.5050230Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_strobelight 2025-01-24T02:56:03.5050910Z copying torch/_strobelight/cli_function_profiler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_strobelight 2025-01-24T02:56:03.5066330Z copying torch/_strobelight/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_strobelight 2025-01-24T02:56:03.5067400Z copying torch/_strobelight/compile_time_profiler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_strobelight 2025-01-24T02:56:03.5074080Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/compiler 2025-01-24T02:56:03.5074650Z copying torch/compiler/_cache.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/compiler 2025-01-24T02:56:03.5081580Z copying torch/compiler/config.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/compiler 2025-01-24T02:56:03.5088050Z copying torch/compiler/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/compiler 2025-01-24T02:56:03.5100400Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/signal 2025-01-24T02:56:03.5100940Z copying torch/signal/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/signal 2025-01-24T02:56:03.5113470Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5119870Z copying torch/distributions/inverse_gamma.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5126240Z copying torch/distributions/laplace.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5132130Z copying torch/distributions/relaxed_bernoulli.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5138880Z copying torch/distributions/categorical.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5145710Z copying torch/distributions/transforms.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5159340Z copying torch/distributions/dirichlet.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5166590Z copying torch/distributions/log_normal.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5172860Z copying torch/distributions/transformed_distribution.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5180010Z copying torch/distributions/geometric.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5187010Z copying torch/distributions/weibull.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5193750Z copying torch/distributions/studentT.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5200310Z copying torch/distributions/multivariate_normal.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5207930Z copying torch/distributions/normal.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5215460Z copying torch/distributions/poisson.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5222190Z copying torch/distributions/beta.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5228410Z copying torch/distributions/kumaraswamy.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5235240Z copying torch/distributions/half_normal.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5241850Z copying torch/distributions/relaxed_categorical.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5249540Z copying torch/distributions/lowrank_multivariate_normal.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5263680Z copying torch/distributions/half_cauchy.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5270320Z copying torch/distributions/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5277740Z copying torch/distributions/lkj_cholesky.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5285690Z copying torch/distributions/independent.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5293160Z copying torch/distributions/multinomial.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5300530Z copying torch/distributions/exponential.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5308150Z copying torch/distributions/pareto.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5315340Z copying torch/distributions/negative_binomial.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5322690Z copying torch/distributions/cauchy.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5330790Z copying torch/distributions/von_mises.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5338210Z copying torch/distributions/distribution.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5346230Z copying torch/distributions/gumbel.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5353860Z copying torch/distributions/constraint_registry.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5361490Z copying torch/distributions/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5368480Z copying torch/distributions/kl.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5384500Z copying torch/distributions/mixture_same_family.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5392610Z copying torch/distributions/continuous_bernoulli.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5400320Z copying torch/distributions/fishersnedecor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5406680Z copying torch/distributions/constraints.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5421670Z copying torch/distributions/uniform.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5428260Z copying torch/distributions/bernoulli.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5435600Z copying torch/distributions/exp_family.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5443250Z copying torch/distributions/logistic_normal.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5449970Z copying torch/distributions/one_hot_categorical.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5456700Z copying torch/distributions/wishart.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5464590Z copying torch/distributions/gamma.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5471850Z copying torch/distributions/chi2.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5479390Z copying torch/distributions/binomial.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributions 2025-01-24T02:56:03.5489300Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/package 2025-01-24T02:56:03.5489900Z copying torch/package/package_exporter.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package 2025-01-24T02:56:03.5512200Z copying torch/package/file_structure_representation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package 2025-01-24T02:56:03.5519550Z copying torch/package/_mock.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package 2025-01-24T02:56:03.5527400Z copying torch/package/importer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package 2025-01-24T02:56:03.5535990Z copying torch/package/_stdlib.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package 2025-01-24T02:56:03.5543730Z copying torch/package/_mangling.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package 2025-01-24T02:56:03.5551480Z copying torch/package/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package 2025-01-24T02:56:03.5557970Z copying torch/package/package_importer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package 2025-01-24T02:56:03.5572590Z copying torch/package/_package_unpickler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package 2025-01-24T02:56:03.5580080Z copying torch/package/glob_group.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package 2025-01-24T02:56:03.5587000Z copying torch/package/find_file_dependencies.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package 2025-01-24T02:56:03.5593580Z copying torch/package/_package_pickler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package 2025-01-24T02:56:03.5601290Z copying torch/package/_importlib.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package 2025-01-24T02:56:03.5608470Z copying torch/package/_directory_reader.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package 2025-01-24T02:56:03.5614940Z copying torch/package/_digraph.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package 2025-01-24T02:56:03.5623530Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/func 2025-01-24T02:56:03.5624070Z copying torch/func/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/func 2025-01-24T02:56:03.5632520Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_activation_checkpointing 2025-01-24T02:56:03.5633450Z copying torch/_functorch/_activation_checkpointing/graph_info_provider.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_activation_checkpointing 2025-01-24T02:56:03.5641640Z copying torch/_functorch/_activation_checkpointing/knapsack.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_activation_checkpointing 2025-01-24T02:56:03.5648780Z copying torch/_functorch/_activation_checkpointing/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_activation_checkpointing 2025-01-24T02:56:03.5656310Z copying torch/_functorch/_activation_checkpointing/knapsack_evaluator.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_activation_checkpointing 2025-01-24T02:56:03.5665660Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd 2025-01-24T02:56:03.5666460Z copying torch/_functorch/_aot_autograd/input_output_analysis.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd 2025-01-24T02:56:03.5680830Z copying torch/_functorch/_aot_autograd/runtime_wrappers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd 2025-01-24T02:56:03.5723850Z copying torch/_functorch/_aot_autograd/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd 2025-01-24T02:56:03.5731670Z copying torch/_functorch/_aot_autograd/dispatch_and_compile_graph.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd 2025-01-24T02:56:03.5739720Z copying torch/_functorch/_aot_autograd/functional_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd 2025-01-24T02:56:03.5752300Z copying torch/_functorch/_aot_autograd/autograd_cache.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd 2025-01-24T02:56:03.5769790Z copying torch/_functorch/_aot_autograd/traced_function_transforms.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd 2025-01-24T02:56:03.5780780Z copying torch/_functorch/_aot_autograd/schemas.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd 2025-01-24T02:56:03.5796940Z copying torch/_functorch/_aot_autograd/jit_compile_runtime_wrappers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd 2025-01-24T02:56:03.5811790Z copying torch/_functorch/_aot_autograd/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd 2025-01-24T02:56:03.5825510Z copying torch/_functorch/_aot_autograd/collect_metadata_analysis.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd 2025-01-24T02:56:03.5839150Z copying torch/_functorch/_aot_autograd/subclass_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd 2025-01-24T02:56:03.5853090Z copying torch/_functorch/_aot_autograd/logging_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd 2025-01-24T02:56:03.5860290Z copying torch/_functorch/_aot_autograd/subclass_parametrization.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd 2025-01-24T02:56:03.5868030Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/testing 2025-01-24T02:56:03.5868760Z copying torch/_numpy/testing/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/testing 2025-01-24T02:56:03.5875150Z copying torch/_numpy/testing/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/testing 2025-01-24T02:56:03.5905620Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_export/pass_infra 2025-01-24T02:56:03.5906320Z copying torch/_export/pass_infra/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/pass_infra 2025-01-24T02:56:03.5907250Z copying torch/_export/pass_infra/proxy_value.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/pass_infra 2025-01-24T02:56:03.5914910Z copying torch/_export/pass_infra/node_metadata.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/pass_infra 2025-01-24T02:56:03.5923130Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes 2025-01-24T02:56:03.5923840Z copying torch/_export/passes/insert_custom_op_guards.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes 2025-01-24T02:56:03.5930200Z copying torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes 2025-01-24T02:56:03.5943910Z copying torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes 2025-01-24T02:56:03.5951100Z copying torch/_export/passes/collect_tracepoints_pass.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes 2025-01-24T02:56:03.5958510Z copying torch/_export/passes/replace_with_hop_pass_util.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes 2025-01-24T02:56:03.5971990Z copying torch/_export/passes/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes 2025-01-24T02:56:03.5982410Z copying torch/_export/passes/_node_metadata_hook.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes 2025-01-24T02:56:03.5988470Z copying torch/_export/passes/lift_constants_pass.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes 2025-01-24T02:56:03.5996000Z copying torch/_export/passes/constant_folding.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes 2025-01-24T02:56:03.6002660Z copying torch/_export/passes/add_runtime_assertions_for_constraints_pass.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes 2025-01-24T02:56:03.6010160Z copying torch/_export/passes/replace_autocast_with_hop_pass.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes 2025-01-24T02:56:03.6016650Z copying torch/_export/passes/functionalize_side_effectful_ops_pass.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes 2025-01-24T02:56:03.6022840Z copying torch/_export/passes/replace_set_grad_with_hop_pass.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes 2025-01-24T02:56:03.6029380Z copying torch/_export/passes/remove_runtime_assertions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes 2025-01-24T02:56:03.6040470Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db 2025-01-24T02:56:03.6041080Z copying torch/_export/db/logging.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db 2025-01-24T02:56:03.6049150Z copying torch/_export/db/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db 2025-01-24T02:56:03.6054830Z copying torch/_export/db/gen_example.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db 2025-01-24T02:56:03.6061350Z copying torch/_export/db/case.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db 2025-01-24T02:56:03.6075000Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde 2025-01-24T02:56:03.6075750Z copying torch/_export/serde/serialize.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde 2025-01-24T02:56:03.6106670Z copying torch/_export/serde/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde 2025-01-24T02:56:03.6107540Z copying torch/_export/serde/schema_check.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde 2025-01-24T02:56:03.6120880Z copying torch/_export/serde/dynamic_shapes.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde 2025-01-24T02:56:03.6127800Z copying torch/_export/serde/union.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde 2025-01-24T02:56:03.6133760Z copying torch/_export/serde/schema.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde 2025-01-24T02:56:03.6140350Z copying torch/_export/serde/aoti_schema.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde 2025-01-24T02:56:03.6150890Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6156890Z copying torch/_export/db/examples/list_unpack.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6163260Z copying torch/_export/db/examples/specialized_attribute.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6169320Z copying torch/_export/db/examples/static_for_loop.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6181270Z copying torch/_export/db/examples/cond_closed_over_variable.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6187250Z copying torch/_export/db/examples/fn_with_kwargs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6193690Z copying torch/_export/db/examples/constrain_as_value_example.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6199950Z copying torch/_export/db/examples/dynamic_shape_slicing.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6206390Z copying torch/_export/db/examples/cond_branch_nonlocal_variables.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6213180Z copying torch/_export/db/examples/autograd_function.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6219640Z copying torch/_export/db/examples/type_reflection_method.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6225470Z copying torch/_export/db/examples/cond_operands.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6232290Z copying torch/_export/db/examples/decorator.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6238810Z copying torch/_export/db/examples/dynamic_shape_view.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6245640Z copying torch/_export/db/examples/dynamic_shape_map.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6252270Z copying torch/_export/db/examples/nested_function.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6258990Z copying torch/_export/db/examples/dynamic_shape_constructor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6265730Z copying torch/_export/db/examples/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6272590Z copying torch/_export/db/examples/dynamic_shape_if_guard.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6279380Z copying torch/_export/db/examples/assume_constant_result.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6286280Z copying torch/_export/db/examples/cond_branch_class_method.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6292300Z copying torch/_export/db/examples/class_method.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6299430Z copying torch/_export/db/examples/pytree_flatten.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6306130Z copying torch/_export/db/examples/scalar_output.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6312870Z copying torch/_export/db/examples/cond_predicate.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6319520Z copying torch/_export/db/examples/dynamic_shape_assert.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6326220Z copying torch/_export/db/examples/unsupported_operator.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6332790Z copying torch/_export/db/examples/tensor_setattr.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6340170Z copying torch/_export/db/examples/optional_input.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6354760Z copying torch/_export/db/examples/constrain_as_size_example.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6363610Z copying torch/_export/db/examples/static_if.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6371320Z copying torch/_export/db/examples/dictionary.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6378770Z copying torch/_export/db/examples/list_contains.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6385650Z copying torch/_export/db/examples/dynamic_shape_round.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6392990Z copying torch/_export/db/examples/user_input_mutation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6399790Z copying torch/_export/db/examples/null_context_manager.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6407130Z copying torch/_export/db/examples/cond_branch_nested_function.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6413810Z copying torch/_export/db/examples/model_attr_mutation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples 2025-01-24T02:56:03.6421070Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/attention 2025-01-24T02:56:03.6421690Z copying torch/nn/attention/bias.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/attention 2025-01-24T02:56:03.6429790Z copying torch/nn/attention/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/attention 2025-01-24T02:56:03.6437320Z copying torch/nn/attention/flex_attention.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/attention 2025-01-24T02:56:03.6459320Z copying torch/nn/attention/_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/attention 2025-01-24T02:56:03.6468440Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parallel 2025-01-24T02:56:03.6469090Z copying torch/nn/parallel/parallel_apply.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parallel 2025-01-24T02:56:03.6477010Z copying torch/nn/parallel/comm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parallel 2025-01-24T02:56:03.6484550Z copying torch/nn/parallel/scatter_gather.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parallel 2025-01-24T02:56:03.6492000Z copying torch/nn/parallel/replicate.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parallel 2025-01-24T02:56:03.6499490Z copying torch/nn/parallel/_functions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parallel 2025-01-24T02:56:03.6506990Z copying torch/nn/parallel/data_parallel.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parallel 2025-01-24T02:56:03.6515890Z copying torch/nn/parallel/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parallel 2025-01-24T02:56:03.6525090Z copying torch/nn/parallel/distributed.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parallel 2025-01-24T02:56:03.6554420Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat 2025-01-24T02:56:03.6554970Z copying torch/nn/qat/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat 2025-01-24T02:56:03.6563590Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized 2025-01-24T02:56:03.6564220Z copying torch/nn/quantized/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized 2025-01-24T02:56:03.6571660Z copying torch/nn/quantized/functional.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized 2025-01-24T02:56:03.6579180Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/backends 2025-01-24T02:56:03.6579780Z copying torch/nn/backends/thnn.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/backends 2025-01-24T02:56:03.6586630Z copying torch/nn/backends/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/backends 2025-01-24T02:56:03.6589890Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils 2025-01-24T02:56:03.6597080Z copying torch/nn/utils/_named_member_accessor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils 2025-01-24T02:56:03.6605200Z copying torch/nn/utils/spectral_norm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils 2025-01-24T02:56:03.6613410Z copying torch/nn/utils/convert_parameters.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils 2025-01-24T02:56:03.6620650Z copying torch/nn/utils/stateless.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils 2025-01-24T02:56:03.6629070Z copying torch/nn/utils/parametrize.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils 2025-01-24T02:56:03.6644430Z copying torch/nn/utils/memory_format.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils 2025-01-24T02:56:03.6652390Z copying torch/nn/utils/_per_sample_grad.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils 2025-01-24T02:56:03.6659630Z copying torch/nn/utils/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils 2025-01-24T02:56:03.6667100Z copying torch/nn/utils/weight_norm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils 2025-01-24T02:56:03.6674200Z copying torch/nn/utils/fusion.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils 2025-01-24T02:56:03.6682050Z copying torch/nn/utils/prune.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils 2025-01-24T02:56:03.6704970Z copying torch/nn/utils/parametrizations.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils 2025-01-24T02:56:03.6719150Z copying torch/nn/utils/init.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils 2025-01-24T02:56:03.6725820Z copying torch/nn/utils/_deprecation_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils 2025-01-24T02:56:03.6732650Z copying torch/nn/utils/rnn.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils 2025-01-24T02:56:03.6746650Z copying torch/nn/utils/clip_grad.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils 2025-01-24T02:56:03.6754880Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantizable 2025-01-24T02:56:03.6755610Z copying torch/nn/quantizable/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantizable 2025-01-24T02:56:03.6764220Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic 2025-01-24T02:56:03.6764850Z copying torch/nn/intrinsic/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic 2025-01-24T02:56:03.6777010Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.6777630Z copying torch/nn/modules/upsampling.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.6790820Z copying torch/nn/modules/channelshuffle.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.6797960Z copying torch/nn/modules/instancenorm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.6818720Z copying torch/nn/modules/flatten.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.6829810Z copying torch/nn/modules/batchnorm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.6843660Z copying torch/nn/modules/linear.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.6850720Z copying torch/nn/modules/_functions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.6857530Z copying torch/nn/modules/pooling.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.6876880Z copying torch/nn/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.6883940Z copying torch/nn/modules/distance.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.6891500Z copying torch/nn/modules/container.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.6906540Z copying torch/nn/modules/pixelshuffle.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.6914580Z copying torch/nn/modules/adaptive.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.6922620Z copying torch/nn/modules/loss.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.6953390Z copying torch/nn/modules/activation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.6975810Z copying torch/nn/modules/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.6982990Z copying torch/nn/modules/transformer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.7003320Z copying torch/nn/modules/sparse.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.7017970Z copying torch/nn/modules/module.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.7047760Z copying torch/nn/modules/dropout.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.7056970Z copying torch/nn/modules/conv.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.7088960Z copying torch/nn/modules/lazy.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.7098860Z copying torch/nn/modules/normalization.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.7106950Z copying torch/nn/modules/rnn.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.7127250Z copying torch/nn/modules/padding.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.7140250Z copying torch/nn/modules/fold.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules 2025-01-24T02:56:03.7148900Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/attention/experimental 2025-01-24T02:56:03.7149690Z copying torch/nn/attention/experimental/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/attention/experimental 2025-01-24T02:56:03.7157110Z copying torch/nn/attention/experimental/_paged_attention.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/attention/experimental 2025-01-24T02:56:03.7164630Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/dynamic 2025-01-24T02:56:03.7165280Z copying torch/nn/qat/dynamic/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/dynamic 2025-01-24T02:56:03.7173230Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/modules 2025-01-24T02:56:03.7173940Z copying torch/nn/qat/modules/linear.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/modules 2025-01-24T02:56:03.7186960Z copying torch/nn/qat/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/modules 2025-01-24T02:56:03.7196880Z copying torch/nn/qat/modules/conv.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/modules 2025-01-24T02:56:03.7202810Z copying torch/nn/qat/modules/embedding_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/modules 2025-01-24T02:56:03.7209530Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/dynamic/modules 2025-01-24T02:56:03.7210300Z copying torch/nn/qat/dynamic/modules/linear.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/dynamic/modules 2025-01-24T02:56:03.7216760Z copying torch/nn/qat/dynamic/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/dynamic/modules 2025-01-24T02:56:03.7224670Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/_reference 2025-01-24T02:56:03.7225420Z copying torch/nn/quantized/_reference/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/_reference 2025-01-24T02:56:03.7233340Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/dynamic 2025-01-24T02:56:03.7234060Z copying torch/nn/quantized/dynamic/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/dynamic 2025-01-24T02:56:03.7241310Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules 2025-01-24T02:56:03.7242170Z copying torch/nn/quantized/modules/batchnorm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules 2025-01-24T02:56:03.7248590Z copying torch/nn/quantized/modules/functional_modules.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules 2025-01-24T02:56:03.7254530Z copying torch/nn/quantized/modules/linear.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules 2025-01-24T02:56:03.7261330Z copying torch/nn/quantized/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules 2025-01-24T02:56:03.7269340Z copying torch/nn/quantized/modules/activation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules 2025-01-24T02:56:03.7277440Z copying torch/nn/quantized/modules/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules 2025-01-24T02:56:03.7283490Z copying torch/nn/quantized/modules/dropout.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules 2025-01-24T02:56:03.7290280Z copying torch/nn/quantized/modules/conv.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules 2025-01-24T02:56:03.7297100Z copying torch/nn/quantized/modules/normalization.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules 2025-01-24T02:56:03.7303310Z copying torch/nn/quantized/modules/rnn.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules 2025-01-24T02:56:03.7309470Z copying torch/nn/quantized/modules/embedding_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules 2025-01-24T02:56:03.7318070Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/_reference/modules 2025-01-24T02:56:03.7318910Z copying torch/nn/quantized/_reference/modules/linear.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/_reference/modules 2025-01-24T02:56:03.7325180Z copying torch/nn/quantized/_reference/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/_reference/modules 2025-01-24T02:56:03.7331790Z copying torch/nn/quantized/_reference/modules/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/_reference/modules 2025-01-24T02:56:03.7338790Z copying torch/nn/quantized/_reference/modules/sparse.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/_reference/modules 2025-01-24T02:56:03.7345490Z copying torch/nn/quantized/_reference/modules/conv.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/_reference/modules 2025-01-24T02:56:03.7352210Z copying torch/nn/quantized/_reference/modules/rnn.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/_reference/modules 2025-01-24T02:56:03.7359930Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/dynamic/modules 2025-01-24T02:56:03.7360830Z copying torch/nn/quantized/dynamic/modules/linear.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/dynamic/modules 2025-01-24T02:56:03.7367400Z copying torch/nn/quantized/dynamic/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/dynamic/modules 2025-01-24T02:56:03.7379890Z copying torch/nn/quantized/dynamic/modules/conv.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/dynamic/modules 2025-01-24T02:56:03.7386490Z copying torch/nn/quantized/dynamic/modules/rnn.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/dynamic/modules 2025-01-24T02:56:03.7394580Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights 2025-01-24T02:56:03.7395490Z copying torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights 2025-01-24T02:56:03.7402700Z copying torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights 2025-01-24T02:56:03.7411050Z copying torch/nn/utils/_expanded_weights/conv_expanded_weights.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights 2025-01-24T02:56:03.7420050Z copying torch/nn/utils/_expanded_weights/expanded_weights_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights 2025-01-24T02:56:03.7431430Z copying torch/nn/utils/_expanded_weights/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights 2025-01-24T02:56:03.7434430Z copying torch/nn/utils/_expanded_weights/embedding_expanded_weights.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights 2025-01-24T02:56:03.7441820Z copying torch/nn/utils/_expanded_weights/conv_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights 2025-01-24T02:56:03.7450030Z copying torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights 2025-01-24T02:56:03.7457480Z copying torch/nn/utils/_expanded_weights/linear_expanded_weights.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights 2025-01-24T02:56:03.7464380Z copying torch/nn/utils/_expanded_weights/expanded_weights_impl.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights 2025-01-24T02:56:03.7472520Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantizable/modules 2025-01-24T02:56:03.7473270Z copying torch/nn/quantizable/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantizable/modules 2025-01-24T02:56:03.7481190Z copying torch/nn/quantizable/modules/activation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantizable/modules 2025-01-24T02:56:03.7488780Z copying torch/nn/quantizable/modules/rnn.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantizable/modules 2025-01-24T02:56:03.7497050Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/qat 2025-01-24T02:56:03.7497730Z copying torch/nn/intrinsic/qat/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/qat 2025-01-24T02:56:03.7505660Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized 2025-01-24T02:56:03.7506400Z copying torch/nn/intrinsic/quantized/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized 2025-01-24T02:56:03.7514630Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/modules 2025-01-24T02:56:03.7515370Z copying torch/nn/intrinsic/modules/fused.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/modules 2025-01-24T02:56:03.7523000Z copying torch/nn/intrinsic/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/modules 2025-01-24T02:56:03.7530780Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/qat/modules 2025-01-24T02:56:03.7531580Z copying torch/nn/intrinsic/qat/modules/conv_fused.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/qat/modules 2025-01-24T02:56:03.7538240Z copying torch/nn/intrinsic/qat/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/qat/modules 2025-01-24T02:56:03.7545150Z copying torch/nn/intrinsic/qat/modules/linear_relu.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/qat/modules 2025-01-24T02:56:03.7551980Z copying torch/nn/intrinsic/qat/modules/linear_fused.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/qat/modules 2025-01-24T02:56:03.7562660Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/dynamic 2025-01-24T02:56:03.7563500Z copying torch/nn/intrinsic/quantized/dynamic/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/dynamic 2025-01-24T02:56:03.7573820Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/modules 2025-01-24T02:56:03.7574670Z copying torch/nn/intrinsic/quantized/modules/bn_relu.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/modules 2025-01-24T02:56:03.7581200Z copying torch/nn/intrinsic/quantized/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/modules 2025-01-24T02:56:03.7588110Z copying torch/nn/intrinsic/quantized/modules/conv_relu.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/modules 2025-01-24T02:56:03.7594650Z copying torch/nn/intrinsic/quantized/modules/linear_relu.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/modules 2025-01-24T02:56:03.7602000Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/dynamic/modules 2025-01-24T02:56:03.7602940Z copying torch/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/dynamic/modules 2025-01-24T02:56:03.7609810Z copying torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/dynamic/modules 2025-01-24T02:56:03.7617640Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal 2025-01-24T02:56:03.7618430Z copying torch/onnx/_internal/registration.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal 2025-01-24T02:56:03.7625730Z copying torch/onnx/_internal/io_adapter.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal 2025-01-24T02:56:03.7640400Z copying torch/onnx/_internal/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal 2025-01-24T02:56:03.7641270Z copying torch/onnx/_internal/_lazy_import.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal 2025-01-24T02:56:03.7648490Z copying torch/onnx/_internal/_exporter_legacy.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal 2025-01-24T02:56:03.7663030Z copying torch/onnx/_internal/onnxruntime.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal 2025-01-24T02:56:03.7686270Z copying torch/onnx/_internal/onnx_proto_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal 2025-01-24T02:56:03.7700830Z copying torch/onnx/_internal/jit_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal 2025-01-24T02:56:03.7711600Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx 2025-01-24T02:56:03.7712320Z copying torch/onnx/_internal/fx/registration.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx 2025-01-24T02:56:03.7720260Z copying torch/onnx/_internal/fx/fx_symbolic_graph_extractor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx 2025-01-24T02:56:03.7727570Z copying torch/onnx/_internal/fx/onnxfunction_dispatcher.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx 2025-01-24T02:56:03.7742580Z copying torch/onnx/_internal/fx/decomposition_table.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx 2025-01-24T02:56:03.7750910Z copying torch/onnx/_internal/fx/decomposition_skip.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx 2025-01-24T02:56:03.7759050Z copying torch/onnx/_internal/fx/dynamo_graph_extractor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx 2025-01-24T02:56:03.7766900Z copying torch/onnx/_internal/fx/diagnostics.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx 2025-01-24T02:56:03.7774710Z copying torch/onnx/_internal/fx/type_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx 2025-01-24T02:56:03.7781850Z copying torch/onnx/_internal/fx/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx 2025-01-24T02:56:03.7788620Z copying torch/onnx/_internal/fx/patcher.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx 2025-01-24T02:56:03.7795440Z copying torch/onnx/_internal/fx/_pass.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx 2025-01-24T02:56:03.7803810Z copying torch/onnx/_internal/fx/fx_onnx_interpreter.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx 2025-01-24T02:56:03.7818700Z copying torch/onnx/_internal/fx/serialization.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx 2025-01-24T02:56:03.7827060Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics 2025-01-24T02:56:03.7827840Z copying torch/onnx/_internal/diagnostics/_rules.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics 2025-01-24T02:56:03.7843370Z copying torch/onnx/_internal/diagnostics/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics 2025-01-24T02:56:03.7851000Z copying torch/onnx/_internal/diagnostics/_diagnostic.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics 2025-01-24T02:56:03.7860660Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.7861420Z copying torch/onnx/_internal/exporter/_analysis.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.7869720Z copying torch/onnx/_internal/exporter/_errors.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.7876250Z copying torch/onnx/_internal/exporter/_capture_strategies.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.7882960Z copying torch/onnx/_internal/exporter/_tensors.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.7889650Z copying torch/onnx/_internal/exporter/_dispatching.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.7897030Z copying torch/onnx/_internal/exporter/_isolated.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.7903850Z copying torch/onnx/_internal/exporter/_decomp.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.7910670Z copying torch/onnx/_internal/exporter/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.7911580Z copying torch/onnx/_internal/exporter/_onnx_program.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.7923670Z copying torch/onnx/_internal/exporter/_building.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.7941280Z copying torch/onnx/_internal/exporter/_schemas.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.7955880Z copying torch/onnx/_internal/exporter/_core.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.7977520Z copying torch/onnx/_internal/exporter/_verification.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.7985170Z copying torch/onnx/_internal/exporter/_reporting.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.7991810Z copying torch/onnx/_internal/exporter/_registration.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.7999590Z copying torch/onnx/_internal/exporter/_testing.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.8006880Z copying torch/onnx/_internal/exporter/_compat.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.8014840Z copying torch/onnx/_internal/exporter/_ir_passes.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.8021450Z copying torch/onnx/_internal/exporter/_fx_passes.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter 2025-01-24T02:56:03.8028390Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/analysis 2025-01-24T02:56:03.8029220Z copying torch/onnx/_internal/fx/analysis/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/analysis 2025-01-24T02:56:03.8035820Z copying torch/onnx/_internal/fx/analysis/unsupported_nodes.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/analysis 2025-01-24T02:56:03.8043840Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/passes 2025-01-24T02:56:03.8048630Z copying torch/onnx/_internal/fx/passes/readability.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/passes 2025-01-24T02:56:03.8052470Z copying torch/onnx/_internal/fx/passes/modularization.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/passes 2025-01-24T02:56:03.8067040Z copying torch/onnx/_internal/fx/passes/virtualization.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/passes 2025-01-24T02:56:03.8074410Z copying torch/onnx/_internal/fx/passes/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/passes 2025-01-24T02:56:03.8080670Z copying torch/onnx/_internal/fx/passes/functionalization.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/passes 2025-01-24T02:56:03.8087870Z copying torch/onnx/_internal/fx/passes/decomp.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/passes 2025-01-24T02:56:03.8095000Z copying torch/onnx/_internal/fx/passes/type_promotion.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/passes 2025-01-24T02:56:03.8116050Z copying torch/onnx/_internal/fx/passes/_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/passes 2025-01-24T02:56:03.8125030Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra 2025-01-24T02:56:03.8125900Z copying torch/onnx/_internal/diagnostics/infra/formatter.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra 2025-01-24T02:56:03.8133870Z copying torch/onnx/_internal/diagnostics/infra/decorator.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra 2025-01-24T02:56:03.8141340Z copying torch/onnx/_internal/diagnostics/infra/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra 2025-01-24T02:56:03.8149300Z copying torch/onnx/_internal/diagnostics/infra/context.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra 2025-01-24T02:56:03.8163020Z copying torch/onnx/_internal/diagnostics/infra/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra 2025-01-24T02:56:03.8169830Z copying torch/onnx/_internal/diagnostics/infra/_infra.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra 2025-01-24T02:56:03.8184340Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8185260Z copying torch/onnx/_internal/diagnostics/infra/sarif/_tool.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8205140Z copying torch/onnx/_internal/diagnostics/infra/sarif/_physical_location.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8212420Z copying torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8219770Z copying torch/onnx/_internal/diagnostics/infra/sarif/_special_locations.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8226480Z copying torch/onnx/_internal/diagnostics/infra/sarif/_thread_flow_location.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8233350Z copying torch/onnx/_internal/diagnostics/infra/sarif/_graph_traversal.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8240270Z copying torch/onnx/_internal/diagnostics/infra/sarif/_suppression.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8247710Z copying torch/onnx/_internal/diagnostics/infra/sarif/_artifact.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8254850Z copying torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor_reference.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8262040Z copying torch/onnx/_internal/diagnostics/infra/sarif/_reporting_configuration.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8269140Z copying torch/onnx/_internal/diagnostics/infra/sarif/_address.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8276130Z copying torch/onnx/_internal/diagnostics/infra/sarif/version.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8283570Z copying torch/onnx/_internal/diagnostics/infra/sarif/_node.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8290210Z copying torch/onnx/_internal/diagnostics/infra/sarif/_translation_metadata.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8297670Z copying torch/onnx/_internal/diagnostics/infra/sarif/_artifact_location.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8304910Z copying torch/onnx/_internal/diagnostics/infra/sarif/_conversion.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8311930Z copying torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor_relationship.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8319330Z copying torch/onnx/_internal/diagnostics/infra/sarif/_edge_traversal.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8326210Z copying torch/onnx/_internal/diagnostics/infra/sarif/_graph.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8334160Z copying torch/onnx/_internal/diagnostics/infra/sarif/_exception.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8340930Z copying torch/onnx/_internal/diagnostics/infra/sarif/_external_property_file_reference.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8348830Z copying torch/onnx/_internal/diagnostics/infra/sarif/_tool_component.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8355940Z copying torch/onnx/_internal/diagnostics/infra/sarif/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8363940Z copying torch/onnx/_internal/diagnostics/infra/sarif/_version_control_details.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8371560Z copying torch/onnx/_internal/diagnostics/infra/sarif/_fix.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8378690Z copying torch/onnx/_internal/diagnostics/infra/sarif/_web_request.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8386060Z copying torch/onnx/_internal/diagnostics/infra/sarif/_result.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8393840Z copying torch/onnx/_internal/diagnostics/infra/sarif/_location_relationship.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8401390Z copying torch/onnx/_internal/diagnostics/infra/sarif/_message.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8408800Z copying torch/onnx/_internal/diagnostics/infra/sarif/_sarif_log.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8416130Z copying torch/onnx/_internal/diagnostics/infra/sarif/_artifact_content.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8423570Z copying torch/onnx/_internal/diagnostics/infra/sarif/_external_property_file_references.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8431240Z copying torch/onnx/_internal/diagnostics/infra/sarif/_configuration_override.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8438600Z copying torch/onnx/_internal/diagnostics/infra/sarif/_result_provenance.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8445600Z copying torch/onnx/_internal/diagnostics/infra/sarif/_property_bag.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8452660Z copying torch/onnx/_internal/diagnostics/infra/sarif/_tool_component_reference.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8459900Z copying torch/onnx/_internal/diagnostics/infra/sarif/_replacement.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8467160Z copying torch/onnx/_internal/diagnostics/infra/sarif/_invocation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8474510Z copying torch/onnx/_internal/diagnostics/infra/sarif/_web_response.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8482660Z copying torch/onnx/_internal/diagnostics/infra/sarif/_code_flow.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8489690Z copying torch/onnx/_internal/diagnostics/infra/sarif/_location.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8496930Z copying torch/onnx/_internal/diagnostics/infra/sarif/_region.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8504250Z copying torch/onnx/_internal/diagnostics/infra/sarif/_logical_location.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8511090Z copying torch/onnx/_internal/diagnostics/infra/sarif/_stack.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8517750Z copying torch/onnx/_internal/diagnostics/infra/sarif/_edge.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8525360Z copying torch/onnx/_internal/diagnostics/infra/sarif/_run.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8532990Z copying torch/onnx/_internal/diagnostics/infra/sarif/_run_automation_details.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8540370Z copying torch/onnx/_internal/diagnostics/infra/sarif/_rectangle.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8547920Z copying torch/onnx/_internal/diagnostics/infra/sarif/_multiformat_message_string.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8555810Z copying torch/onnx/_internal/diagnostics/infra/sarif/_stack_frame.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8562360Z copying torch/onnx/_internal/diagnostics/infra/sarif/_thread_flow.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8569850Z copying torch/onnx/_internal/diagnostics/infra/sarif/_artifact_change.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8577290Z copying torch/onnx/_internal/diagnostics/infra/sarif/_external_properties.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8584920Z copying torch/onnx/_internal/diagnostics/infra/sarif/_attachment.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8593510Z copying torch/onnx/_internal/diagnostics/infra/sarif/_notification.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:03.8603270Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_torchlib 2025-01-24T02:56:03.8604150Z copying torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_torchlib 2025-01-24T02:56:03.8610800Z copying torch/onnx/_internal/exporter/_torchlib/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_torchlib 2025-01-24T02:56:03.8619020Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_torchlib/ops 2025-01-24T02:56:03.8619900Z copying torch/onnx/_internal/exporter/_torchlib/ops/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_torchlib/ops 2025-01-24T02:56:03.8627210Z copying torch/onnx/_internal/exporter/_torchlib/ops/hop.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_torchlib/ops 2025-01-24T02:56:03.8635370Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_vendor/packaging 2025-01-24T02:56:03.8636170Z copying torch/_vendor/packaging/version.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_vendor/packaging 2025-01-24T02:56:03.8644580Z copying torch/_vendor/packaging/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_vendor/packaging 2025-01-24T02:56:03.8652740Z copying torch/_vendor/packaging/_structures.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_vendor/packaging 2025-01-24T02:56:03.8660930Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/cpu/amp 2025-01-24T02:56:03.8661530Z copying torch/cpu/amp/autocast_mode.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cpu/amp 2025-01-24T02:56:03.8673150Z copying torch/cpu/amp/grad_scaler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cpu/amp 2025-01-24T02:56:03.8676510Z copying torch/cpu/amp/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cpu/amp 2025-01-24T02:56:03.8684230Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tensor 2025-01-24T02:56:03.8684930Z copying torch/distributed/_tensor/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tensor 2025-01-24T02:56:03.8694210Z copying torch/distributed/_tensor/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tensor 2025-01-24T02:56:03.8701560Z copying torch/distributed/_tensor/placement_types.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tensor 2025-01-24T02:56:03.8709530Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_sharding_spec 2025-01-24T02:56:03.8710410Z copying torch/distributed/_sharding_spec/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_sharding_spec 2025-01-24T02:56:03.8719310Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/launcher 2025-01-24T02:56:03.8720040Z copying torch/distributed/launcher/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/launcher 2025-01-24T02:56:03.8729020Z copying torch/distributed/launcher/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/launcher 2025-01-24T02:56:03.8740520Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8741300Z copying torch/distributed/checkpoint/logging_handlers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8749050Z copying torch/distributed/checkpoint/format_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8755680Z copying torch/distributed/checkpoint/planner.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8764400Z copying torch/distributed/checkpoint/_dedup_save_plans.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8771750Z copying torch/distributed/checkpoint/state_dict.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8793220Z copying torch/distributed/checkpoint/metadata.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8801430Z copying torch/distributed/checkpoint/_storage_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8809560Z copying torch/distributed/checkpoint/_version.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8816500Z copying torch/distributed/checkpoint/_traverse.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8827960Z copying torch/distributed/checkpoint/_sharded_tensor_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8838160Z copying torch/distributed/checkpoint/_dedup_tensors.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8846910Z copying torch/distributed/checkpoint/filesystem.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8860280Z copying torch/distributed/checkpoint/state_dict_saver.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8868310Z copying torch/distributed/checkpoint/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8874900Z copying torch/distributed/checkpoint/logger.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8882020Z copying torch/distributed/checkpoint/resharding.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8888640Z copying torch/distributed/checkpoint/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8895480Z copying torch/distributed/checkpoint/state_dict_loader.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8902390Z copying torch/distributed/checkpoint/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8910670Z copying torch/distributed/checkpoint/default_planner.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8924020Z copying torch/distributed/checkpoint/storage.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8931640Z copying torch/distributed/checkpoint/planner_helpers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8939470Z copying torch/distributed/checkpoint/optimizer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8948030Z copying torch/distributed/checkpoint/staging.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8959170Z copying torch/distributed/checkpoint/_checkpointer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8968740Z copying torch/distributed/checkpoint/stateful.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8975090Z copying torch/distributed/checkpoint/_fsspec_filesystem.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8981570Z copying torch/distributed/checkpoint/_extension.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8988150Z copying torch/distributed/checkpoint/_nested_dict.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint 2025-01-24T02:56:03.8995290Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_sharded_tensor 2025-01-24T02:56:03.8996080Z copying torch/distributed/_sharded_tensor/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_sharded_tensor 2025-01-24T02:56:03.9003220Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn 2025-01-24T02:56:03.9003880Z copying torch/distributed/nn/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn 2025-01-24T02:56:03.9010660Z copying torch/distributed/nn/functional.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn 2025-01-24T02:56:03.9018790Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic 2025-01-24T02:56:03.9019490Z copying torch/distributed/elastic/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic 2025-01-24T02:56:03.9026310Z copying torch/distributed/elastic/control_plane.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic 2025-01-24T02:56:03.9033870Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/autograd 2025-01-24T02:56:03.9034590Z copying torch/distributed/autograd/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/autograd 2025-01-24T02:56:03.9042720Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining 2025-01-24T02:56:03.9043460Z copying torch/distributed/pipelining/_IR.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining 2025-01-24T02:56:03.9067010Z copying torch/distributed/pipelining/_unflatten.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining 2025-01-24T02:56:03.9074390Z copying torch/distributed/pipelining/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining 2025-01-24T02:56:03.9081350Z copying torch/distributed/pipelining/microbatch.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining 2025-01-24T02:56:03.9088690Z copying torch/distributed/pipelining/_backward.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining 2025-01-24T02:56:03.9096920Z copying torch/distributed/pipelining/_debug.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining 2025-01-24T02:56:03.9103910Z copying torch/distributed/pipelining/stage.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining 2025-01-24T02:56:03.9131460Z copying torch/distributed/pipelining/schedules.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining 2025-01-24T02:56:03.9166880Z copying torch/distributed/pipelining/_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining 2025-01-24T02:56:03.9175710Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms 2025-01-24T02:56:03.9176450Z copying torch/distributed/algorithms/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms 2025-01-24T02:56:03.9183740Z copying torch/distributed/algorithms/join.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms 2025-01-24T02:56:03.9193530Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:03.9194270Z copying torch/distributed/optim/_deprecation_warning.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:03.9201620Z copying torch/distributed/optim/named_optimizer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:03.9209620Z copying torch/distributed/optim/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:03.9216620Z copying torch/distributed/optim/functional_sgd.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:03.9223440Z copying torch/distributed/optim/functional_adagrad.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:03.9230410Z copying torch/distributed/optim/functional_adamw.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:03.9237080Z copying torch/distributed/optim/apply_optimizer_in_backward.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:03.9244020Z copying torch/distributed/optim/functional_adam.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:03.9251080Z copying torch/distributed/optim/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:03.9258080Z copying torch/distributed/optim/functional_rprop.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:03.9474950Z copying torch/distributed/optim/post_localSGD_optimizer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:03.9931590Z copying torch/distributed/optim/optimizer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:03.9940750Z copying torch/distributed/optim/functional_adadelta.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:03.9948360Z copying torch/distributed/optim/functional_rmsprop.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:03.9956440Z copying torch/distributed/optim/zero_redundancy_optimizer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:03.9982020Z copying torch/distributed/optim/functional_adamax.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:03.9992790Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_composable 2025-01-24T02:56:03.9994080Z copying torch/distributed/_composable/replicate.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_composable 2025-01-24T02:56:04.0003350Z copying torch/distributed/_composable/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_composable 2025-01-24T02:56:04.0012300Z copying torch/distributed/_composable/contract.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_composable 2025-01-24T02:56:04.0019680Z copying torch/distributed/_composable/checkpoint_activation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_composable 2025-01-24T02:56:04.0029480Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools 2025-01-24T02:56:04.0030890Z copying torch/distributed/_tools/mem_tracker.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools 2025-01-24T02:56:04.0047890Z copying torch/distributed/_tools/ilp_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools 2025-01-24T02:56:04.0058140Z copying torch/distributed/_tools/runtime_estimator.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools 2025-01-24T02:56:04.0078590Z copying torch/distributed/_tools/fsdp2_mem_tracker.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools 2025-01-24T02:56:04.0096090Z copying torch/distributed/_tools/sac_estimator.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools 2025-01-24T02:56:04.0174000Z copying torch/distributed/_tools/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools 2025-01-24T02:56:04.0182500Z copying torch/distributed/_tools/memory_tracker.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools 2025-01-24T02:56:04.0194650Z copying torch/distributed/_tools/sac_ilp.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools 2025-01-24T02:56:04.0204390Z copying torch/distributed/_tools/mod_tracker.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools 2025-01-24T02:56:04.0215740Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0216640Z copying torch/distributed/fsdp/_exec_order_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0225660Z copying torch/distributed/fsdp/_traversal_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0232730Z copying torch/distributed/fsdp/sharded_grad_scaler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0240940Z copying torch/distributed/fsdp/_state_dict_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0261860Z copying torch/distributed/fsdp/fully_sharded_data_parallel.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0293710Z copying torch/distributed/fsdp/_wrap_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0302200Z copying torch/distributed/fsdp/_optim_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0332840Z copying torch/distributed/fsdp/_trace_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0341670Z copying torch/distributed/fsdp/_common_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0355260Z copying torch/distributed/fsdp/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0361690Z copying torch/distributed/fsdp/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0378150Z copying torch/distributed/fsdp/_limiter_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0386040Z copying torch/distributed/fsdp/_dynamo_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0392200Z copying torch/distributed/fsdp/_unshard_param_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0400500Z copying torch/distributed/fsdp/_shard_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0409090Z copying torch/distributed/fsdp/wrap.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0422520Z copying torch/distributed/fsdp/_runtime_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0449180Z copying torch/distributed/fsdp/_fsdp_extensions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0455830Z copying torch/distributed/fsdp/_init_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0472130Z copying torch/distributed/fsdp/_debug_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0478640Z copying torch/distributed/fsdp/_flat_param.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp 2025-01-24T02:56:04.0524190Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard 2025-01-24T02:56:04.0524900Z copying torch/distributed/_shard/metadata.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard 2025-01-24T02:56:04.0537720Z copying torch/distributed/_shard/op_registry_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard 2025-01-24T02:56:04.0546420Z copying torch/distributed/_shard/sharder.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard 2025-01-24T02:56:04.0553120Z copying torch/distributed/_shard/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard 2025-01-24T02:56:04.0559940Z copying torch/distributed/_shard/common_op_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard 2025-01-24T02:56:04.0571450Z copying torch/distributed/_shard/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard 2025-01-24T02:56:04.0579920Z copying torch/distributed/_shard/_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard 2025-01-24T02:56:04.0586140Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_symmetric_memory 2025-01-24T02:56:04.0586970Z copying torch/distributed/_symmetric_memory/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_symmetric_memory 2025-01-24T02:56:04.0646040Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor 2025-01-24T02:56:04.0646780Z copying torch/distributed/tensor/_shards_wrapper.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor 2025-01-24T02:56:04.0654110Z copying torch/distributed/tensor/_redistribute.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor 2025-01-24T02:56:04.0662130Z copying torch/distributed/tensor/_sharding_prop.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor 2025-01-24T02:56:04.0677780Z copying torch/distributed/tensor/_collective_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor 2025-01-24T02:56:04.0685380Z copying torch/distributed/tensor/_api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor 2025-01-24T02:56:04.0706280Z copying torch/distributed/tensor/_dtensor_spec.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor 2025-01-24T02:56:04.0714730Z copying torch/distributed/tensor/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor 2025-01-24T02:56:04.0721290Z copying torch/distributed/tensor/_dispatch.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor 2025-01-24T02:56:04.0745130Z copying torch/distributed/tensor/_random.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor 2025-01-24T02:56:04.0753790Z copying torch/distributed/tensor/_op_schema.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor 2025-01-24T02:56:04.0770980Z copying torch/distributed/tensor/placement_types.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor 2025-01-24T02:56:04.0784970Z copying torch/distributed/tensor/_tp_conv.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor 2025-01-24T02:56:04.0792740Z copying torch/distributed/tensor/device_mesh.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor 2025-01-24T02:56:04.0798250Z copying torch/distributed/tensor/_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor 2025-01-24T02:56:04.0808200Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc 2025-01-24T02:56:04.0808910Z copying torch/distributed/rpc/functions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc 2025-01-24T02:56:04.0816280Z copying torch/distributed/rpc/options.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc 2025-01-24T02:56:04.0826660Z copying torch/distributed/rpc/internal.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc 2025-01-24T02:56:04.0834690Z copying torch/distributed/rpc/constants.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc 2025-01-24T02:56:04.0839730Z copying torch/distributed/rpc/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc 2025-01-24T02:56:04.0853130Z copying torch/distributed/rpc/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc 2025-01-24T02:56:04.0864740Z copying torch/distributed/rpc/rref_proxy.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc 2025-01-24T02:56:04.0871800Z copying torch/distributed/rpc/server_process_global_profiler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc 2025-01-24T02:56:04.0879560Z copying torch/distributed/rpc/_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc 2025-01-24T02:56:04.0885520Z copying torch/distributed/rpc/backend_registry.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc 2025-01-24T02:56:04.0893630Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn/jit 2025-01-24T02:56:04.0894370Z copying torch/distributed/nn/jit/instantiator.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn/jit 2025-01-24T02:56:04.0900190Z copying torch/distributed/nn/jit/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn/jit 2025-01-24T02:56:04.0901750Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn/api 2025-01-24T02:56:04.0902480Z copying torch/distributed/nn/api/remote_module.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn/api 2025-01-24T02:56:04.0916070Z copying torch/distributed/nn/api/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn/api 2025-01-24T02:56:04.0917650Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn/jit/templates 2025-01-24T02:56:04.0918490Z copying torch/distributed/nn/jit/templates/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn/jit/templates 2025-01-24T02:56:04.0919600Z copying torch/distributed/nn/jit/templates/remote_module_template.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn/jit/templates 2025-01-24T02:56:04.0925750Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/metrics 2025-01-24T02:56:04.0926560Z copying torch/distributed/elastic/metrics/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/metrics 2025-01-24T02:56:04.0932790Z copying torch/distributed/elastic/metrics/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/metrics 2025-01-24T02:56:04.0940910Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous 2025-01-24T02:56:04.0941920Z copying torch/distributed/elastic/rendezvous/etcd_store.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous 2025-01-24T02:56:04.0952310Z copying torch/distributed/elastic/rendezvous/registry.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous 2025-01-24T02:56:04.0958800Z copying torch/distributed/elastic/rendezvous/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous 2025-01-24T02:56:04.0964560Z copying torch/distributed/elastic/rendezvous/_etcd_stub.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous 2025-01-24T02:56:04.0970190Z copying torch/distributed/elastic/rendezvous/etcd_rendezvous.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous 2025-01-24T02:56:04.0984440Z copying torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous 2025-01-24T02:56:04.0992040Z copying torch/distributed/elastic/rendezvous/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous 2025-01-24T02:56:04.1003680Z copying torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous 2025-01-24T02:56:04.1012000Z copying torch/distributed/elastic/rendezvous/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous 2025-01-24T02:56:04.1019150Z copying torch/distributed/elastic/rendezvous/dynamic_rendezvous.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous 2025-01-24T02:56:04.1032690Z copying torch/distributed/elastic/rendezvous/etcd_server.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous 2025-01-24T02:56:04.1040820Z copying torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous 2025-01-24T02:56:04.1047840Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing 2025-01-24T02:56:04.1048760Z copying torch/distributed/elastic/multiprocessing/tail_log.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing 2025-01-24T02:56:04.1055150Z copying torch/distributed/elastic/multiprocessing/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing 2025-01-24T02:56:04.1061840Z copying torch/distributed/elastic/multiprocessing/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing 2025-01-24T02:56:04.1080290Z copying torch/distributed/elastic/multiprocessing/redirects.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing 2025-01-24T02:56:04.1087890Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/timer 2025-01-24T02:56:04.1088710Z copying torch/distributed/elastic/timer/local_timer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/timer 2025-01-24T02:56:04.1096410Z copying torch/distributed/elastic/timer/debug_info_logging.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/timer 2025-01-24T02:56:04.1103160Z copying torch/distributed/elastic/timer/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/timer 2025-01-24T02:56:04.1109150Z copying torch/distributed/elastic/timer/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/timer 2025-01-24T02:56:04.1115140Z copying torch/distributed/elastic/timer/file_based_local_timer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/timer 2025-01-24T02:56:04.1123940Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils 2025-01-24T02:56:04.1124720Z copying torch/distributed/elastic/utils/store.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils 2025-01-24T02:56:04.1131380Z copying torch/distributed/elastic/utils/logging.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils 2025-01-24T02:56:04.1137400Z copying torch/distributed/elastic/utils/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils 2025-01-24T02:56:04.1145130Z copying torch/distributed/elastic/utils/log_level.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils 2025-01-24T02:56:04.1151430Z copying torch/distributed/elastic/utils/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils 2025-01-24T02:56:04.1157650Z copying torch/distributed/elastic/utils/distributed.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils 2025-01-24T02:56:04.1164250Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/agent 2025-01-24T02:56:04.1165020Z copying torch/distributed/elastic/agent/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/agent 2025-01-24T02:56:04.1166840Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/events 2025-01-24T02:56:04.1167650Z copying torch/distributed/elastic/events/handlers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/events 2025-01-24T02:56:04.1174590Z copying torch/distributed/elastic/events/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/events 2025-01-24T02:56:04.1182800Z copying torch/distributed/elastic/events/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/events 2025-01-24T02:56:04.1191110Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-01-24T02:56:04.1192300Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-01-24T02:56:04.1198400Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-01-24T02:56:04.1205310Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-01-24T02:56:04.1212510Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/errors 2025-01-24T02:56:04.1213500Z copying torch/distributed/elastic/multiprocessing/errors/handlers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/errors 2025-01-24T02:56:04.1218590Z copying torch/distributed/elastic/multiprocessing/errors/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/errors 2025-01-24T02:56:04.1229590Z copying torch/distributed/elastic/multiprocessing/errors/error_handler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/errors 2025-01-24T02:56:04.1238640Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils/data 2025-01-24T02:56:04.1239560Z copying torch/distributed/elastic/utils/data/elastic_distributed_sampler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils/data 2025-01-24T02:56:04.1246090Z copying torch/distributed/elastic/utils/data/cycling_iterator.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils/data 2025-01-24T02:56:04.1252020Z copying torch/distributed/elastic/utils/data/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils/data 2025-01-24T02:56:04.1259740Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/agent/server 2025-01-24T02:56:04.1260660Z copying torch/distributed/elastic/agent/server/health_check_server.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/agent/server 2025-01-24T02:56:04.1267550Z copying torch/distributed/elastic/agent/server/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/agent/server 2025-01-24T02:56:04.1273220Z copying torch/distributed/elastic/agent/server/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/agent/server 2025-01-24T02:56:04.1287170Z copying torch/distributed/elastic/agent/server/local_elastic_agent.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/agent/server 2025-01-24T02:56:04.1306250Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_comm_hooks 2025-01-24T02:56:04.1307120Z copying torch/distributed/algorithms/_comm_hooks/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_comm_hooks 2025-01-24T02:56:04.1313680Z copying torch/distributed/algorithms/_comm_hooks/default_hooks.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_comm_hooks 2025-01-24T02:56:04.1325240Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_checkpoint 2025-01-24T02:56:04.1326180Z copying torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_checkpoint 2025-01-24T02:56:04.1336430Z copying torch/distributed/algorithms/_checkpoint/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_checkpoint 2025-01-24T02:56:04.1338400Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/model_averaging 2025-01-24T02:56:04.1339340Z copying torch/distributed/algorithms/model_averaging/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/model_averaging 2025-01-24T02:56:04.1340490Z copying torch/distributed/algorithms/model_averaging/averagers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/model_averaging 2025-01-24T02:56:04.1348800Z copying torch/distributed/algorithms/model_averaging/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/model_averaging 2025-01-24T02:56:04.1355450Z copying torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/model_averaging 2025-01-24T02:56:04.1364350Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:04.1365320Z copying torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:04.1372820Z copying torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:04.1379670Z copying torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:04.1387010Z copying torch/distributed/algorithms/ddp_comm_hooks/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:04.1394060Z copying torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:04.1402160Z copying torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:04.1419420Z copying torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:04.1426030Z copying torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:04.1434610Z copying torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:04.1450070Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_optimizer_overlap 2025-01-24T02:56:04.1451070Z copying torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_optimizer_overlap 2025-01-24T02:56:04.1457380Z copying torch/distributed/algorithms/_optimizer_overlap/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_optimizer_overlap 2025-01-24T02:56:04.1465580Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_quantization 2025-01-24T02:56:04.1466510Z copying torch/distributed/algorithms/_quantization/quantization.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_quantization 2025-01-24T02:56:04.1474500Z copying torch/distributed/algorithms/_quantization/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_quantization 2025-01-24T02:56:04.1475830Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_composable/fsdp 2025-01-24T02:56:04.1476750Z copying torch/distributed/_composable/fsdp/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_composable/fsdp 2025-01-24T02:56:04.1483170Z copying torch/distributed/_composable/fsdp/fully_shard.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_composable/fsdp 2025-01-24T02:56:04.1491560Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:04.1492380Z copying torch/distributed/fsdp/_fully_shard/_fsdp_api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:04.1502250Z copying torch/distributed/fsdp/_fully_shard/_fsdp_common.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:04.1510400Z copying torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:04.1536760Z copying torch/distributed/fsdp/_fully_shard/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:04.1543300Z copying torch/distributed/fsdp/_fully_shard/_fsdp_param.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:04.1554940Z copying torch/distributed/fsdp/_fully_shard/_fsdp_init.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:04.1562410Z copying torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:04.1576840Z copying torch/distributed/fsdp/_fully_shard/_fully_shard.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:04.1592650Z copying torch/distributed/fsdp/_fully_shard/_fsdp_state.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:04.1606200Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/checkpoint 2025-01-24T02:56:04.1607010Z copying torch/distributed/_shard/checkpoint/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/checkpoint 2025-01-24T02:56:04.1614640Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:04.1615530Z copying torch/distributed/_shard/sharded_tensor/logging_handlers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:04.1622960Z copying torch/distributed/_shard/sharded_tensor/metadata.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:04.1633310Z copying torch/distributed/_shard/sharded_tensor/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:04.1646090Z copying torch/distributed/_shard/sharded_tensor/logger.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:04.1652250Z copying torch/distributed/_shard/sharded_tensor/reshard.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:04.1659420Z copying torch/distributed/_shard/sharded_tensor/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:04.1678610Z copying torch/distributed/_shard/sharded_tensor/shard.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:04.1685860Z copying torch/distributed/_shard/sharded_tensor/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:04.1700880Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_plan 2025-01-24T02:56:04.1701730Z copying torch/distributed/_shard/sharding_plan/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_plan 2025-01-24T02:56:04.1707540Z copying torch/distributed/_shard/sharding_plan/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_plan 2025-01-24T02:56:04.1715200Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec 2025-01-24T02:56:04.1716160Z copying torch/distributed/_shard/sharding_spec/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec 2025-01-24T02:56:04.1724220Z copying torch/distributed/_shard/sharding_spec/_internals.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec 2025-01-24T02:56:04.1730170Z copying torch/distributed/_shard/sharding_spec/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec 2025-01-24T02:56:04.1738010Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec 2025-01-24T02:56:04.1748160Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_optim 2025-01-24T02:56:04.1749110Z copying torch/distributed/_shard/sharded_optim/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_optim 2025-01-24T02:56:04.1755010Z copying torch/distributed/_shard/sharded_optim/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_optim 2025-01-24T02:56:04.1763670Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/_ops 2025-01-24T02:56:04.1764600Z copying torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/_ops 2025-01-24T02:56:04.1770500Z copying torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/_ops 2025-01-24T02:56:04.1782900Z copying torch/distributed/_shard/sharded_tensor/_ops/_common.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/_ops 2025-01-24T02:56:04.1792660Z copying torch/distributed/_shard/sharded_tensor/_ops/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/_ops 2025-01-24T02:56:04.1800570Z copying torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/_ops 2025-01-24T02:56:04.1807330Z copying torch/distributed/_shard/sharded_tensor/_ops/init.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/_ops 2025-01-24T02:56:04.1815720Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-01-24T02:56:04.1816870Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-01-24T02:56:04.1826750Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-01-24T02:56:04.1834220Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-01-24T02:56:04.1835620Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-01-24T02:56:04.1848910Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/experimental 2025-01-24T02:56:04.1849780Z copying torch/distributed/tensor/experimental/_attention.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/experimental 2025-01-24T02:56:04.1866320Z copying torch/distributed/tensor/experimental/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/experimental 2025-01-24T02:56:04.1873500Z copying torch/distributed/tensor/experimental/_tp_transform.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/experimental 2025-01-24T02:56:04.1889590Z copying torch/distributed/tensor/experimental/_register_sharding.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/experimental 2025-01-24T02:56:04.1897170Z copying torch/distributed/tensor/experimental/_func_map.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/experimental 2025-01-24T02:56:04.1906170Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel 2025-01-24T02:56:04.1906960Z copying torch/distributed/tensor/parallel/ddp.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel 2025-01-24T02:56:04.1913270Z copying torch/distributed/tensor/parallel/fsdp.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel 2025-01-24T02:56:04.1920840Z copying torch/distributed/tensor/parallel/style.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel 2025-01-24T02:56:04.2157970Z copying torch/distributed/tensor/parallel/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel 2025-01-24T02:56:04.2165340Z copying torch/distributed/tensor/parallel/api.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel 2025-01-24T02:56:04.2173880Z copying torch/distributed/tensor/parallel/loss.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel 2025-01-24T02:56:04.2187230Z copying torch/distributed/tensor/parallel/input_reshard.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel 2025-01-24T02:56:04.2193830Z copying torch/distributed/tensor/parallel/_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel 2025-01-24T02:56:04.2201210Z copying torch/distributed/tensor/parallel/_data_parallel_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel 2025-01-24T02:56:04.2416850Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops 2025-01-24T02:56:04.2417790Z copying torch/distributed/tensor/_ops/_einsum_strategy.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops 2025-01-24T02:56:04.2426970Z copying torch/distributed/tensor/_ops/_embedding_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops 2025-01-24T02:56:04.2462800Z copying torch/distributed/tensor/_ops/_tensor_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops 2025-01-24T02:56:04.2480710Z copying torch/distributed/tensor/_ops/_experimental_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops 2025-01-24T02:56:04.2488620Z copying torch/distributed/tensor/_ops/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops 2025-01-24T02:56:04.2496530Z copying torch/distributed/tensor/_ops/_conv_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops 2025-01-24T02:56:04.2503300Z copying torch/distributed/tensor/_ops/_pointwise_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops 2025-01-24T02:56:04.2518910Z copying torch/distributed/tensor/_ops/_matrix_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops 2025-01-24T02:56:04.2532040Z copying torch/distributed/tensor/_ops/_math_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops 2025-01-24T02:56:04.2552690Z copying torch/distributed/tensor/_ops/_common_rules.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops 2025-01-24T02:56:04.2569780Z copying torch/distributed/tensor/_ops/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops 2025-01-24T02:56:04.2582660Z copying torch/distributed/tensor/_ops/_random_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops 2025-01-24T02:56:04.2590140Z copying torch/distributed/tensor/_ops/_view_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops 2025-01-24T02:56:04.2625410Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/debug 2025-01-24T02:56:04.2626240Z copying torch/distributed/tensor/debug/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/debug 2025-01-24T02:56:04.2636410Z copying torch/distributed/tensor/debug/_op_coverage.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/debug 2025-01-24T02:56:04.2643190Z copying torch/distributed/tensor/debug/_visualize_sharding.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/debug 2025-01-24T02:56:04.2650680Z copying torch/distributed/tensor/debug/_comm_mode.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/debug 2025-01-24T02:56:04.2665450Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc/_testing 2025-01-24T02:56:04.2666230Z copying torch/distributed/rpc/_testing/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc/_testing 2025-01-24T02:56:04.2673340Z copying torch/distributed/rpc/_testing/faulty_agent_backend_registry.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc/_testing 2025-01-24T02:56:04.2680810Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/_functions 2025-01-24T02:56:04.2681520Z copying torch/autograd/_functions/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/_functions 2025-01-24T02:56:04.2687430Z copying torch/autograd/_functions/tensor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/_functions 2025-01-24T02:56:04.2693650Z copying torch/autograd/_functions/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/_functions 2025-01-24T02:56:04.2702890Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2703570Z copying torch/fx/experimental/validator.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2717260Z copying torch/fx/experimental/meta_tracer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2724780Z copying torch/fx/experimental/partitioner_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2737210Z copying torch/fx/experimental/recording.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2747030Z copying torch/fx/experimental/rewriter.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2754590Z copying torch/fx/experimental/const_fold.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2762250Z copying torch/fx/experimental/accelerator_partitioner.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2775940Z copying torch/fx/experimental/normalize.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2783710Z copying torch/fx/experimental/_constant_symnode.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2790460Z copying torch/fx/experimental/optimization.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2805290Z copying torch/fx/experimental/refinement_types.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2812130Z copying torch/fx/experimental/graph_gradual_typechecker.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2826220Z copying torch/fx/experimental/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2827120Z copying torch/fx/experimental/sym_node.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2848310Z copying torch/fx/experimental/unify_refinements.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2855580Z copying torch/fx/experimental/merge_matmul.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2862660Z copying torch/fx/experimental/debug.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2869620Z copying torch/fx/experimental/schema_type_annotation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2876800Z copying torch/fx/experimental/symbolic_shapes.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2942380Z copying torch/fx/experimental/_config.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2949810Z copying torch/fx/experimental/_backward_state.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2956140Z copying torch/fx/experimental/proxy_tensor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental 2025-01-24T02:56:04.2985570Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.2986190Z copying torch/fx/passes/net_min_base.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3000030Z copying torch/fx/passes/param_fetch.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3006640Z copying torch/fx/passes/tools_common.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3014070Z copying torch/fx/passes/split_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3021020Z copying torch/fx/passes/shape_prop.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3028200Z copying torch/fx/passes/split_module.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3042080Z copying torch/fx/passes/runtime_assert.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3061160Z copying torch/fx/passes/reinplace.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3074410Z copying torch/fx/passes/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3081130Z copying torch/fx/passes/pass_manager.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3094880Z copying torch/fx/passes/_tensorify_python_scalars.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3106840Z copying torch/fx/passes/fake_tensor_prop.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3114170Z copying torch/fx/passes/operator_support.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3123660Z copying torch/fx/passes/annotate_getitem_nodes.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3131800Z copying torch/fx/passes/graph_manipulation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3138320Z copying torch/fx/passes/graph_drawer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3151280Z copying torch/fx/passes/splitter_base.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3164610Z copying torch/fx/passes/graph_transform_observer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes 2025-01-24T02:56:04.3173380Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification 2025-01-24T02:56:04.3174220Z copying torch/fx/experimental/unification/dispatch.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification 2025-01-24T02:56:04.3180430Z copying torch/fx/experimental/unification/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification 2025-01-24T02:56:04.3187240Z copying torch/fx/experimental/unification/core.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification 2025-01-24T02:56:04.3194050Z copying torch/fx/experimental/unification/unification_tools.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification 2025-01-24T02:56:04.3201490Z copying torch/fx/experimental/unification/variable.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification 2025-01-24T02:56:04.3208160Z copying torch/fx/experimental/unification/more.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification 2025-01-24T02:56:04.3214370Z copying torch/fx/experimental/unification/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification 2025-01-24T02:56:04.3220700Z copying torch/fx/experimental/unification/match.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification 2025-01-24T02:56:04.3228860Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:04.3229810Z copying torch/fx/experimental/migrate_gradual_types/constraint.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:04.3243660Z copying torch/fx/experimental/migrate_gradual_types/constraint_transformation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:04.3257630Z copying torch/fx/experimental/migrate_gradual_types/util.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:04.3265260Z copying torch/fx/experimental/migrate_gradual_types/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:04.3266380Z copying torch/fx/experimental/migrate_gradual_types/operation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:04.3273960Z copying torch/fx/experimental/migrate_gradual_types/transform_to_z3.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:04.3281270Z copying torch/fx/experimental/migrate_gradual_types/z3_types.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:04.3289140Z copying torch/fx/experimental/migrate_gradual_types/constraint_generator.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:04.3311130Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/multipledispatch 2025-01-24T02:56:04.3312180Z copying torch/fx/experimental/unification/multipledispatch/dispatcher.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/multipledispatch 2025-01-24T02:56:04.3321120Z copying torch/fx/experimental/unification/multipledispatch/variadic.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/multipledispatch 2025-01-24T02:56:04.3329380Z copying torch/fx/experimental/unification/multipledispatch/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/multipledispatch 2025-01-24T02:56:04.3336100Z copying torch/fx/experimental/unification/multipledispatch/core.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/multipledispatch 2025-01-24T02:56:04.3342800Z copying torch/fx/experimental/unification/multipledispatch/conflict.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/multipledispatch 2025-01-24T02:56:04.3350700Z copying torch/fx/experimental/unification/multipledispatch/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/multipledispatch 2025-01-24T02:56:04.3359220Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/infra 2025-01-24T02:56:04.3360040Z copying torch/fx/passes/infra/partitioner.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/infra 2025-01-24T02:56:04.3373500Z copying torch/fx/passes/infra/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/infra 2025-01-24T02:56:04.3380390Z copying torch/fx/passes/infra/pass_base.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/infra 2025-01-24T02:56:04.3387620Z copying torch/fx/passes/infra/pass_manager.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/infra 2025-01-24T02:56:04.3395430Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/backends 2025-01-24T02:56:04.3396140Z copying torch/fx/passes/backends/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/backends 2025-01-24T02:56:04.3397160Z copying torch/fx/passes/backends/cudagraphs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/backends 2025-01-24T02:56:04.3406150Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/tests 2025-01-24T02:56:04.3406810Z copying torch/fx/passes/tests/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/tests 2025-01-24T02:56:04.3407740Z copying torch/fx/passes/tests/test_pass_manager.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/tests 2025-01-24T02:56:04.3416860Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/utils 2025-01-24T02:56:04.3417570Z copying torch/fx/passes/utils/source_matcher_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/utils 2025-01-24T02:56:04.3424640Z copying torch/fx/passes/utils/matcher_with_name_node_map_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/utils 2025-01-24T02:56:04.3432560Z copying torch/fx/passes/utils/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/utils 2025-01-24T02:56:04.3439860Z copying torch/fx/passes/utils/common.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/utils 2025-01-24T02:56:04.3446900Z copying torch/fx/passes/utils/matcher_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/utils 2025-01-24T02:56:04.3461360Z copying torch/fx/passes/utils/fuser_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/utils 2025-01-24T02:56:04.3469580Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/dialect 2025-01-24T02:56:04.3470280Z copying torch/fx/passes/dialect/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/dialect 2025-01-24T02:56:04.3472030Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/dialect/common 2025-01-24T02:56:04.3477300Z copying torch/fx/passes/dialect/common/cse_pass.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/dialect/common 2025-01-24T02:56:04.3480430Z copying torch/fx/passes/dialect/common/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/dialect/common 2025-01-24T02:56:04.3482220Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/amp 2025-01-24T02:56:04.3482820Z copying torch/cuda/amp/autocast_mode.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/amp 2025-01-24T02:56:04.3490100Z copying torch/cuda/amp/grad_scaler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/amp 2025-01-24T02:56:04.3497480Z copying torch/cuda/amp/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/amp 2025-01-24T02:56:04.3505220Z copying torch/cuda/amp/common.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/amp 2025-01-24T02:56:04.3513390Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends/opt_einsum 2025-01-24T02:56:04.3514090Z copying torch/backends/opt_einsum/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/opt_einsum 2025-01-24T02:56:04.3522820Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends/mha 2025-01-24T02:56:04.3523440Z copying torch/backends/mha/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/mha 2025-01-24T02:56:04.3531610Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends/nnpack 2025-01-24T02:56:04.3532270Z copying torch/backends/nnpack/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/nnpack 2025-01-24T02:56:04.3540310Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends/mps 2025-01-24T02:56:04.3540940Z copying torch/backends/mps/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/mps 2025-01-24T02:56:04.3548330Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends/cpu 2025-01-24T02:56:04.3548950Z copying torch/backends/cpu/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/cpu 2025-01-24T02:56:04.3557320Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends/_coreml 2025-01-24T02:56:04.3558010Z copying torch/backends/_coreml/preprocess.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/_coreml 2025-01-24T02:56:04.3565550Z copying torch/backends/_coreml/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/_coreml 2025-01-24T02:56:04.3567210Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends/cuda 2025-01-24T02:56:04.3567850Z copying torch/backends/cuda/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/cuda 2025-01-24T02:56:04.3583650Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends/quantized 2025-01-24T02:56:04.3584340Z copying torch/backends/quantized/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/quantized 2025-01-24T02:56:04.3592420Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends/mkl 2025-01-24T02:56:04.3593070Z copying torch/backends/mkl/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/mkl 2025-01-24T02:56:04.3601310Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends/xnnpack 2025-01-24T02:56:04.3601980Z copying torch/backends/xnnpack/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/xnnpack 2025-01-24T02:56:04.3609590Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends/kleidiai 2025-01-24T02:56:04.3610270Z copying torch/backends/kleidiai/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/kleidiai 2025-01-24T02:56:04.3617370Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends/cusparselt 2025-01-24T02:56:04.3618080Z copying torch/backends/cusparselt/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/cusparselt 2025-01-24T02:56:04.3626230Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends/mkldnn 2025-01-24T02:56:04.3626880Z copying torch/backends/mkldnn/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/mkldnn 2025-01-24T02:56:04.3636190Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends/xeon 2025-01-24T02:56:04.3636860Z copying torch/backends/xeon/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/xeon 2025-01-24T02:56:04.3637690Z copying torch/backends/xeon/run_cpu.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/xeon 2025-01-24T02:56:04.3653380Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends/_nnapi 2025-01-24T02:56:04.3654050Z copying torch/backends/_nnapi/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/_nnapi 2025-01-24T02:56:04.3655140Z copying torch/backends/_nnapi/serializer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/_nnapi 2025-01-24T02:56:04.3685550Z copying torch/backends/_nnapi/prepare.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/_nnapi 2025-01-24T02:56:04.3693660Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends/openmp 2025-01-24T02:56:04.3694330Z copying torch/backends/openmp/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/openmp 2025-01-24T02:56:04.3702810Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/backends/cudnn 2025-01-24T02:56:04.3703450Z copying torch/backends/cudnn/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/cudnn 2025-01-24T02:56:04.3710860Z copying torch/backends/cudnn/rnn.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/backends/cudnn 2025-01-24T02:56:04.3719580Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/masked/maskedtensor 2025-01-24T02:56:04.3720420Z copying torch/masked/maskedtensor/binary.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/masked/maskedtensor 2025-01-24T02:56:04.3727730Z copying torch/masked/maskedtensor/creation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/masked/maskedtensor 2025-01-24T02:56:04.3735270Z copying torch/masked/maskedtensor/_ops_refs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/masked/maskedtensor 2025-01-24T02:56:04.3751910Z copying torch/masked/maskedtensor/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/masked/maskedtensor 2025-01-24T02:56:04.3758890Z copying torch/masked/maskedtensor/core.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/masked/maskedtensor 2025-01-24T02:56:04.3766490Z copying torch/masked/maskedtensor/unary.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/masked/maskedtensor 2025-01-24T02:56:04.3773930Z copying torch/masked/maskedtensor/reductions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/masked/maskedtensor 2025-01-24T02:56:04.3781070Z copying torch/masked/maskedtensor/passthrough.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/masked/maskedtensor 2025-01-24T02:56:04.3789830Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/optim/_multi_tensor 2025-01-24T02:56:04.3790600Z copying torch/optim/_multi_tensor/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim/_multi_tensor 2025-01-24T02:56:04.3801070Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime 2025-01-24T02:56:04.3801780Z copying torch/_inductor/runtime/cache_dir_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime 2025-01-24T02:56:04.3809290Z copying torch/_inductor/runtime/triton_heuristics.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime 2025-01-24T02:56:04.3836700Z copying torch/_inductor/runtime/runtime_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime 2025-01-24T02:56:04.3844050Z copying torch/_inductor/runtime/halide_helpers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime 2025-01-24T02:56:04.3850550Z copying torch/_inductor/runtime/coordinate_descent_tuner.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime 2025-01-24T02:56:04.3857580Z copying torch/_inductor/runtime/triton_compat.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime 2025-01-24T02:56:04.3867720Z copying torch/_inductor/runtime/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime 2025-01-24T02:56:04.3868650Z copying torch/_inductor/runtime/compile_tasks.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime 2025-01-24T02:56:04.3876590Z copying torch/_inductor/runtime/triton_helpers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime 2025-01-24T02:56:04.3891180Z copying torch/_inductor/runtime/autotune_cache.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime 2025-01-24T02:56:04.3904790Z copying torch/_inductor/runtime/hints.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime 2025-01-24T02:56:04.3911910Z copying torch/_inductor/runtime/benchmarking.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime 2025-01-24T02:56:04.3924060Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.3924800Z copying torch/_inductor/codegen/cpp_grouped_gemm_template.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.3939790Z copying torch/_inductor/codegen/cpp_wrapper_gpu.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.3953810Z copying torch/_inductor/codegen/wrapper.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.3984560Z copying torch/_inductor/codegen/mps_device_op_overrides.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.3991800Z copying torch/_inductor/codegen/triton_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.3998860Z copying torch/_inductor/codegen/triton.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4041930Z copying torch/_inductor/codegen/cpp_bmm_template.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4049730Z copying torch/_inductor/codegen/mps.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4057130Z copying torch/_inductor/codegen/aoti_hipify_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4063620Z copying torch/_inductor/codegen/simd.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4084430Z copying torch/_inductor/codegen/triton_combo_kernel.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4099490Z copying torch/_inductor/codegen/memory_planning.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4118590Z copying torch/_inductor/codegen/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4119470Z copying torch/_inductor/codegen/cpp_flex_attention_template.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4130010Z copying torch/_inductor/codegen/cpp_micro_gemm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4143370Z copying torch/_inductor/codegen/cpp.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4182860Z copying torch/_inductor/codegen/cpp_wrapper_cpu.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4213500Z copying torch/_inductor/codegen/block_analysis.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4221510Z copying torch/_inductor/codegen/common.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4266410Z copying torch/_inductor/codegen/cpp_template_kernel.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4281890Z copying torch/_inductor/codegen/cpp_gemm_template.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4300340Z copying torch/_inductor/codegen/cpu_device_op_overrides.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4306740Z copying torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4320010Z copying torch/_inductor/codegen/triton_split_scan.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4327440Z copying torch/_inductor/codegen/halide.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4365120Z copying torch/_inductor/codegen/cpp_template.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4371970Z copying torch/_inductor/codegen/cuda_combined_scheduling.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4377300Z copying torch/_inductor/codegen/multi_kernel.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4389090Z copying torch/_inductor/codegen/cpp_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4401920Z copying torch/_inductor/codegen/debug_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4408860Z copying torch/_inductor/codegen/simd_kernel_features.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:04.4416050Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/compile_worker 2025-01-24T02:56:04.4416810Z copying torch/_inductor/compile_worker/watchdog.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/compile_worker 2025-01-24T02:56:04.4423260Z copying torch/_inductor/compile_worker/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/compile_worker 2025-01-24T02:56:04.4424370Z copying torch/_inductor/compile_worker/subproc_pool.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/compile_worker 2025-01-24T02:56:04.4431550Z copying torch/_inductor/compile_worker/__main__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/compile_worker 2025-01-24T02:56:04.4439350Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic 2025-01-24T02:56:04.4440130Z copying torch/_inductor/autoheuristic/autoheuristic.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic 2025-01-24T02:56:04.4447710Z copying torch/_inductor/autoheuristic/autoheuristic_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic 2025-01-24T02:56:04.4454800Z copying torch/_inductor/autoheuristic/learned_heuristic_controller.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic 2025-01-24T02:56:04.4461320Z copying torch/_inductor/autoheuristic/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic 2025-01-24T02:56:04.4462370Z copying torch/_inductor/autoheuristic/learnedheuristic_interface.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic 2025-01-24T02:56:04.4472380Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4473080Z copying torch/_inductor/fx_passes/post_grad.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4486490Z copying torch/_inductor/fx_passes/replace_random.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4493770Z copying torch/_inductor/fx_passes/ddp_fusion.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4510100Z copying torch/_inductor/fx_passes/numeric_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4516960Z copying torch/_inductor/fx_passes/decompose_mem_bound_mm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4523830Z copying torch/_inductor/fx_passes/reinplace.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4539720Z copying torch/_inductor/fx_passes/quantization.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4568020Z copying torch/_inductor/fx_passes/split_cat.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4599390Z copying torch/_inductor/fx_passes/dedupe_symint_uses.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4610070Z copying torch/_inductor/fx_passes/efficient_conv_bn_eval.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4619570Z copying torch/_inductor/fx_passes/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4620530Z copying torch/_inductor/fx_passes/group_batch_fusion.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4641710Z copying torch/_inductor/fx_passes/pre_grad.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4654770Z copying torch/_inductor/fx_passes/binary_folding.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4671630Z copying torch/_inductor/fx_passes/fuse_attention.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4684590Z copying torch/_inductor/fx_passes/micro_pipeline_tp.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4698040Z copying torch/_inductor/fx_passes/joint_graph.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4711000Z copying torch/_inductor/fx_passes/b2b_gemm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4724920Z copying torch/_inductor/fx_passes/mkldnn_fusion.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4745150Z copying torch/_inductor/fx_passes/pad_mm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4759350Z copying torch/_inductor/fx_passes/freezing_patterns.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4766190Z copying torch/_inductor/fx_passes/misc_patterns.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes 2025-01-24T02:56:04.4775220Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel 2025-01-24T02:56:04.4775920Z copying torch/_inductor/kernel/unpack_mixed_mm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel 2025-01-24T02:56:04.4783710Z copying torch/_inductor/kernel/mm_common.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel 2025-01-24T02:56:04.4798750Z copying torch/_inductor/kernel/flex_decoding.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel 2025-01-24T02:56:04.4812820Z copying torch/_inductor/kernel/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel 2025-01-24T02:56:04.4820240Z copying torch/_inductor/kernel/mm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel 2025-01-24T02:56:04.4833940Z copying torch/_inductor/kernel/bmm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel 2025-01-24T02:56:04.4841240Z copying torch/_inductor/kernel/mm_scaled.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel 2025-01-24T02:56:04.4854900Z copying torch/_inductor/kernel/conv.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel 2025-01-24T02:56:04.4868530Z copying torch/_inductor/kernel/mm_plus_mm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel 2025-01-24T02:56:04.4875390Z copying torch/_inductor/kernel/flex_attention.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel 2025-01-24T02:56:04.4903960Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/package 2025-01-24T02:56:04.4904640Z copying torch/_inductor/package/package.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/package 2025-01-24T02:56:04.4911850Z copying torch/_inductor/package/build_package.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/package 2025-01-24T02:56:04.4919340Z copying torch/_inductor/package/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/package 2025-01-24T02:56:04.4926790Z copying torch/_inductor/package/pt2_archive_constants.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/package 2025-01-24T02:56:04.4936350Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda 2025-01-24T02:56:04.4937120Z copying torch/_inductor/codegen/cuda/cutlass_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda 2025-01-24T02:56:04.4945420Z copying torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda 2025-01-24T02:56:04.4953080Z copying torch/_inductor/codegen/cuda/cuda_template.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda 2025-01-24T02:56:04.4968970Z copying torch/_inductor/codegen/cuda/gemm_template.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda 2025-01-24T02:56:04.4994780Z copying torch/_inductor/codegen/cuda/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda 2025-01-24T02:56:04.4995840Z copying torch/_inductor/codegen/cuda/device_op_overrides.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda 2025-01-24T02:56:04.5003960Z copying torch/_inductor/codegen/cuda/cuda_env.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda 2025-01-24T02:56:04.5010960Z copying torch/_inductor/codegen/cuda/cuda_kernel.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda 2025-01-24T02:56:04.5030320Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/xpu 2025-01-24T02:56:04.5031030Z copying torch/_inductor/codegen/xpu/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/xpu 2025-01-24T02:56:04.5032080Z copying torch/_inductor/codegen/xpu/device_op_overrides.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/xpu 2025-01-24T02:56:04.5043540Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm 2025-01-24T02:56:04.5044320Z copying torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm 2025-01-24T02:56:04.5051260Z copying torch/_inductor/codegen/rocm/rocm_kernel.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm 2025-01-24T02:56:04.5058330Z copying torch/_inductor/codegen/rocm/rocm_template.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm 2025-01-24T02:56:04.5064960Z copying torch/_inductor/codegen/rocm/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm 2025-01-24T02:56:04.5065910Z copying torch/_inductor/codegen/rocm/compile_command.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm 2025-01-24T02:56:04.5072800Z copying torch/_inductor/codegen/rocm/ck_conv_template.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm 2025-01-24T02:56:04.5085970Z copying torch/_inductor/codegen/rocm/rocm_template_buffer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm 2025-01-24T02:56:04.5093370Z copying torch/_inductor/codegen/rocm/ck_universal_gemm_template.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm 2025-01-24T02:56:04.5106680Z copying torch/_inductor/codegen/rocm/ck_template.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm 2025-01-24T02:56:04.5113320Z copying torch/_inductor/codegen/rocm/rocm_benchmark_request.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm 2025-01-24T02:56:04.5121090Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-01-24T02:56:04.5122130Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-01-24T02:56:04.5135530Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-01-24T02:56:04.5137650Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/artifacts 2025-01-24T02:56:04.5138530Z copying torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/artifacts 2025-01-24T02:56:04.5145030Z copying torch/_inductor/autoheuristic/artifacts/_PadMMA100.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/artifacts 2025-01-24T02:56:04.5152130Z copying torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/artifacts 2025-01-24T02:56:04.5165430Z copying torch/_inductor/autoheuristic/artifacts/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/artifacts 2025-01-24T02:56:04.5166480Z copying torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/artifacts 2025-01-24T02:56:04.5179220Z copying torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/artifacts 2025-01-24T02:56:04.5188860Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5189800Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5197500Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5204560Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5219250Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5226390Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5239150Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5245400Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5253470Z copying torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5260340Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5273080Z copying torch/_inductor/fx_passes/serialized_patterns/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5274310Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5281670Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5288860Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5296970Z copying torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5303770Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5311060Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5319330Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5328160Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5336570Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5344550Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5351870Z copying torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5358740Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5366420Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:04.5375010Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark 2025-01-24T02:56:04.5375810Z copying torch/utils/benchmark/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark 2025-01-24T02:56:04.5384570Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy 2025-01-24T02:56:04.5385210Z copying torch/utils/_sympy/functions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy 2025-01-24T02:56:04.5407180Z copying torch/utils/_sympy/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy 2025-01-24T02:56:04.5408050Z copying torch/utils/_sympy/symbol.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy 2025-01-24T02:56:04.5414850Z copying torch/utils/_sympy/numbers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy 2025-01-24T02:56:04.5424870Z copying torch/utils/_sympy/reference.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy 2025-01-24T02:56:04.5434770Z copying torch/utils/_sympy/singleton_int.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy 2025-01-24T02:56:04.5441240Z copying torch/utils/_sympy/value_ranges.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy 2025-01-24T02:56:04.5455260Z copying torch/utils/_sympy/printers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy 2025-01-24T02:56:04.5468750Z copying torch/utils/_sympy/solve.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy 2025-01-24T02:56:04.5475530Z copying torch/utils/_sympy/interp.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy 2025-01-24T02:56:04.5483590Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/serialization 2025-01-24T02:56:04.5484310Z copying torch/utils/serialization/config.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/serialization 2025-01-24T02:56:04.5491830Z copying torch/utils/serialization/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/serialization 2025-01-24T02:56:04.5498920Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/backcompat 2025-01-24T02:56:04.5499600Z copying torch/utils/backcompat/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/backcompat 2025-01-24T02:56:04.5507950Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/hipify 2025-01-24T02:56:04.5508590Z copying torch/utils/hipify/version.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/hipify 2025-01-24T02:56:04.5515620Z copying torch/utils/hipify/cuda_to_hip_mappings.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/hipify 2025-01-24T02:56:04.5566250Z copying torch/utils/hipify/constants.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/hipify 2025-01-24T02:56:04.5573260Z copying torch/utils/hipify/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/hipify 2025-01-24T02:56:04.5580390Z copying torch/utils/hipify/hipify_python.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/hipify 2025-01-24T02:56:04.5595740Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/bottleneck 2025-01-24T02:56:04.5596440Z copying torch/utils/bottleneck/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/bottleneck 2025-01-24T02:56:04.5597350Z copying torch/utils/bottleneck/__main__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/bottleneck 2025-01-24T02:56:04.5605970Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/viz 2025-01-24T02:56:04.5606560Z copying torch/utils/viz/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/viz 2025-01-24T02:56:04.5607460Z copying torch/utils/viz/_cycles.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/viz 2025-01-24T02:56:04.5616960Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/jit 2025-01-24T02:56:04.5617540Z copying torch/utils/jit/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/jit 2025-01-24T02:56:04.5618420Z copying torch/utils/jit/log_extract.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/jit 2025-01-24T02:56:04.5628040Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard 2025-01-24T02:56:04.5628750Z copying torch/utils/tensorboard/_pytorch_graph.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard 2025-01-24T02:56:04.5637960Z copying torch/utils/tensorboard/_proto_graph.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard 2025-01-24T02:56:04.5648110Z copying torch/utils/tensorboard/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard 2025-01-24T02:56:04.5657780Z copying torch/utils/tensorboard/_embedding.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard 2025-01-24T02:56:04.5664260Z copying torch/utils/tensorboard/_onnx_graph.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard 2025-01-24T02:56:04.5671260Z copying torch/utils/tensorboard/summary.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard 2025-01-24T02:56:04.5712900Z copying torch/utils/tensorboard/_convert_np.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard 2025-01-24T02:56:04.5716330Z copying torch/utils/tensorboard/writer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard 2025-01-24T02:56:04.5730100Z copying torch/utils/tensorboard/_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard 2025-01-24T02:56:04.5738420Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/model_dump 2025-01-24T02:56:04.5739090Z copying torch/utils/model_dump/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/model_dump 2025-01-24T02:56:04.5753600Z copying torch/utils/model_dump/__main__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/model_dump 2025-01-24T02:56:04.5762210Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data 2025-01-24T02:56:04.5762850Z copying torch/utils/data/graph_settings.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data 2025-01-24T02:56:04.5770900Z copying torch/utils/data/graph.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data 2025-01-24T02:56:04.5778330Z copying torch/utils/data/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data 2025-01-24T02:56:04.5785500Z copying torch/utils/data/dataset.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data 2025-01-24T02:56:04.5799710Z copying torch/utils/data/distributed.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data 2025-01-24T02:56:04.5807010Z copying torch/utils/data/backward_compatibility.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data 2025-01-24T02:56:04.5814810Z copying torch/utils/data/dataloader.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data 2025-01-24T02:56:04.5837780Z copying torch/utils/data/sampler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data 2025-01-24T02:56:04.5847780Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_strobelight 2025-01-24T02:56:04.5848520Z copying torch/utils/_strobelight/cli_function_profiler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_strobelight 2025-01-24T02:56:04.5856330Z copying torch/utils/_strobelight/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_strobelight 2025-01-24T02:56:04.5858640Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/op_fuzzers 2025-01-24T02:56:04.5859500Z copying torch/utils/benchmark/op_fuzzers/binary.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/op_fuzzers 2025-01-24T02:56:04.5867270Z copying torch/utils/benchmark/op_fuzzers/sparse_binary.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/op_fuzzers 2025-01-24T02:56:04.5874840Z copying torch/utils/benchmark/op_fuzzers/sparse_unary.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/op_fuzzers 2025-01-24T02:56:04.5881750Z copying torch/utils/benchmark/op_fuzzers/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/op_fuzzers 2025-01-24T02:56:04.5882700Z copying torch/utils/benchmark/op_fuzzers/spectral.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/op_fuzzers 2025-01-24T02:56:04.5889320Z copying torch/utils/benchmark/op_fuzzers/unary.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/op_fuzzers 2025-01-24T02:56:04.5897580Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils 2025-01-24T02:56:04.5898320Z copying torch/utils/benchmark/utils/timer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils 2025-01-24T02:56:04.5912100Z copying torch/utils/benchmark/utils/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils 2025-01-24T02:56:04.5913170Z copying torch/utils/benchmark/utils/sparse_fuzzer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils 2025-01-24T02:56:04.5920200Z copying torch/utils/benchmark/utils/common.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils 2025-01-24T02:56:04.5928600Z copying torch/utils/benchmark/utils/compile.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils 2025-01-24T02:56:04.5939790Z copying torch/utils/benchmark/utils/fuzzer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils 2025-01-24T02:56:04.5956880Z copying torch/utils/benchmark/utils/cpp_jit.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils 2025-01-24T02:56:04.5963600Z copying torch/utils/benchmark/utils/compare.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils 2025-01-24T02:56:04.5971570Z copying torch/utils/benchmark/utils/_stubs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils 2025-01-24T02:56:04.5980330Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/examples 2025-01-24T02:56:04.5981120Z copying torch/utils/benchmark/examples/op_benchmark.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/examples 2025-01-24T02:56:04.5987650Z copying torch/utils/benchmark/examples/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/examples 2025-01-24T02:56:04.5988610Z copying torch/utils/benchmark/examples/simple_timeit.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/examples 2025-01-24T02:56:04.5995100Z copying torch/utils/benchmark/examples/fuzzer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/examples 2025-01-24T02:56:04.6001970Z copying torch/utils/benchmark/examples/blas_compare_setup.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/examples 2025-01-24T02:56:04.6010160Z copying torch/utils/benchmark/examples/spectral_ops_fuzz_test.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/examples 2025-01-24T02:56:04.6019880Z copying torch/utils/benchmark/examples/compare.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/examples 2025-01-24T02:56:04.6029270Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/valgrind_wrapper 2025-01-24T02:56:04.6030240Z copying torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/valgrind_wrapper 2025-01-24T02:56:04.6044570Z copying torch/utils/benchmark/utils/valgrind_wrapper/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/valgrind_wrapper 2025-01-24T02:56:04.6046690Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/_utils 2025-01-24T02:56:04.6047370Z copying torch/utils/data/_utils/fetch.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/_utils 2025-01-24T02:56:04.6054590Z copying torch/utils/data/_utils/worker.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/_utils 2025-01-24T02:56:04.6062240Z copying torch/utils/data/_utils/collate.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/_utils 2025-01-24T02:56:04.6070310Z copying torch/utils/data/_utils/pin_memory.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/_utils 2025-01-24T02:56:04.6077800Z copying torch/utils/data/_utils/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/_utils 2025-01-24T02:56:04.6085100Z copying torch/utils/data/_utils/signal_handling.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/_utils 2025-01-24T02:56:04.6093350Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes 2025-01-24T02:56:04.6094200Z copying torch/utils/data/datapipes/_decorator.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes 2025-01-24T02:56:04.6106630Z copying torch/utils/data/datapipes/_typing.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes 2025-01-24T02:56:04.6117160Z copying torch/utils/data/datapipes/_hook_iterator.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes 2025-01-24T02:56:04.6124550Z copying torch/utils/data/datapipes/datapipe.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes 2025-01-24T02:56:04.6138170Z copying torch/utils/data/datapipes/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes 2025-01-24T02:56:04.6145260Z copying torch/utils/data/datapipes/gen_pyi.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes 2025-01-24T02:56:04.6153360Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/dataframe 2025-01-24T02:56:04.6154210Z copying torch/utils/data/datapipes/dataframe/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/dataframe 2025-01-24T02:56:04.6160470Z copying torch/utils/data/datapipes/dataframe/datapipes.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/dataframe 2025-01-24T02:56:04.6175050Z copying torch/utils/data/datapipes/dataframe/dataframe_wrapper.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/dataframe 2025-01-24T02:56:04.6186320Z copying torch/utils/data/datapipes/dataframe/structures.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/dataframe 2025-01-24T02:56:04.6192860Z copying torch/utils/data/datapipes/dataframe/dataframes.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/dataframe 2025-01-24T02:56:04.6201590Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter 2025-01-24T02:56:04.6202410Z copying torch/utils/data/datapipes/iter/fileopener.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter 2025-01-24T02:56:04.6209180Z copying torch/utils/data/datapipes/iter/callable.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter 2025-01-24T02:56:04.6216460Z copying torch/utils/data/datapipes/iter/sharding.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter 2025-01-24T02:56:04.6223250Z copying torch/utils/data/datapipes/iter/grouping.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter 2025-01-24T02:56:04.6230920Z copying torch/utils/data/datapipes/iter/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter 2025-01-24T02:56:04.6237960Z copying torch/utils/data/datapipes/iter/selecting.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter 2025-01-24T02:56:04.6244530Z copying torch/utils/data/datapipes/iter/combining.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter 2025-01-24T02:56:04.6258460Z copying torch/utils/data/datapipes/iter/filelister.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter 2025-01-24T02:56:04.6265600Z copying torch/utils/data/datapipes/iter/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter 2025-01-24T02:56:04.6272390Z copying torch/utils/data/datapipes/iter/combinatorics.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter 2025-01-24T02:56:04.6283490Z copying torch/utils/data/datapipes/iter/streamreader.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter 2025-01-24T02:56:04.6293130Z copying torch/utils/data/datapipes/iter/routeddecoder.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter 2025-01-24T02:56:04.6300600Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/utils 2025-01-24T02:56:04.6301420Z copying torch/utils/data/datapipes/utils/decoder.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/utils 2025-01-24T02:56:04.6308880Z copying torch/utils/data/datapipes/utils/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/utils 2025-01-24T02:56:04.6309900Z copying torch/utils/data/datapipes/utils/common.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/utils 2025-01-24T02:56:04.6317610Z copying torch/utils/data/datapipes/utils/snapshot.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/utils 2025-01-24T02:56:04.6325510Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/map 2025-01-24T02:56:04.6326380Z copying torch/utils/data/datapipes/map/callable.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/map 2025-01-24T02:56:04.6332870Z copying torch/utils/data/datapipes/map/grouping.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/map 2025-01-24T02:56:04.6339750Z copying torch/utils/data/datapipes/map/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/map 2025-01-24T02:56:04.6346450Z copying torch/utils/data/datapipes/map/combining.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/map 2025-01-24T02:56:04.6353040Z copying torch/utils/data/datapipes/map/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/map 2025-01-24T02:56:04.6359710Z copying torch/utils/data/datapipes/map/combinatorics.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/map 2025-01-24T02:56:04.6368930Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx 2025-01-24T02:56:04.6369620Z copying torch/quantization/fx/graph_module.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx 2025-01-24T02:56:04.6377340Z copying torch/quantization/fx/fusion_patterns.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx 2025-01-24T02:56:04.6383770Z copying torch/quantization/fx/_equalize.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx 2025-01-24T02:56:04.6390350Z copying torch/quantization/fx/quantization_types.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx 2025-01-24T02:56:04.6397170Z copying torch/quantization/fx/convert.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx 2025-01-24T02:56:04.6404070Z copying torch/quantization/fx/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx 2025-01-24T02:56:04.6411410Z copying torch/quantization/fx/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx 2025-01-24T02:56:04.6418930Z copying torch/quantization/fx/pattern_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx 2025-01-24T02:56:04.6425180Z copying torch/quantization/fx/fuse.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx 2025-01-24T02:56:04.6432050Z copying torch/quantization/fx/match_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx 2025-01-24T02:56:04.6439640Z copying torch/quantization/fx/prepare.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx 2025-01-24T02:56:04.6446810Z copying torch/quantization/fx/quantization_patterns.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx 2025-01-24T02:56:04.6459360Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6460060Z copying torch/testing/_internal/common_dtype.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6467410Z copying torch/testing/_internal/common_pruning.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6475460Z copying torch/testing/_internal/fake_config_module3.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6483050Z copying torch/testing/_internal/hop_db.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6497750Z copying torch/testing/_internal/triton_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6505550Z copying torch/testing/_internal/static_module.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6512820Z copying torch/testing/_internal/subclasses.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6520360Z copying torch/testing/_internal/common_nn.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6559310Z copying torch/testing/_internal/custom_op_db.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6585280Z copying torch/testing/_internal/fake_config_module2.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6592030Z copying torch/testing/_internal/autocast_test_lists.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6606980Z copying torch/testing/_internal/common_fsdp.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6628150Z copying torch/testing/_internal/two_tensor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6636080Z copying torch/testing/_internal/torchbind_impls.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6642820Z copying torch/testing/_internal/common_optimizers.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6671020Z copying torch/testing/_internal/common_device_type.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6694030Z copying torch/testing/_internal/autograd_function_db.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6707660Z copying torch/testing/_internal/common_mkldnn.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6715140Z copying torch/testing/_internal/inductor_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6722640Z copying torch/testing/_internal/common_distributed.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6744430Z copying torch/testing/_internal/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6745490Z copying torch/testing/_internal/common_methods_invocations.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6838190Z copying torch/testing/_internal/custom_tensor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6851020Z copying torch/testing/_internal/logging_tensor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6860970Z copying torch/testing/_internal/hypothesis_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6869070Z copying torch/testing/_internal/common_cuda.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6877630Z copying torch/testing/_internal/common_quantization.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6906370Z copying torch/testing/_internal/common_modules.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6944930Z copying torch/testing/_internal/common_jit.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6953420Z copying torch/testing/_internal/jit_metaprogramming_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6968080Z copying torch/testing/_internal/dynamo_test_failures.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6975780Z copying torch/testing/_internal/check_kernel_launches.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.6983120Z copying torch/testing/_internal/common_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.7023480Z copying torch/testing/_internal/quantization_torch_package_models.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.7030780Z copying torch/testing/_internal/common_quantized.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.7037710Z copying torch/testing/_internal/common_dist_composable.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.7046220Z copying torch/testing/_internal/common_subclass.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.7054890Z copying torch/testing/_internal/composite_compliance.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.7075410Z copying torch/testing/_internal/logging_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.7083310Z copying torch/testing/_internal/dist_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.7090830Z copying torch/testing/_internal/fake_config_module.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.7097700Z copying torch/testing/_internal/jit_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal 2025-01-24T02:56:04.7121230Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/generated 2025-01-24T02:56:04.7125840Z copying torch/testing/_internal/generated/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/generated 2025-01-24T02:56:04.7126850Z copying torch/testing/_internal/generated/annotated_fn_args.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/generated 2025-01-24T02:56:04.7197520Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo 2025-01-24T02:56:04.7198270Z copying torch/testing/_internal/opinfo/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo 2025-01-24T02:56:04.7204610Z copying torch/testing/_internal/opinfo/core.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo 2025-01-24T02:56:04.7231570Z copying torch/testing/_internal/opinfo/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo 2025-01-24T02:56:04.7240070Z copying torch/testing/_internal/opinfo/refs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo 2025-01-24T02:56:04.7248060Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/test_module 2025-01-24T02:56:04.7248860Z copying torch/testing/_internal/test_module/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/test_module 2025-01-24T02:56:04.7250080Z copying torch/testing/_internal/test_module/future_div.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/test_module 2025-01-24T02:56:04.7256760Z copying torch/testing/_internal/test_module/no_future_div.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/test_module 2025-01-24T02:56:04.7265240Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed 2025-01-24T02:56:04.7266120Z copying torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed 2025-01-24T02:56:04.7279160Z copying torch/testing/_internal/distributed/fake_pg.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed 2025-01-24T02:56:04.7285790Z copying torch/testing/_internal/distributed/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed 2025-01-24T02:56:04.7286840Z copying torch/testing/_internal/distributed/checkpoint_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed 2025-01-24T02:56:04.7293630Z copying torch/testing/_internal/distributed/distributed_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed 2025-01-24T02:56:04.7300410Z copying torch/testing/_internal/distributed/distributed_test.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed 2025-01-24T02:56:04.7384850Z copying torch/testing/_internal/distributed/multi_threaded_pg.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed 2025-01-24T02:56:04.7397560Z copying torch/testing/_internal/distributed/common_state_dict.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed 2025-01-24T02:56:04.7404170Z copying torch/testing/_internal/distributed/rpc_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed 2025-01-24T02:56:04.7412050Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/optests 2025-01-24T02:56:04.7412820Z copying torch/testing/_internal/optests/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/optests 2025-01-24T02:56:04.7418970Z copying torch/testing/_internal/optests/fake_tensor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/optests 2025-01-24T02:56:04.7425510Z copying torch/testing/_internal/optests/aot_autograd.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/optests 2025-01-24T02:56:04.7432130Z copying torch/testing/_internal/optests/make_fx.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/optests 2025-01-24T02:56:04.7438680Z copying torch/testing/_internal/optests/generate_tests.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/optests 2025-01-24T02:56:04.7452590Z copying torch/testing/_internal/optests/autograd_registration.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/optests 2025-01-24T02:56:04.7459810Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/codegen 2025-01-24T02:56:04.7460570Z copying torch/testing/_internal/codegen/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/codegen 2025-01-24T02:56:04.7468750Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/data 2025-01-24T02:56:04.7469490Z copying torch/testing/_internal/data/network1.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/data 2025-01-24T02:56:04.7476780Z copying torch/testing/_internal/data/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/data 2025-01-24T02:56:04.7483760Z copying torch/testing/_internal/data/network2.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/data 2025-01-24T02:56:04.7492520Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:04.7493420Z copying torch/testing/_internal/opinfo/definitions/signal.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:04.7501500Z copying torch/testing/_internal/opinfo/definitions/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:04.7508760Z copying torch/testing/_internal/opinfo/definitions/_masked.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:04.7525470Z copying torch/testing/_internal/opinfo/definitions/linalg.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:04.7554360Z copying torch/testing/_internal/opinfo/definitions/sparse.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:04.7568770Z copying torch/testing/_internal/opinfo/definitions/fft.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:04.7583460Z copying torch/testing/_internal/opinfo/definitions/special.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:04.7597860Z copying torch/testing/_internal/opinfo/definitions/nested.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:04.7634910Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/_tensor 2025-01-24T02:56:04.7635800Z copying torch/testing/_internal/distributed/_tensor/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/_tensor 2025-01-24T02:56:04.7636910Z copying torch/testing/_internal/distributed/_tensor/common_dtensor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/_tensor 2025-01-24T02:56:04.7659450Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/nn 2025-01-24T02:56:04.7660300Z copying torch/testing/_internal/distributed/nn/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/nn 2025-01-24T02:56:04.7661720Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/_shard 2025-01-24T02:56:04.7662650Z copying torch/testing/_internal/distributed/_shard/test_common.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/_shard 2025-01-24T02:56:04.7669470Z copying torch/testing/_internal/distributed/_shard/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/_shard 2025-01-24T02:56:04.7676360Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:04.7677300Z copying torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:04.7683170Z copying torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:04.7690160Z copying torch/testing/_internal/distributed/rpc/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:04.7691250Z copying torch/testing/_internal/distributed/rpc/dist_autograd_test.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:04.7716530Z copying torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:04.7722640Z copying torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:04.7729220Z copying torch/testing/_internal/distributed/rpc/rpc_test.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:04.7769260Z copying torch/testing/_internal/distributed/rpc/dist_optimizer_test.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:04.7778900Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/nn/api 2025-01-24T02:56:04.7779790Z copying torch/testing/_internal/distributed/nn/api/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/nn/api 2025-01-24T02:56:04.7780920Z copying torch/testing/_internal/distributed/nn/api/remote_module_test.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/nn/api 2025-01-24T02:56:04.7795390Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-01-24T02:56:04.7796430Z copying torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-01-24T02:56:04.7803400Z copying torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-01-24T02:56:04.7809680Z copying torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-01-24T02:56:04.7817260Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/jit 2025-01-24T02:56:04.7818170Z copying torch/testing/_internal/distributed/rpc/jit/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/jit 2025-01-24T02:56:04.7819330Z copying torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/jit 2025-01-24T02:56:04.7826770Z copying torch/testing/_internal/distributed/rpc/jit/rpc_test.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/jit 2025-01-24T02:56:04.7841270Z copying torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/jit 2025-01-24T02:56:04.7849830Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/examples 2025-01-24T02:56:04.7850800Z copying torch/testing/_internal/distributed/rpc/examples/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/examples 2025-01-24T02:56:04.7852080Z copying torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/examples 2025-01-24T02:56:04.7859060Z copying torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/examples 2025-01-24T02:56:04.7867240Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_passes 2025-01-24T02:56:04.7867910Z copying torch/jit/_passes/_property_propagation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_passes 2025-01-24T02:56:04.7875170Z copying torch/jit/_passes/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_passes 2025-01-24T02:56:04.7876890Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/jit/mobile 2025-01-24T02:56:04.7877480Z copying torch/jit/mobile/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit/mobile 2025-01-24T02:56:04.7886970Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends 2025-01-24T02:56:04.7887650Z copying torch/_dynamo/backends/registry.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends 2025-01-24T02:56:04.7898060Z copying torch/_dynamo/backends/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends 2025-01-24T02:56:04.7898870Z copying torch/_dynamo/backends/debugging.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends 2025-01-24T02:56:04.7903740Z copying torch/_dynamo/backends/distributed.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends 2025-01-24T02:56:04.7918990Z copying torch/_dynamo/backends/common.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends 2025-01-24T02:56:04.7926630Z copying torch/_dynamo/backends/inductor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends 2025-01-24T02:56:04.7933160Z copying torch/_dynamo/backends/onnxrt.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends 2025-01-24T02:56:04.7939430Z copying torch/_dynamo/backends/tvm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends 2025-01-24T02:56:04.7947150Z copying torch/_dynamo/backends/cudagraphs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends 2025-01-24T02:56:04.7954830Z copying torch/_dynamo/backends/tensorrt.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends 2025-01-24T02:56:04.7961600Z copying torch/_dynamo/backends/torchxla.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends 2025-01-24T02:56:04.7971450Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.7972140Z copying torch/_dynamo/variables/functions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.7987310Z copying torch/_dynamo/variables/iter.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8001860Z copying torch/_dynamo/variables/misc.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8023680Z copying torch/_dynamo/variables/lists.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8038150Z copying torch/_dynamo/variables/script_object.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8044990Z copying torch/_dynamo/variables/torch_function.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8058280Z copying torch/_dynamo/variables/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8069030Z copying torch/_dynamo/variables/user_defined.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8091290Z copying torch/_dynamo/variables/nn_module.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8105500Z copying torch/_dynamo/variables/builder.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8137950Z copying torch/_dynamo/variables/tensor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8158890Z copying torch/_dynamo/variables/higher_order_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8198720Z copying torch/_dynamo/variables/sdpa.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8205190Z copying torch/_dynamo/variables/distributed.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8211950Z copying torch/_dynamo/variables/optimizer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8219670Z copying torch/_dynamo/variables/builtin.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8244700Z copying torch/_dynamo/variables/constant.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8253280Z copying torch/_dynamo/variables/lazy.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8261150Z copying torch/_dynamo/variables/torch.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8281630Z copying torch/_dynamo/variables/ctx_manager.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8295550Z copying torch/_dynamo/variables/dicts.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8312210Z copying torch/_dynamo/variables/base.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables 2025-01-24T02:56:04.8327670Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/repro 2025-01-24T02:56:04.8328320Z copying torch/_dynamo/repro/after_dynamo.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/repro 2025-01-24T02:56:04.8340870Z copying torch/_dynamo/repro/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/repro 2025-01-24T02:56:04.8341720Z copying torch/_dynamo/repro/after_aot.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/repro 2025-01-24T02:56:04.8354610Z copying torch/_dynamo/repro/aoti.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/repro 2025-01-24T02:56:04.8368960Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills 2025-01-24T02:56:04.8369650Z copying torch/_dynamo/polyfills/functools.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills 2025-01-24T02:56:04.8376260Z copying torch/_dynamo/polyfills/builtins.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills 2025-01-24T02:56:04.8382490Z copying torch/_dynamo/polyfills/operator.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills 2025-01-24T02:56:04.8388870Z copying torch/_dynamo/polyfills/os.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills 2025-01-24T02:56:04.8394820Z copying torch/_dynamo/polyfills/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills 2025-01-24T02:56:04.8402350Z copying torch/_dynamo/polyfills/loader.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills 2025-01-24T02:56:04.8410140Z copying torch/_dynamo/polyfills/sys.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills 2025-01-24T02:56:04.8417170Z copying torch/_dynamo/polyfills/pytree.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills 2025-01-24T02:56:04.8425200Z copying torch/_dynamo/polyfills/itertools.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills 2025-01-24T02:56:04.8435470Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn 2025-01-24T02:56:04.8436080Z copying torch/ao/nn/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn 2025-01-24T02:56:04.8445090Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns 2025-01-24T02:56:04.8445650Z copying torch/ao/ns/_numeric_suite.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns 2025-01-24T02:56:04.8462110Z copying torch/ao/ns/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns 2025-01-24T02:56:04.8462880Z copying torch/ao/ns/_numeric_suite_fx.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns 2025-01-24T02:56:04.8480040Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8480840Z copying torch/ao/quantization/observer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8509230Z copying torch/ao/quantization/fuse_modules.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8517710Z copying torch/ao/quantization/_learnable_fake_quantize.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8525690Z copying torch/ao/quantization/quantization_mappings.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8533870Z copying torch/ao/quantization/_correct_bias.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8540460Z copying torch/ao/quantization/quantize.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8554650Z copying torch/ao/quantization/_equalize.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8562090Z copying torch/ao/quantization/fake_quantize.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8575610Z copying torch/ao/quantization/qconfig.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8589980Z copying torch/ao/quantization/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8605100Z copying torch/ao/quantization/qconfig_mapping.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8616920Z copying torch/ao/quantization/stubs.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8624860Z copying torch/ao/quantization/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8636860Z copying torch/ao/quantization/fuser_method_mappings.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8643110Z copying torch/ao/quantization/quantize_jit.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8650220Z copying torch/ao/quantization/quantize_pt2e.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8657030Z copying torch/ao/quantization/quant_type.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8663750Z copying torch/ao/quantization/quantize_fx.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization 2025-01-24T02:56:04.8678480Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning 2025-01-24T02:56:04.8679080Z copying torch/ao/pruning/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning 2025-01-24T02:56:04.8685620Z copying torch/ao/pruning/_mappings.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning 2025-01-24T02:56:04.8692330Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat 2025-01-24T02:56:04.8692930Z copying torch/ao/nn/qat/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat 2025-01-24T02:56:04.8700000Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized 2025-01-24T02:56:04.8700670Z copying torch/ao/nn/quantized/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized 2025-01-24T02:56:04.8707220Z copying torch/ao/nn/quantized/functional.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized 2025-01-24T02:56:04.8721610Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantizable 2025-01-24T02:56:04.8722310Z copying torch/ao/nn/quantizable/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantizable 2025-01-24T02:56:04.8729960Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic 2025-01-24T02:56:04.8735090Z copying torch/ao/nn/intrinsic/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic 2025-01-24T02:56:04.8738480Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/sparse 2025-01-24T02:56:04.8739120Z copying torch/ao/nn/sparse/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/sparse 2025-01-24T02:56:04.8746510Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/dynamic 2025-01-24T02:56:04.8747200Z copying torch/ao/nn/qat/dynamic/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/dynamic 2025-01-24T02:56:04.8755110Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/modules 2025-01-24T02:56:04.8755810Z copying torch/ao/nn/qat/modules/linear.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/modules 2025-01-24T02:56:04.8762820Z copying torch/ao/nn/qat/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/modules 2025-01-24T02:56:04.8769900Z copying torch/ao/nn/qat/modules/conv.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/modules 2025-01-24T02:56:04.8777670Z copying torch/ao/nn/qat/modules/embedding_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/modules 2025-01-24T02:56:04.8791460Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/dynamic/modules 2025-01-24T02:56:04.8792260Z copying torch/ao/nn/qat/dynamic/modules/linear.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/dynamic/modules 2025-01-24T02:56:04.8801980Z copying torch/ao/nn/qat/dynamic/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/dynamic/modules 2025-01-24T02:56:04.8808660Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/dynamic 2025-01-24T02:56:04.8809430Z copying torch/ao/nn/quantized/dynamic/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/dynamic 2025-01-24T02:56:04.8817710Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules 2025-01-24T02:56:04.8818810Z copying torch/ao/nn/quantized/modules/batchnorm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules 2025-01-24T02:56:04.8826660Z copying torch/ao/nn/quantized/modules/functional_modules.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules 2025-01-24T02:56:04.8833500Z copying torch/ao/nn/quantized/modules/linear.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules 2025-01-24T02:56:04.8840690Z copying torch/ao/nn/quantized/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules 2025-01-24T02:56:04.8848150Z copying torch/ao/nn/quantized/modules/activation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules 2025-01-24T02:56:04.8855820Z copying torch/ao/nn/quantized/modules/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules 2025-01-24T02:56:04.8863470Z copying torch/ao/nn/quantized/modules/dropout.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules 2025-01-24T02:56:04.8871280Z copying torch/ao/nn/quantized/modules/conv.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules 2025-01-24T02:56:04.8893000Z copying torch/ao/nn/quantized/modules/normalization.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules 2025-01-24T02:56:04.8904490Z copying torch/ao/nn/quantized/modules/rnn.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules 2025-01-24T02:56:04.8910620Z copying torch/ao/nn/quantized/modules/embedding_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules 2025-01-24T02:56:04.8918680Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/reference 2025-01-24T02:56:04.8919470Z copying torch/ao/nn/quantized/reference/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/reference 2025-01-24T02:56:04.8926550Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/dynamic/modules 2025-01-24T02:56:04.8927930Z copying torch/ao/nn/quantized/dynamic/modules/linear.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/dynamic/modules 2025-01-24T02:56:04.8934300Z copying torch/ao/nn/quantized/dynamic/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/dynamic/modules 2025-01-24T02:56:04.8941220Z copying torch/ao/nn/quantized/dynamic/modules/conv.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/dynamic/modules 2025-01-24T02:56:04.8969290Z copying torch/ao/nn/quantized/dynamic/modules/rnn.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/dynamic/modules 2025-01-24T02:56:04.8991730Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/reference/modules 2025-01-24T02:56:04.8992640Z copying torch/ao/nn/quantized/reference/modules/linear.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/reference/modules 2025-01-24T02:56:04.8998310Z copying torch/ao/nn/quantized/reference/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/reference/modules 2025-01-24T02:56:04.9003950Z copying torch/ao/nn/quantized/reference/modules/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/reference/modules 2025-01-24T02:56:04.9011160Z copying torch/ao/nn/quantized/reference/modules/sparse.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/reference/modules 2025-01-24T02:56:04.9017630Z copying torch/ao/nn/quantized/reference/modules/conv.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/reference/modules 2025-01-24T02:56:04.9024940Z copying torch/ao/nn/quantized/reference/modules/rnn.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/reference/modules 2025-01-24T02:56:04.9060380Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantizable/modules 2025-01-24T02:56:04.9061160Z copying torch/ao/nn/quantizable/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantizable/modules 2025-01-24T02:56:04.9068270Z copying torch/ao/nn/quantizable/modules/activation.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantizable/modules 2025-01-24T02:56:04.9081900Z copying torch/ao/nn/quantizable/modules/rnn.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantizable/modules 2025-01-24T02:56:04.9094680Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/qat 2025-01-24T02:56:04.9095390Z copying torch/ao/nn/intrinsic/qat/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/qat 2025-01-24T02:56:04.9103430Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized 2025-01-24T02:56:04.9104200Z copying torch/ao/nn/intrinsic/quantized/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized 2025-01-24T02:56:04.9112280Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/modules 2025-01-24T02:56:04.9113050Z copying torch/ao/nn/intrinsic/modules/fused.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/modules 2025-01-24T02:56:04.9120720Z copying torch/ao/nn/intrinsic/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/modules 2025-01-24T02:56:04.9127860Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/qat/modules 2025-01-24T02:56:04.9128690Z copying torch/ao/nn/intrinsic/qat/modules/conv_fused.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/qat/modules 2025-01-24T02:56:04.9149490Z copying torch/ao/nn/intrinsic/qat/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/qat/modules 2025-01-24T02:56:04.9157500Z copying torch/ao/nn/intrinsic/qat/modules/linear_relu.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/qat/modules 2025-01-24T02:56:04.9164160Z copying torch/ao/nn/intrinsic/qat/modules/linear_fused.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/qat/modules 2025-01-24T02:56:04.9170920Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/dynamic 2025-01-24T02:56:04.9171800Z copying torch/ao/nn/intrinsic/quantized/dynamic/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/dynamic 2025-01-24T02:56:04.9179030Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/modules 2025-01-24T02:56:04.9179990Z copying torch/ao/nn/intrinsic/quantized/modules/bn_relu.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/modules 2025-01-24T02:56:04.9186280Z copying torch/ao/nn/intrinsic/quantized/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/modules 2025-01-24T02:56:04.9193100Z copying torch/ao/nn/intrinsic/quantized/modules/conv_relu.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/modules 2025-01-24T02:56:04.9199610Z copying torch/ao/nn/intrinsic/quantized/modules/linear_relu.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/modules 2025-01-24T02:56:04.9207400Z copying torch/ao/nn/intrinsic/quantized/modules/conv_add.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/modules 2025-01-24T02:56:04.9215520Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-01-24T02:56:04.9216490Z copying torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-01-24T02:56:04.9223350Z copying torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-01-24T02:56:04.9230360Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/sparse/quantized 2025-01-24T02:56:04.9231110Z copying torch/ao/nn/sparse/quantized/linear.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/sparse/quantized 2025-01-24T02:56:04.9238280Z copying torch/ao/nn/sparse/quantized/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/sparse/quantized 2025-01-24T02:56:04.9244950Z copying torch/ao/nn/sparse/quantized/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/sparse/quantized 2025-01-24T02:56:04.9251850Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/sparse/quantized/dynamic 2025-01-24T02:56:04.9252740Z copying torch/ao/nn/sparse/quantized/dynamic/linear.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/sparse/quantized/dynamic 2025-01-24T02:56:04.9260350Z copying torch/ao/nn/sparse/quantized/dynamic/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/sparse/quantized/dynamic 2025-01-24T02:56:04.9269020Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx 2025-01-24T02:56:04.9269620Z copying torch/ao/ns/fx/graph_passes.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx 2025-01-24T02:56:04.9283670Z copying torch/ao/ns/fx/weight_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx 2025-01-24T02:56:04.9290880Z copying torch/ao/ns/fx/graph_matcher.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx 2025-01-24T02:56:04.9304990Z copying torch/ao/ns/fx/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx 2025-01-24T02:56:04.9306200Z copying torch/ao/ns/fx/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx 2025-01-24T02:56:04.9320520Z copying torch/ao/ns/fx/pattern_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx 2025-01-24T02:56:04.9328240Z copying torch/ao/ns/fx/ns_types.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx 2025-01-24T02:56:04.9338600Z copying torch/ao/ns/fx/n_shadows_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx 2025-01-24T02:56:04.9354570Z copying torch/ao/ns/fx/mappings.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx 2025-01-24T02:56:04.9367600Z copying torch/ao/ns/fx/qconfig_multi_mapping.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx 2025-01-24T02:56:04.9376440Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config 2025-01-24T02:56:04.9377360Z copying torch/ao/quantization/backend_config/_common_operator_config_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config 2025-01-24T02:56:04.9391170Z copying torch/ao/quantization/backend_config/qnnpack.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config 2025-01-24T02:56:04.9399030Z copying torch/ao/quantization/backend_config/fbgemm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config 2025-01-24T02:56:04.9406470Z copying torch/ao/quantization/backend_config/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config 2025-01-24T02:56:04.9413980Z copying torch/ao/quantization/backend_config/native.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config 2025-01-24T02:56:04.9421670Z copying torch/ao/quantization/backend_config/observation_type.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config 2025-01-24T02:56:04.9422770Z copying torch/ao/quantization/backend_config/onednn.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config 2025-01-24T02:56:04.9436890Z copying torch/ao/quantization/backend_config/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config 2025-01-24T02:56:04.9448330Z copying torch/ao/quantization/backend_config/_qnnpack_pt2e.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config 2025-01-24T02:56:04.9458040Z copying torch/ao/quantization/backend_config/executorch.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config 2025-01-24T02:56:04.9471880Z copying torch/ao/quantization/backend_config/backend_config.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config 2025-01-24T02:56:04.9485750Z copying torch/ao/quantization/backend_config/x86.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config 2025-01-24T02:56:04.9492540Z copying torch/ao/quantization/backend_config/tensorrt.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config 2025-01-24T02:56:04.9500870Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e 2025-01-24T02:56:04.9501660Z copying torch/ao/quantization/pt2e/port_metadata_pass.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e 2025-01-24T02:56:04.9509630Z copying torch/ao/quantization/pt2e/export_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e 2025-01-24T02:56:04.9517240Z copying torch/ao/quantization/pt2e/qat_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e 2025-01-24T02:56:04.9536750Z copying torch/ao/quantization/pt2e/duplicate_dq_pass.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e 2025-01-24T02:56:04.9547540Z copying torch/ao/quantization/pt2e/graph_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e 2025-01-24T02:56:04.9554550Z copying torch/ao/quantization/pt2e/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e 2025-01-24T02:56:04.9555410Z copying torch/ao/quantization/pt2e/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e 2025-01-24T02:56:04.9569550Z copying torch/ao/quantization/pt2e/_affine_quantization.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e 2025-01-24T02:56:04.9583970Z copying torch/ao/quantization/pt2e/prepare.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e 2025-01-24T02:56:04.9597740Z copying torch/ao/quantization/pt2e/_numeric_debugger.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e 2025-01-24T02:56:04.9608470Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9609200Z copying torch/ao/quantization/fx/graph_module.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9616730Z copying torch/ao/quantization/fx/lower_to_fbgemm.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9623130Z copying torch/ao/quantization/fx/_equalize.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9638860Z copying torch/ao/quantization/fx/lower_to_qnnpack.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9645960Z copying torch/ao/quantization/fx/convert.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9667740Z copying torch/ao/quantization/fx/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9675440Z copying torch/ao/quantization/fx/quantize_handler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9689890Z copying torch/ao/quantization/fx/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9707290Z copying torch/ao/quantization/fx/pattern_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9713910Z copying torch/ao/quantization/fx/_lower_to_native_backend.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9733470Z copying torch/ao/quantization/fx/custom_config.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9747480Z copying torch/ao/quantization/fx/fuse.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9755020Z copying torch/ao/quantization/fx/qconfig_mapping_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9763510Z copying torch/ao/quantization/fx/match_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9771250Z copying torch/ao/quantization/fx/prepare.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9800600Z copying torch/ao/quantization/fx/tracer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9807180Z copying torch/ao/quantization/fx/_decomposed.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9820950Z copying torch/ao/quantization/fx/fuse_handler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9828670Z copying torch/ao/quantization/fx/lstm_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx 2025-01-24T02:56:04.9836850Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer 2025-01-24T02:56:04.9837820Z copying torch/ao/quantization/quantizer/embedding_quantizer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer 2025-01-24T02:56:04.9844230Z copying torch/ao/quantization/quantizer/x86_inductor_quantizer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer 2025-01-24T02:56:04.9864550Z copying torch/ao/quantization/quantizer/xnnpack_quantizer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer 2025-01-24T02:56:04.9872600Z copying torch/ao/quantization/quantizer/composable_quantizer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer 2025-01-24T02:56:04.9879760Z copying torch/ao/quantization/quantizer/xpu_inductor_quantizer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer 2025-01-24T02:56:04.9886490Z copying torch/ao/quantization/quantizer/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer 2025-01-24T02:56:04.9893750Z copying torch/ao/quantization/quantizer/quantizer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer 2025-01-24T02:56:04.9900610Z copying torch/ao/quantization/quantizer/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer 2025-01-24T02:56:04.9906980Z copying torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer 2025-01-24T02:56:04.9921600Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e/representation 2025-01-24T02:56:04.9922530Z copying torch/ao/quantization/pt2e/representation/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e/representation 2025-01-24T02:56:04.9929790Z copying torch/ao/quantization/pt2e/representation/rewrite.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e/representation 2025-01-24T02:56:04.9945370Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/_model_report 2025-01-24T02:56:04.9946250Z copying torch/ao/quantization/fx/_model_report/detector.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/_model_report 2025-01-24T02:56:04.9976480Z copying torch/ao/quantization/fx/_model_report/model_report_visualizer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/_model_report 2025-01-24T02:56:04.9992480Z copying torch/ao/quantization/fx/_model_report/model_report_observer.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/_model_report 2025-01-24T02:56:04.9999390Z copying torch/ao/quantization/fx/_model_report/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/_model_report 2025-01-24T02:56:05.0000490Z copying torch/ao/quantization/fx/_model_report/model_report.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/_model_report 2025-01-24T02:56:05.0016450Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/sparsifier 2025-01-24T02:56:05.0017260Z copying torch/ao/pruning/sparsifier/weight_norm_sparsifier.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/sparsifier 2025-01-24T02:56:05.0024780Z copying torch/ao/pruning/sparsifier/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/sparsifier 2025-01-24T02:56:05.0025730Z copying torch/ao/pruning/sparsifier/utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/sparsifier 2025-01-24T02:56:05.0032430Z copying torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/sparsifier 2025-01-24T02:56:05.0038280Z copying torch/ao/pruning/sparsifier/base_sparsifier.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/sparsifier 2025-01-24T02:56:05.0046460Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental 2025-01-24T02:56:05.0047280Z copying torch/ao/pruning/_experimental/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental 2025-01-24T02:56:05.0049320Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/scheduler 2025-01-24T02:56:05.0050090Z copying torch/ao/pruning/scheduler/base_scheduler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/scheduler 2025-01-24T02:56:05.0057210Z copying torch/ao/pruning/scheduler/cubic_scheduler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/scheduler 2025-01-24T02:56:05.0063140Z copying torch/ao/pruning/scheduler/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/scheduler 2025-01-24T02:56:05.0064230Z copying torch/ao/pruning/scheduler/lambda_scheduler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/scheduler 2025-01-24T02:56:05.0071250Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier 2025-01-24T02:56:05.0072250Z copying torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier 2025-01-24T02:56:05.0080380Z copying torch/ao/pruning/_experimental/data_sparsifier/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier 2025-01-24T02:56:05.0090940Z copying torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier 2025-01-24T02:56:05.0095110Z copying torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier 2025-01-24T02:56:05.0105400Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:05.0106270Z copying torch/ao/pruning/_experimental/pruner/FPGM_pruner.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:05.0114570Z copying torch/ao/pruning/_experimental/pruner/saliency_pruner.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:05.0120980Z copying torch/ao/pruning/_experimental/pruner/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:05.0127020Z copying torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:05.0134330Z copying torch/ao/pruning/_experimental/pruner/prune_functions.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:05.0146100Z copying torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:05.0152270Z copying torch/ao/pruning/_experimental/pruner/parametrization.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:05.0158940Z copying torch/ao/pruning/_experimental/pruner/match_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:05.0166220Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/activation_sparsifier 2025-01-24T02:56:05.0167310Z copying torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/activation_sparsifier 2025-01-24T02:56:05.0180830Z copying torch/ao/pruning/_experimental/activation_sparsifier/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/activation_sparsifier 2025-01-24T02:56:05.0182050Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_scheduler 2025-01-24T02:56:05.0182990Z copying torch/ao/pruning/_experimental/data_scheduler/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_scheduler 2025-01-24T02:56:05.0189800Z copying torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_scheduler 2025-01-24T02:56:05.0197930Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-01-24T02:56:05.0198990Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-01-24T02:56:05.0200220Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-01-24T02:56:05.0201500Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-01-24T02:56:05.0209740Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-01-24T02:56:05.0211290Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-01-24T02:56:05.0219410Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_refs/linalg 2025-01-24T02:56:05.0220030Z copying torch/_refs/linalg/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_refs/linalg 2025-01-24T02:56:05.0228400Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_refs/nn 2025-01-24T02:56:05.0228980Z copying torch/_refs/nn/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_refs/nn 2025-01-24T02:56:05.0237460Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_refs/special 2025-01-24T02:56:05.0238210Z copying torch/_refs/special/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_refs/special 2025-01-24T02:56:05.0247010Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_refs/nn/functional 2025-01-24T02:56:05.0247700Z copying torch/_refs/nn/functional/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/_refs/nn/functional 2025-01-24T02:56:05.0262770Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/export/experimental 2025-01-24T02:56:05.0263480Z copying torch/export/experimental/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/export/experimental 2025-01-24T02:56:05.0271620Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/export/passes 2025-01-24T02:56:05.0272250Z copying torch/export/passes/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/export/passes 2025-01-24T02:56:05.0280960Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/nested/_internal 2025-01-24T02:56:05.0281650Z copying torch/nested/_internal/nested_tensor.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nested/_internal 2025-01-24T02:56:05.0296450Z copying torch/nested/_internal/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nested/_internal 2025-01-24T02:56:05.0297330Z copying torch/nested/_internal/ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nested/_internal 2025-01-24T02:56:05.0326200Z copying torch/nested/_internal/sdpa.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nested/_internal 2025-01-24T02:56:05.0341190Z copying torch/nested/_internal/nested_int.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/nested/_internal 2025-01-24T02:56:05.0349140Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/signal/windows 2025-01-24T02:56:05.0349790Z copying torch/signal/windows/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/signal/windows 2025-01-24T02:56:05.0357460Z copying torch/signal/windows/windows.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/signal/windows 2025-01-24T02:56:05.0373060Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/package/analyze 2025-01-24T02:56:05.0373780Z copying torch/package/analyze/trace_dependencies.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package/analyze 2025-01-24T02:56:05.0380420Z copying torch/package/analyze/find_first_use_of_broken_modules.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package/analyze 2025-01-24T02:56:05.0387110Z copying torch/package/analyze/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package/analyze 2025-01-24T02:56:05.0393870Z copying torch/package/analyze/is_from_package.py -> build/lib.macosx-11.1-arm64-cpython-39/torch/package/analyze 2025-01-24T02:56:05.0401620Z creating build/lib.macosx-11.1-arm64-cpython-39/torchgen/selective_build 2025-01-24T02:56:05.0402320Z copying torchgen/selective_build/selector.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/selective_build 2025-01-24T02:56:05.0411150Z copying torchgen/selective_build/operator.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/selective_build 2025-01-24T02:56:05.0418970Z copying torchgen/selective_build/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/selective_build 2025-01-24T02:56:05.0420890Z creating build/lib.macosx-11.1-arm64-cpython-39/torchgen/static_runtime 2025-01-24T02:56:05.0421570Z copying torchgen/static_runtime/config.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/static_runtime 2025-01-24T02:56:05.0429680Z copying torchgen/static_runtime/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/static_runtime 2025-01-24T02:56:05.0430600Z copying torchgen/static_runtime/generator.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/static_runtime 2025-01-24T02:56:05.0445730Z copying torchgen/static_runtime/gen_static_runtime_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/static_runtime 2025-01-24T02:56:05.0454450Z creating build/lib.macosx-11.1-arm64-cpython-39/torchgen/operator_versions 2025-01-24T02:56:05.0455190Z copying torchgen/operator_versions/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/operator_versions 2025-01-24T02:56:05.0456230Z copying torchgen/operator_versions/gen_mobile_upgraders_constant.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/operator_versions 2025-01-24T02:56:05.0463570Z copying torchgen/operator_versions/gen_mobile_upgraders.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/operator_versions 2025-01-24T02:56:05.0473010Z creating build/lib.macosx-11.1-arm64-cpython-39/torchgen/dest 2025-01-24T02:56:05.0473600Z copying torchgen/dest/lazy_ts_lowering.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/dest 2025-01-24T02:56:05.0480390Z copying torchgen/dest/ufunc.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/dest 2025-01-24T02:56:05.0494400Z copying torchgen/dest/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/dest 2025-01-24T02:56:05.0502070Z copying torchgen/dest/native_functions.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/dest 2025-01-24T02:56:05.0509510Z copying torchgen/dest/lazy_ir.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/dest 2025-01-24T02:56:05.0524350Z copying torchgen/dest/register_dispatch_key.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/dest 2025-01-24T02:56:05.0540970Z creating build/lib.macosx-11.1-arm64-cpython-39/torchgen/api 2025-01-24T02:56:05.0541550Z copying torchgen/api/dispatcher.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/api 2025-01-24T02:56:05.0548560Z copying torchgen/api/translate.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/api 2025-01-24T02:56:05.0565360Z copying torchgen/api/ufunc.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/api 2025-01-24T02:56:05.0575640Z copying torchgen/api/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/api 2025-01-24T02:56:05.0576390Z copying torchgen/api/native.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/api 2025-01-24T02:56:05.0583370Z copying torchgen/api/cpp.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/api 2025-01-24T02:56:05.0591300Z copying torchgen/api/unboxing.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/api 2025-01-24T02:56:05.0599070Z copying torchgen/api/functionalization.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/api 2025-01-24T02:56:05.0605950Z copying torchgen/api/autograd.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/api 2025-01-24T02:56:05.0620290Z copying torchgen/api/structured.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/api 2025-01-24T02:56:05.0627200Z copying torchgen/api/python.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/api 2025-01-24T02:56:05.0656600Z copying torchgen/api/lazy.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/api 2025-01-24T02:56:05.0672380Z copying torchgen/api/meta.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/api 2025-01-24T02:56:05.0680230Z creating build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch 2025-01-24T02:56:05.0684360Z copying torchgen/executorch/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch 2025-01-24T02:56:05.0685110Z copying torchgen/executorch/model.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch 2025-01-24T02:56:05.0688490Z copying torchgen/executorch/parse.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch 2025-01-24T02:56:05.0697120Z creating build/lib.macosx-11.1-arm64-cpython-39/torchgen/aoti 2025-01-24T02:56:05.0697680Z copying torchgen/aoti/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/aoti 2025-01-24T02:56:05.0698680Z copying torchgen/aoti/fallback_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/aoti 2025-01-24T02:56:05.0705770Z creating build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/types 2025-01-24T02:56:05.0706390Z copying torchgen/api/types/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/types 2025-01-24T02:56:05.0712900Z copying torchgen/api/types/types.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/types 2025-01-24T02:56:05.0719570Z copying torchgen/api/types/signatures.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/types 2025-01-24T02:56:05.0730370Z copying torchgen/api/types/types_base.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/types 2025-01-24T02:56:05.0738450Z creating build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/api 2025-01-24T02:56:05.0739160Z copying torchgen/executorch/api/custom_ops.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/api 2025-01-24T02:56:05.0746090Z copying torchgen/executorch/api/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/api 2025-01-24T02:56:05.0746940Z copying torchgen/executorch/api/unboxing.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/api 2025-01-24T02:56:05.0754860Z copying torchgen/executorch/api/et_cpp.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/api 2025-01-24T02:56:05.0763810Z creating build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/api/types 2025-01-24T02:56:05.0764570Z copying torchgen/executorch/api/types/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/api/types 2025-01-24T02:56:05.0770840Z copying torchgen/executorch/api/types/types.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/api/types 2025-01-24T02:56:05.0777690Z copying torchgen/executorch/api/types/signatures.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/api/types 2025-01-24T02:56:05.0785340Z creating build/lib.macosx-11.1-arm64-cpython-39/functorch/experimental 2025-01-24T02:56:05.0786080Z copying functorch/experimental/control_flow.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/experimental 2025-01-24T02:56:05.0792950Z copying functorch/experimental/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/experimental 2025-01-24T02:56:05.0800360Z copying functorch/experimental/ops.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/experimental 2025-01-24T02:56:05.0808520Z creating build/lib.macosx-11.1-arm64-cpython-39/functorch/_src 2025-01-24T02:56:05.0809080Z copying functorch/_src/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/_src 2025-01-24T02:56:05.0811810Z creating build/lib.macosx-11.1-arm64-cpython-39/functorch/dim 2025-01-24T02:56:05.0812390Z copying functorch/dim/magic_trace.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/dim 2025-01-24T02:56:05.0819180Z copying functorch/dim/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/dim 2025-01-24T02:56:05.0827450Z copying functorch/dim/delayed_mul_tensor.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/dim 2025-01-24T02:56:05.0836530Z copying functorch/dim/op_properties.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/dim 2025-01-24T02:56:05.0843210Z copying functorch/dim/batch_tensor.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/dim 2025-01-24T02:56:05.0851550Z copying functorch/dim/wrap_type.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/dim 2025-01-24T02:56:05.0858230Z copying functorch/dim/reference.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/dim 2025-01-24T02:56:05.0872220Z copying functorch/dim/dim.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/dim 2025-01-24T02:56:05.0879910Z copying functorch/dim/tree_map.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/dim 2025-01-24T02:56:05.0887520Z creating build/lib.macosx-11.1-arm64-cpython-39/functorch/compile 2025-01-24T02:56:05.0888430Z copying functorch/compile/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/compile 2025-01-24T02:56:05.0897170Z creating build/lib.macosx-11.1-arm64-cpython-39/functorch/einops 2025-01-24T02:56:05.0897780Z copying functorch/einops/_parsing.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/einops 2025-01-24T02:56:05.0905660Z copying functorch/einops/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/einops 2025-01-24T02:56:05.0912370Z copying functorch/einops/rearrange.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/einops 2025-01-24T02:56:05.0920630Z creating build/lib.macosx-11.1-arm64-cpython-39/functorch/_src/make_functional 2025-01-24T02:56:05.0921390Z copying functorch/_src/make_functional/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/_src/make_functional 2025-01-24T02:56:05.0929370Z creating build/lib.macosx-11.1-arm64-cpython-39/functorch/_src/eager_transforms 2025-01-24T02:56:05.0930150Z copying functorch/_src/eager_transforms/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/_src/eager_transforms 2025-01-24T02:56:05.0937790Z creating build/lib.macosx-11.1-arm64-cpython-39/functorch/_src/aot_autograd 2025-01-24T02:56:05.0938500Z copying functorch/_src/aot_autograd/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/_src/aot_autograd 2025-01-24T02:56:05.0945630Z creating build/lib.macosx-11.1-arm64-cpython-39/functorch/_src/vmap 2025-01-24T02:56:05.0946260Z copying functorch/_src/vmap/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/functorch/_src/vmap 2025-01-24T02:56:05.3375640Z copying torch/return_types.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:05.3384060Z copying torch/_VF.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:05.3455300Z copying torch/py.typed -> build/lib.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:05.3456670Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/bin 2025-01-24T02:56:05.3457220Z copying torch/bin/protoc-3.13.0.0 -> build/lib.macosx-11.1-arm64-cpython-39/torch/bin 2025-01-24T02:56:05.3648250Z copying torch/bin/torch_shm_manager -> build/lib.macosx-11.1-arm64-cpython-39/torch/bin 2025-01-24T02:56:05.3667590Z copying torch/bin/protoc -> build/lib.macosx-11.1-arm64-cpython-39/torch/bin 2025-01-24T02:56:05.3771210Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.3771730Z copying torch/_C/_profiler.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.3778090Z copying torch/_C/_onnx.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.3783650Z copying torch/_C/_distributed_c10d.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.3795540Z copying torch/_C/_autograd.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.3801640Z copying torch/_C/_monitor.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.3807420Z copying torch/_C/_itt.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.3812800Z copying torch/_C/_lazy.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.3820120Z copying torch/_C/__init__.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.3874050Z copying torch/_C/_nvtx.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.3879690Z copying torch/_C/_cpu.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.3885640Z copying torch/_C/_nn.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.3892250Z copying torch/_C/_cusparselt.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.3897910Z copying torch/_C/_instruction_counter.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.3903460Z copying torch/_C/_lazy_ts_backend.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.3908340Z copying torch/_C/_functorch.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.3913900Z copying torch/_C/_VariableFunctions.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.3999000Z copying torch/_C/_distributed_rpc.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.4010490Z copying torch/_C/_verbose.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.4018250Z copying torch/_C/_aoti.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.4023470Z copying torch/_C/_functions.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.4029240Z copying torch/_C/_distributed_rpc_testing.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.4034690Z copying torch/_C/_cudnn.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.4040680Z copying torch/_C/_distributed_autograd.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.4045890Z copying torch/_C/_export.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/_C 2025-01-24T02:56:05.4050980Z copying torch/jit/_script.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:05.4057150Z copying torch/nn/parameter.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn 2025-01-24T02:56:05.4062600Z copying torch/nn/functional.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn 2025-01-24T02:56:05.4073090Z copying torch/utils/data/datapipes/datapipe.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes 2025-01-24T02:56:05.4084510Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/lib 2025-01-24T02:56:05.4085040Z copying torch/lib/libshm.dylib -> build/lib.macosx-11.1-arm64-cpython-39/torch/lib 2025-01-24T02:56:05.4103810Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include 2025-01-24T02:56:05.4104370Z copying torch/include/sleef.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include 2025-01-24T02:56:05.4113000Z copying torch/include/cpuinfo.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include 2025-01-24T02:56:05.4115000Z copying torch/include/nnpack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include 2025-01-24T02:56:05.4115840Z copying torch/include/xnnpack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include 2025-01-24T02:56:05.4118440Z copying torch/include/libshm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include 2025-01-24T02:56:05.4120390Z copying torch/include/fp16.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include 2025-01-24T02:56:05.4122010Z copying torch/include/qnnpack_func.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include 2025-01-24T02:56:05.4123620Z copying torch/include/pthreadpool.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include 2025-01-24T02:56:05.4125570Z copying torch/include/clog.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include 2025-01-24T02:56:05.4126620Z copying torch/include/psimd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include 2025-01-24T02:56:05.4128600Z copying torch/include/experiments-config.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include 2025-01-24T02:56:05.4129630Z copying torch/include/fxdiv.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include 2025-01-24T02:56:05.4132020Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4132670Z copying torch/include/ATen/Formatting.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4133800Z copying torch/include/ATen/NestedTensorImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4135510Z copying torch/include/ATen/CPUFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4136800Z copying torch/include/ATen/LegacyBatchedFallback.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4138310Z copying torch/include/ATen/CollapseDims.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4139510Z copying torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4140760Z copying torch/include/ATen/MetaFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4142010Z copying torch/include/ATen/Utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4143370Z copying torch/include/ATen/TensorOptions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4145230Z copying torch/include/ATen/DeviceAccelerator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4146140Z copying torch/include/ATen/TensorUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4147370Z copying torch/include/ATen/MemoryOverlap.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4148920Z copying torch/include/ATen/TensorSubclassLikeUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4149940Z copying torch/include/ATen/LegacyVmapMode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4151720Z copying torch/include/ATen/InitialTensorOptions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4152640Z copying torch/include/ATen/Version.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4153920Z copying torch/include/ATen/DLConvertor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4155690Z copying torch/include/ATen/Device.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4156570Z copying torch/include/ATen/FuncTorchTLS.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4158510Z copying torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4159470Z copying torch/include/ATen/jiterator_macros.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4160350Z copying torch/include/ATen/Operators.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4162420Z copying torch/include/ATen/CPUFunctions_inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4163650Z copying torch/include/ATen/ceil_div.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4165070Z copying torch/include/ATen/EmptyTensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4166200Z copying torch/include/ATen/NativeMetaFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4167940Z copying torch/include/ATen/dlpack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4169690Z copying torch/include/ATen/Config.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4170680Z copying torch/include/ATen/ThreadLocalPythonObjects.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4172480Z copying torch/include/ATen/Backtrace.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4173460Z copying torch/include/ATen/SparseCsrTensorUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4175280Z copying torch/include/ATen/TracerMode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4176160Z copying torch/include/ATen/BlasBackend.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4177270Z copying torch/include/ATen/Backend.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4178590Z copying torch/include/ATen/RegistrationDeclarations.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4184850Z copying torch/include/ATen/CompositeImplicitAutogradFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4185940Z copying torch/include/ATen/PTThreadPool.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4187280Z copying torch/include/ATen/OpaqueTensorImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4188460Z copying torch/include/ATen/MapAllocator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4190140Z copying torch/include/ATen/record_function.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4191180Z copying torch/include/ATen/WrapDimUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4192900Z copying torch/include/ATen/RedispatchFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4205090Z copying torch/include/ATen/Context.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4207050Z copying torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4208210Z copying torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4209300Z copying torch/include/ATen/div_rtn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4210500Z copying torch/include/ATen/ExpandUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4212580Z copying torch/include/ATen/MPSFunctions_inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4214290Z copying torch/include/ATen/TypeDefault.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4215240Z copying torch/include/ATen/MPSFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4216940Z copying torch/include/ATen/VmapGeneratedPlumbing.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4232350Z copying torch/include/ATen/MethodOperators.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4234550Z copying torch/include/ATen/CPUFixedAllocator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4235450Z copying torch/include/ATen/NamedTensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4237100Z copying torch/include/ATen/Scalar.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4238110Z copying torch/include/ATen/TensorIteratorInternal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4239840Z copying torch/include/ATen/LinalgBackend.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4240790Z copying torch/include/ATen/LegacyBatchedTensorImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4241940Z copying torch/include/ATen/ArrayRef.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4243640Z copying torch/include/ATen/SequenceNumber.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4244670Z copying torch/include/ATen/FunctionalStorageImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4246060Z copying torch/include/ATen/ExpandBase.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4251200Z copying torch/include/ATen/Parallel-inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4251960Z copying torch/include/ATen/MatrixRef.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4252760Z copying torch/include/ATen/CUDAFunctions_inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4253670Z copying torch/include/ATen/CompositeExplicitAutogradFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4254610Z copying torch/include/ATen/FunctionalTensorWrapper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4255540Z copying torch/include/ATen/SparseCsrTensorImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4256360Z copying torch/include/ATen/NumericUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4257090Z copying torch/include/ATen/ATen.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4257880Z copying torch/include/ATen/TensorNames.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4259680Z copying torch/include/ATen/TensorMeta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4260840Z copying torch/include/ATen/TensorIndexing.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4262020Z copying torch/include/ATen/Layout.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4263800Z copying torch/include/ATen/SparseTensorImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4265570Z copying torch/include/ATen/SavedTensorHooks.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4266940Z copying torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4289400Z copying torch/include/ATen/StorageUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4290480Z copying torch/include/ATen/WrapDimUtilsMulti.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4292160Z copying torch/include/ATen/code_template.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4293070Z copying torch/include/ATen/TensorOperators.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4294760Z copying torch/include/ATen/CUDAFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4295630Z copying torch/include/ATen/ScalarType.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4297460Z copying torch/include/ATen/cpp_custom_type_hack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4298430Z copying torch/include/ATen/Dispatch_v2.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4299850Z copying torch/include/ATen/Storage.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4301100Z copying torch/include/ATen/DeviceGuard.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4302940Z copying torch/include/ATen/ParallelNative.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4303880Z copying torch/include/ATen/OpMathType.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4305150Z copying torch/include/ATen/PythonTorchFunctionTLS.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4306730Z copying torch/include/ATen/PadNd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4307800Z copying torch/include/ATen/Dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4309750Z copying torch/include/ATen/CPUGeneratorImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4310740Z copying torch/include/ATen/ParallelFuture.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4312000Z copying torch/include/ATen/Functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4313670Z copying torch/include/ATen/ParallelOpenMP.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4315500Z copying torch/include/ATen/jit_macros.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4316540Z copying torch/include/ATen/CPUApplyUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4327970Z copying torch/include/ATen/ThreadLocalState.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4329030Z copying torch/include/ATen/ScalarOps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4330750Z copying torch/include/ATen/NativeFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4332430Z copying torch/include/ATen/DynamicLibrary.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4333410Z copying torch/include/ATen/TensorGeometry.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4334730Z copying torch/include/ATen/TensorIterator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4337040Z copying torch/include/ATen/NamedTensorUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4338110Z copying torch/include/ATen/Dimname.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4339770Z copying torch/include/ATen/ROCmFABackend.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4340800Z copying torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4342570Z copying torch/include/ATen/autocast_mode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4343640Z copying torch/include/ATen/Parallel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4345070Z copying torch/include/ATen/DimVector.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4346300Z copying torch/include/ATen/MetaFunctions_inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4348260Z copying torch/include/ATen/InferSize.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4349330Z copying torch/include/ATen/LegacyVmapTransforms.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4351020Z copying torch/include/ATen/SmallVector.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4351880Z copying torch/include/ATen/Tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4353080Z copying torch/include/ATen/Generator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4354400Z copying torch/include/ATen/AccumulateType.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4356120Z copying torch/include/ATen/TensorAccessor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4357000Z copying torch/include/ATen/SDPBackend.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4358700Z copying torch/include/ATen/CachedTensorUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen 2025-01-24T02:56:05.4360420Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu 2025-01-24T02:56:05.4361090Z copying torch/include/ATen/cpu/Utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu 2025-01-24T02:56:05.4362470Z copying torch/include/ATen/cpu/FlushDenormal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu 2025-01-24T02:56:05.4363670Z copying torch/include/ATen/cpu/vml.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu 2025-01-24T02:56:05.4365540Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec 2025-01-24T02:56:05.4366140Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec128 2025-01-24T02:56:05.4366980Z copying torch/include/ATen/cpu/vec/vec128/vec128_convert.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec128 2025-01-24T02:56:05.4368340Z copying torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec128 2025-01-24T02:56:05.4369660Z copying torch/include/ATen/cpu/vec/vec128/vec128.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec128 2025-01-24T02:56:05.4371070Z copying torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec128 2025-01-24T02:56:05.4373020Z copying torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec128 2025-01-24T02:56:05.4374260Z copying torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec128 2025-01-24T02:56:05.4376100Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:05.4376950Z copying torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:05.4378160Z copying torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:05.4379410Z copying torch/include/ATen/cpu/vec/vec256/vec256_mask.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:05.4381100Z copying torch/include/ATen/cpu/vec/vec256/vec256_qint.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:05.4382700Z copying torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:05.4383870Z copying torch/include/ATen/cpu/vec/vec256/vec256_double.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:05.4385750Z copying torch/include/ATen/cpu/vec/vec256/vec256_float.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:05.4387030Z copying torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:05.4389120Z copying torch/include/ATen/cpu/vec/vec256/vec256.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:05.4390430Z copying torch/include/ATen/cpu/vec/vec256/vec256_convert.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:05.4393270Z copying torch/include/ATen/cpu/vec/vec256/vec256_int.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:05.4395550Z copying torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:05.4400200Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:05.4401120Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:05.4402230Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:05.4403350Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:05.4404460Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:05.4405560Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:05.4406660Z copying torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:05.4407830Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:05.4409160Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:05.4410460Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:05.4411820Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:05.4413290Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:05.4414830Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:05.4416280Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:05.4423050Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/zarch 2025-01-24T02:56:05.4423980Z copying torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/zarch 2025-01-24T02:56:05.4426010Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:05.4426840Z copying torch/include/ATen/cpu/vec/vec512/vec512_int.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:05.4428060Z copying torch/include/ATen/cpu/vec/vec512/vec512_convert.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:05.4429790Z copying torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:05.4431130Z copying torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:05.4432570Z copying torch/include/ATen/cpu/vec/vec512/vec512_mask.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:05.4434590Z copying torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:05.4435780Z copying torch/include/ATen/cpu/vec/vec512/vec512_double.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:05.4437300Z copying torch/include/ATen/cpu/vec/vec512/vec512_qint.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:05.4438830Z copying torch/include/ATen/cpu/vec/vec512/vec512_float.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:05.4440180Z copying torch/include/ATen/cpu/vec/vec512/vec512.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:05.4441770Z copying torch/include/ATen/cpu/vec/vec_half.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec 2025-01-24T02:56:05.4442910Z copying torch/include/ATen/cpu/vec/vec_mask.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec 2025-01-24T02:56:05.4444420Z copying torch/include/ATen/cpu/vec/vec.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec 2025-01-24T02:56:05.4445430Z copying torch/include/ATen/cpu/vec/vec_convert.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec 2025-01-24T02:56:05.4446970Z copying torch/include/ATen/cpu/vec/intrinsics.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec 2025-01-24T02:56:05.4448250Z copying torch/include/ATen/cpu/vec/functional_bfloat16.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec 2025-01-24T02:56:05.4449630Z copying torch/include/ATen/cpu/vec/functional.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec 2025-01-24T02:56:05.4450970Z copying torch/include/ATen/cpu/vec/vec_n.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec 2025-01-24T02:56:05.4452910Z copying torch/include/ATen/cpu/vec/functional_base.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec 2025-01-24T02:56:05.4454370Z copying torch/include/ATen/cpu/vec/vec_base.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec 2025-01-24T02:56:05.4456090Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/sve 2025-01-24T02:56:05.4456970Z copying torch/include/ATen/cpu/vec/sve/vec_qint.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/sve 2025-01-24T02:56:05.4458040Z copying torch/include/ATen/cpu/vec/sve/vec_double.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/sve 2025-01-24T02:56:05.4459730Z copying torch/include/ATen/cpu/vec/sve/vec_float.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/sve 2025-01-24T02:56:05.4461120Z copying torch/include/ATen/cpu/vec/sve/vec_common_sve.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/sve 2025-01-24T02:56:05.4462280Z copying torch/include/ATen/cpu/vec/sve/sve_helper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/sve 2025-01-24T02:56:05.4463540Z copying torch/include/ATen/cpu/vec/sve/vec_int.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/sve 2025-01-24T02:56:05.4465230Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4465920Z copying torch/include/ATen/core/Dict_inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4466930Z copying torch/include/ATen/core/Formatting.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4468260Z copying torch/include/ATen/core/TensorBody.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4482190Z copying torch/include/ATen/core/GeneratorForPrivateuseone.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4483480Z copying torch/include/ATen/core/jit_type_base.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4484540Z copying torch/include/ATen/core/typeid.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4486260Z copying torch/include/ATen/core/rref_interface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4487190Z copying torch/include/ATen/core/Range.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4488940Z copying torch/include/ATen/core/interned_strings_class.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4489940Z copying torch/include/ATen/core/operator_name.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4491200Z copying torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4492420Z copying torch/include/ATen/core/symbol.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4493760Z copying torch/include/ATen/core/Backtrace.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4495100Z copying torch/include/ATen/core/TransformationHelper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4496240Z copying torch/include/ATen/core/blob.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4497710Z copying torch/include/ATen/core/function_schema.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4499580Z copying torch/include/ATen/core/type_factory.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4500650Z copying torch/include/ATen/core/MT19937RNGEngine.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4501650Z copying torch/include/ATen/core/ivalue_to.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4503480Z copying torch/include/ATen/core/aten_interned_strings.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4504530Z copying torch/include/ATen/core/dynamic_type.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4506370Z copying torch/include/ATen/core/class_type.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4507590Z copying torch/include/ATen/core/LegacyTypeDispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4508890Z copying torch/include/ATen/core/function_schema_inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4510210Z copying torch/include/ATen/core/NestedIntSymNodeImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4511530Z copying torch/include/ATen/core/qualified_name.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4512870Z copying torch/include/ATen/core/UndefinedTensorImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4514220Z copying torch/include/ATen/core/NamedTensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4516030Z copying torch/include/ATen/core/Scalar.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4517190Z copying torch/include/ATen/core/CachingHostAllocator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4519030Z copying torch/include/ATen/core/functional.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4520240Z copying torch/include/ATen/core/DeprecatedTypeProperties.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4521350Z copying torch/include/ATen/core/interned_strings.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4522770Z copying torch/include/ATen/core/List.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4524630Z copying torch/include/ATen/core/ATenOpList.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4525810Z copying torch/include/ATen/core/Dict.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4527720Z copying torch/include/ATen/core/type_ptr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4528850Z copying torch/include/ATen/core/grad_mode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4534420Z copying torch/include/ATen/core/DistributionsHelper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4535400Z copying torch/include/ATen/core/VariableHooksInterface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4536350Z copying torch/include/ATen/core/CheckMemoryFormat.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4537210Z copying torch/include/ATen/core/ScalarType.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4538020Z copying torch/include/ATen/core/Array.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4538870Z copying torch/include/ATen/core/ATen_fwd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4539670Z copying torch/include/ATen/core/stack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4540550Z copying torch/include/ATen/core/ATenGeneral.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4541520Z copying torch/include/ATen/core/custom_class.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4542400Z copying torch/include/ATen/core/IListRef.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4544300Z copying torch/include/ATen/core/UnsafeFromTH.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4545370Z copying torch/include/ATen/core/PythonOpRegistrationTrampoline.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4546530Z copying torch/include/ATen/core/TensorBase.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4548450Z copying torch/include/ATen/core/ATen_pch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4549420Z copying torch/include/ATen/core/QuantizerBase.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4550690Z copying torch/include/ATen/core/enum_type.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4551940Z copying torch/include/ATen/core/alias_info.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4553770Z copying torch/include/ATen/core/List_inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4554850Z copying torch/include/ATen/core/TorchDispatchUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4555980Z copying torch/include/ATen/core/enum_tag.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4557360Z copying torch/include/ATen/core/jit_type.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4559520Z copying torch/include/ATen/core/IListRef_inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4560430Z copying torch/include/ATen/core/ivalue.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4562450Z copying torch/include/ATen/core/Dimname.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4563410Z copying torch/include/ATen/core/Vitals.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4564830Z copying torch/include/ATen/core/PythonFallbackKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4566330Z copying torch/include/ATen/core/builtin_function.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4567430Z copying torch/include/ATen/core/DimVector.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4568460Z copying torch/include/ATen/core/Reduction.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4569700Z copying torch/include/ATen/core/Tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4571230Z copying torch/include/ATen/core/function.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4572510Z copying torch/include/ATen/core/Generator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4573540Z copying torch/include/ATen/core/PhiloxRNGEngine.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4574780Z copying torch/include/ATen/core/TensorAccessor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4576560Z copying torch/include/ATen/core/ivalue_inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4578280Z copying torch/include/ATen/core/Variadic.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core 2025-01-24T02:56:05.4579210Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4580000Z copying torch/include/ATen/cuda/AsmUtils.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4581310Z copying torch/include/ATen/cuda/DeviceUtils.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4582600Z copying torch/include/ATen/cuda/cub_definitions.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4583880Z copying torch/include/ATen/cuda/ApplyGridUtils.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4585130Z copying torch/include/ATen/cuda/PhiloxUtils.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4586570Z copying torch/include/ATen/cuda/ScanUtils.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4587780Z copying torch/include/ATen/cuda/NumericLimits.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4589430Z copying torch/include/ATen/cuda/CUDATensorMethods.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4590540Z copying torch/include/ATen/cuda/cub.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4592440Z copying torch/include/ATen/cuda/CUDAGraphsUtils.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4593560Z copying torch/include/ATen/cuda/CUDAApplyUtils.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4594790Z copying torch/include/ATen/cuda/Atomic.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4596580Z copying torch/include/ATen/cuda/CUDADevice.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4597800Z copying torch/include/ATen/cuda/CUDAUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4598810Z copying torch/include/ATen/cuda/CUDABlas.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4600860Z copying torch/include/ATen/cuda/CUDAGeneratorImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4601900Z copying torch/include/ATen/cuda/Sleep.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4603230Z copying torch/include/ATen/cuda/PinnedMemoryAllocator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4604400Z copying torch/include/ATen/cuda/jiterator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4606280Z copying torch/include/ATen/cuda/CUDASparseDescriptors.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4607980Z copying torch/include/ATen/cuda/EmptyTensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4609090Z copying torch/include/ATen/cuda/PeerToPeerAccess.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4610520Z copying torch/include/ATen/cuda/CUDAEvent.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4611690Z copying torch/include/ATen/cuda/CUDAContext.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4613230Z copying torch/include/ATen/cuda/Exceptions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4615040Z copying torch/include/ATen/cuda/CachingHostAllocator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4616080Z copying torch/include/ATen/cuda/CUDADataType.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4617300Z copying torch/include/ATen/cuda/cub.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4618730Z copying torch/include/ATen/cuda/CUDAContextLight.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4620090Z copying torch/include/ATen/cuda/CUDAGraph.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4621340Z copying torch/include/ATen/cuda/ThrustAllocator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4622590Z copying torch/include/ATen/cuda/llvm_jit_strings.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4623810Z copying torch/include/ATen/cuda/CUDASparse.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4626720Z copying torch/include/ATen/cuda/PhiloxCudaState.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4627650Z copying torch/include/ATen/cuda/jiterator_impl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4628560Z copying torch/include/ATen/cuda/ATenCUDAGeneral.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4629790Z copying torch/include/ATen/cuda/CUDASparseBlas.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda 2025-01-24T02:56:05.4631950Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail 2025-01-24T02:56:05.4632780Z copying torch/include/ATen/cuda/detail/TensorInfo.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail 2025-01-24T02:56:05.4634070Z copying torch/include/ATen/cuda/detail/IntegerDivider.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail 2025-01-24T02:56:05.4635290Z copying torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail 2025-01-24T02:56:05.4636790Z copying torch/include/ATen/cuda/detail/OffsetCalculator.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail 2025-01-24T02:56:05.4638020Z copying torch/include/ATen/cuda/detail/IndexUtils.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail 2025-01-24T02:56:05.4639320Z copying torch/include/ATen/cuda/detail/UnpackRaw.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail 2025-01-24T02:56:05.4640590Z copying torch/include/ATen/cuda/detail/CUDAHooks.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail 2025-01-24T02:56:05.4641940Z copying torch/include/ATen/cuda/detail/KernelUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail 2025-01-24T02:56:05.4646830Z copying torch/include/ATen/cuda/detail/LazyNVRTC.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail 2025-01-24T02:56:05.4647870Z copying torch/include/ATen/cuda/detail/DeviceThreadHandles.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail 2025-01-24T02:56:05.4648680Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/tunable 2025-01-24T02:56:05.4649440Z copying torch/include/ATen/cuda/tunable/TunableOp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/tunable 2025-01-24T02:56:05.4652420Z copying torch/include/ATen/cuda/tunable/StreamTimer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/tunable 2025-01-24T02:56:05.4653630Z copying torch/include/ATen/cuda/tunable/TunableGemm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/tunable 2025-01-24T02:56:05.4654910Z copying torch/include/ATen/cuda/tunable/GemmCommon.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/tunable 2025-01-24T02:56:05.4656960Z copying torch/include/ATen/cuda/tunable/GemmHipblaslt.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/tunable 2025-01-24T02:56:05.4658210Z copying torch/include/ATen/cuda/tunable/GemmRocblas.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/tunable 2025-01-24T02:56:05.4660070Z copying torch/include/ATen/cuda/tunable/Tunable.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/tunable 2025-01-24T02:56:05.4661470Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cudnn 2025-01-24T02:56:05.4662180Z copying torch/include/ATen/cudnn/Handles.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cudnn 2025-01-24T02:56:05.4663240Z copying torch/include/ATen/cudnn/Utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cudnn 2025-01-24T02:56:05.4664990Z copying torch/include/ATen/cudnn/Types.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cudnn 2025-01-24T02:56:05.4666040Z copying torch/include/ATen/cudnn/Descriptors.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cudnn 2025-01-24T02:56:05.4668200Z copying torch/include/ATen/cudnn/Handle.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cudnn 2025-01-24T02:56:05.4669550Z copying torch/include/ATen/cudnn/cudnn-wrapper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cudnn 2025-01-24T02:56:05.4671230Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch 2025-01-24T02:56:05.4672020Z copying torch/include/ATen/functorch/BatchedFallback.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch 2025-01-24T02:56:05.4673090Z copying torch/include/ATen/functorch/FunctionalizeInterpreter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch 2025-01-24T02:56:05.4674250Z copying torch/include/ATen/functorch/ADInterpreters.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch 2025-01-24T02:56:05.4675540Z copying torch/include/ATen/functorch/Interpreter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch 2025-01-24T02:56:05.4677160Z copying torch/include/ATen/functorch/TensorWrapper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch 2025-01-24T02:56:05.4678240Z copying torch/include/ATen/functorch/BatchRulesHelper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch 2025-01-24T02:56:05.4679720Z copying torch/include/ATen/functorch/PlumbingHelper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch 2025-01-24T02:56:05.4681060Z copying torch/include/ATen/functorch/VmapInterpreter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch 2025-01-24T02:56:05.4682210Z copying torch/include/ATen/functorch/Macros.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch 2025-01-24T02:56:05.4683590Z copying torch/include/ATen/functorch/BatchingMetaprogramming.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch 2025-01-24T02:56:05.4685250Z copying torch/include/ATen/functorch/BatchedTensorImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch 2025-01-24T02:56:05.4686490Z copying torch/include/ATen/functorch/LegacyVmapTransforms.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch 2025-01-24T02:56:05.4687580Z copying torch/include/ATen/functorch/DynamicLayer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch 2025-01-24T02:56:05.4688840Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4689570Z copying torch/include/ATen/ops/is_vulkan_available.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4690920Z copying torch/include/ATen/ops/_foreach_atan.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4692370Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4693560Z copying torch/include/ATen/ops/sigmoid_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4695470Z copying torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4696520Z copying torch/include/ATen/ops/mode_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4697650Z copying torch/include/ATen/ops/index_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4698800Z copying torch/include/ATen/ops/new_ones.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4700110Z copying torch/include/ATen/ops/pixel_shuffle.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4701340Z copying torch/include/ATen/ops/clamp_min_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4702830Z copying torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4704110Z copying torch/include/ATen/ops/acosh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4705380Z copying torch/include/ATen/ops/frexp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4706690Z copying torch/include/ATen/ops/erf_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4708020Z copying torch/include/ATen/ops/repeat_interleave_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4709250Z copying torch/include/ATen/ops/special_i0e_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4710860Z copying torch/include/ATen/ops/pixel_unshuffle_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4712230Z copying torch/include/ATen/ops/upsample_trilinear3d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4713230Z copying torch/include/ATen/ops/cummin.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4714860Z copying torch/include/ATen/ops/choose_qparams_optimized_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4716400Z copying torch/include/ATen/ops/nonzero_static_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4717490Z copying torch/include/ATen/ops/where_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4718560Z copying torch/include/ATen/ops/slice_scatter_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4719770Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4721130Z copying torch/include/ATen/ops/isfinite_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4722410Z copying torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4723550Z copying torch/include/ATen/ops/leaky_relu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4725420Z copying torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4726710Z copying torch/include/ATen/ops/erfinv_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4728530Z copying torch/include/ATen/ops/linalg_vecdot_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4729620Z copying torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4730870Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4732140Z copying torch/include/ATen/ops/bitwise_and_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4733520Z copying torch/include/ATen/ops/empty_strided_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4734820Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4736300Z copying torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4737560Z copying torch/include/ATen/ops/result_type.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4738910Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4740100Z copying torch/include/ATen/ops/min_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4741380Z copying torch/include/ATen/ops/cumulative_trapezoid.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4742620Z copying torch/include/ATen/ops/nll_loss2d_forward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4743880Z copying torch/include/ATen/ops/soft_margin_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4745160Z copying torch/include/ATen/ops/hardswish_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4746560Z copying torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4747720Z copying torch/include/ATen/ops/pow_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4749090Z copying torch/include/ATen/ops/atan_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4750820Z copying torch/include/ATen/ops/binomial_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4751790Z copying torch/include/ATen/ops/to_padded_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4752990Z copying torch/include/ATen/ops/cosine_embedding_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4754320Z copying torch/include/ATen/ops/_test_ambiguous_defaults_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4755510Z copying torch/include/ATen/ops/gelu_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4760300Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4761240Z copying torch/include/ATen/ops/max_pool3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4762160Z copying torch/include/ATen/ops/threshold_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4763030Z copying torch/include/ATen/ops/signbit.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4763900Z copying torch/include/ATen/ops/_propagate_xla_data.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4764830Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4765930Z copying torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4767000Z copying torch/include/ATen/ops/multilabel_margin_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4768090Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4769090Z copying torch/include/ATen/ops/cumprod_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4769950Z copying torch/include/ATen/ops/_remove_batch_dim.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4770950Z copying torch/include/ATen/ops/constant_pad_nd_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4772440Z copying torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4773990Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4774970Z copying torch/include/ATen/ops/_lstm_mps_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4776180Z copying torch/include/ATen/ops/_values_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4777520Z copying torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4778740Z copying torch/include/ATen/ops/nan_to_num_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4780010Z copying torch/include/ATen/ops/_histogramdd_bin_edges_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4781230Z copying torch/include/ATen/ops/_int_mm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4782470Z copying torch/include/ATen/ops/i0_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4783780Z copying torch/include/ATen/ops/inverse_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4785100Z copying torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4786410Z copying torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4787680Z copying torch/include/ATen/ops/index_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4789080Z copying torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4790250Z copying torch/include/ATen/ops/_log_softmax.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4791570Z copying torch/include/ATen/ops/quantized_batch_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4793160Z copying torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4794290Z copying torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4795520Z copying torch/include/ATen/ops/floor_divide_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4796770Z copying torch/include/ATen/ops/_softmax_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4798710Z copying torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4799750Z copying torch/include/ATen/ops/special_modified_bessel_k1_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4800820Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4802210Z copying torch/include/ATen/ops/huber_loss_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4803680Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4805100Z copying torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4806720Z copying torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4808110Z copying torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4809330Z copying torch/include/ATen/ops/fill_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4811000Z copying torch/include/ATen/ops/dist.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4812330Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4813930Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4815230Z copying torch/include/ATen/ops/index_copy_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4816780Z copying torch/include/ATen/ops/quantized_lstm_cell_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4817960Z copying torch/include/ATen/ops/_foreach_log10_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4819400Z copying torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4820520Z copying torch/include/ATen/ops/sub_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4821810Z copying torch/include/ATen/ops/mkldnn_linear_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4822970Z copying torch/include/ATen/ops/trace_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4824870Z copying torch/include/ATen/ops/adaptive_avg_pool3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4826120Z copying torch/include/ATen/ops/_efficientzerotensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4827540Z copying torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4828850Z copying torch/include/ATen/ops/_efficient_attention_forward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4830410Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4831710Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4833310Z copying torch/include/ATen/ops/special_bessel_y1_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4834260Z copying torch/include/ATen/ops/linalg_cholesky_ex_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4835980Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4837210Z copying torch/include/ATen/ops/polygamma_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4838230Z copying torch/include/ATen/ops/logical_xor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4839380Z copying torch/include/ATen/ops/nextafter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4841140Z copying torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4842300Z copying torch/include/ATen/ops/log_sigmoid_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4843580Z copying torch/include/ATen/ops/special_bessel_y0_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4844730Z copying torch/include/ATen/ops/_cast_Long_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4845980Z copying torch/include/ATen/ops/_foreach_max_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4847270Z copying torch/include/ATen/ops/pdist_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4848510Z copying torch/include/ATen/ops/_sobol_engine_ff_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4849810Z copying torch/include/ATen/ops/_wrapped_linear_prepack_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4851040Z copying torch/include/ATen/ops/softmax.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4852290Z copying torch/include/ATen/ops/arctan2.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4853640Z copying torch/include/ATen/ops/quantized_gru_cell_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4854880Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4856160Z copying torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4857480Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4858680Z copying torch/include/ATen/ops/absolute_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4860080Z copying torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4861320Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4862710Z copying torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4863910Z copying torch/include/ATen/ops/logaddexp_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4865260Z copying torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4866660Z copying torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4867940Z copying torch/include/ATen/ops/max_pool3d_with_indices.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4869140Z copying torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4870520Z copying torch/include/ATen/ops/special_zeta_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4871770Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4873130Z copying torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4874250Z copying torch/include/ATen/ops/addmv.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4875870Z copying torch/include/ATen/ops/bilinear_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4877010Z copying torch/include/ATen/ops/topk_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4878310Z copying torch/include/ATen/ops/adaptive_avg_pool1d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4879470Z copying torch/include/ATen/ops/linalg_eig_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4880780Z copying torch/include/ATen/ops/matrix_exp_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4882490Z copying torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4883830Z copying torch/include/ATen/ops/mkldnn_rnn_layer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4885260Z copying torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4886730Z copying torch/include/ATen/ops/softshrink_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4887860Z copying torch/include/ATen/ops/concatenate_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4888990Z copying torch/include/ATen/ops/view_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4890290Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4891730Z copying torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4892930Z copying torch/include/ATen/ops/linalg_ldl_factor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4894200Z copying torch/include/ATen/ops/glu_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4895430Z copying torch/include/ATen/ops/is_inference_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4897080Z copying torch/include/ATen/ops/special_i1_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4898180Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4899180Z copying torch/include/ATen/ops/hstack_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4900550Z copying torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4901720Z copying torch/include/ATen/ops/_ctc_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4903080Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4904520Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4909380Z copying torch/include/ATen/ops/miopen_convolution.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4910300Z copying torch/include/ATen/ops/is_nonzero_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4911140Z copying torch/include/ATen/ops/slice_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4911970Z copying torch/include/ATen/ops/dot_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4912820Z copying torch/include/ATen/ops/positive_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4913830Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4914920Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4915880Z copying torch/include/ATen/ops/_cast_Float_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4916900Z copying torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4917900Z copying torch/include/ATen/ops/lu_unpack_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4918920Z copying torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4920000Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4921340Z copying torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4922610Z copying torch/include/ATen/ops/narrow_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4923760Z copying torch/include/ATen/ops/atan2_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4925030Z copying torch/include/ATen/ops/rnn_relu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4926470Z copying torch/include/ATen/ops/_mixed_dtypes_linear.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4927540Z copying torch/include/ATen/ops/_nested_get_max_seqlen.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4928850Z copying torch/include/ATen/ops/_linalg_slogdet_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4930000Z copying torch/include/ATen/ops/size.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4931870Z copying torch/include/ATen/ops/scatter_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4933020Z copying torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4934540Z copying torch/include/ATen/ops/bernoulli_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4935620Z copying torch/include/ATen/ops/glu_jvp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4937350Z copying torch/include/ATen/ops/special_i1.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4939130Z copying torch/include/ATen/ops/matrix_exp_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4940240Z copying torch/include/ATen/ops/miopen_rnn_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4942160Z copying torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4943370Z copying torch/include/ATen/ops/log_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4944550Z copying torch/include/ATen/ops/hann_window_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4946320Z copying torch/include/ATen/ops/rrelu_with_noise.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4947320Z copying torch/include/ATen/ops/miopen_convolution_add_relu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4948550Z copying torch/include/ATen/ops/atan_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4950000Z copying torch/include/ATen/ops/coalesce_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4951350Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4952690Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4953950Z copying torch/include/ATen/ops/where_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4955340Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4956810Z copying torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4958290Z copying torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4959510Z copying torch/include/ATen/ops/unfold_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4960860Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4962120Z copying torch/include/ATen/ops/reflection_pad3d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4963510Z copying torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4964870Z copying torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4966090Z copying torch/include/ATen/ops/linalg_lu_factor_ex_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4967310Z copying torch/include/ATen/ops/_linalg_svd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4968860Z copying torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4970050Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4971310Z copying torch/include/ATen/ops/arctan_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4973180Z copying torch/include/ATen/ops/_efficient_attention_forward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4974220Z copying torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4975230Z copying torch/include/ATen/ops/view_as_real_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4977220Z copying torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4978140Z copying torch/include/ATen/ops/neg_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4979200Z copying torch/include/ATen/ops/argmax_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4980440Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4981670Z copying torch/include/ATen/ops/erfinv_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4983040Z copying torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4984320Z copying torch/include/ATen/ops/chain_matmul.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4985730Z copying torch/include/ATen/ops/sign_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4987080Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4988320Z copying torch/include/ATen/ops/affine_grid_generator_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4989950Z copying torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4991250Z copying torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4992330Z copying torch/include/ATen/ops/vdot_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4993540Z copying torch/include/ATen/ops/sparse_resize.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4994740Z copying torch/include/ATen/ops/_foreach_abs_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4996210Z copying torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4997410Z copying torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.4998660Z copying torch/include/ATen/ops/abs_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5000230Z copying torch/include/ATen/ops/col_indices_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5001530Z copying torch/include/ATen/ops/logical_xor_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5002540Z copying torch/include/ATen/ops/native_group_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5003770Z copying torch/include/ATen/ops/_fft_c2c_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5005250Z copying torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5006540Z copying torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5007760Z copying torch/include/ATen/ops/cat_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5009120Z copying torch/include/ATen/ops/conj_physical_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5010360Z copying torch/include/ATen/ops/argmin.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5012300Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5013330Z copying torch/include/ATen/ops/adaptive_max_pool2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5014420Z copying torch/include/ATen/ops/logspace_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5015750Z copying torch/include/ATen/ops/avg_pool2d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5021730Z copying torch/include/ATen/ops/is_same_size_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5022740Z copying torch/include/ATen/ops/igammac_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5023630Z copying torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5024660Z copying torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5025640Z copying torch/include/ATen/ops/_cast_Double_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5026510Z copying torch/include/ATen/ops/prod_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5027320Z copying torch/include/ATen/ops/ceil_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5028270Z copying torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5029300Z copying torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5030360Z copying torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5031380Z copying torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5032490Z copying torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5033500Z copying torch/include/ATen/ops/and_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5034440Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5035620Z copying torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5036790Z copying torch/include/ATen/ops/batch_norm_backward_reduce_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5037990Z copying torch/include/ATen/ops/as_strided_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5039830Z copying torch/include/ATen/ops/linalg_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5041010Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5042160Z copying torch/include/ATen/ops/sqrt_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5043220Z copying torch/include/ATen/ops/nan_to_num_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5044490Z copying torch/include/ATen/ops/vstack_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5045810Z copying torch/include/ATen/ops/fft_rfftn_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5047120Z copying torch/include/ATen/ops/normal_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5048710Z copying torch/include/ATen/ops/_sparse_csr_sum_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5049800Z copying torch/include/ATen/ops/linalg_inv_ex.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5051030Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5052710Z copying torch/include/ATen/ops/leaky_relu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5053950Z copying torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5055070Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5056200Z copying torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5057670Z copying torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5058760Z copying torch/include/ATen/ops/linalg_lu_factor_ex_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5059960Z copying torch/include/ATen/ops/_fused_sgd_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5061880Z copying torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5062870Z copying torch/include/ATen/ops/_linalg_eigh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5064070Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5065330Z copying torch/include/ATen/ops/dequantize.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5066550Z copying torch/include/ATen/ops/_fft_c2c_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5067820Z copying torch/include/ATen/ops/align_to.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5069590Z copying torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5070560Z copying torch/include/ATen/ops/replication_pad3d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5071840Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5073100Z copying torch/include/ATen/ops/acosh_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5074500Z copying torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5075710Z copying torch/include/ATen/ops/_assert_scalar.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5076920Z copying torch/include/ATen/ops/index.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5078610Z copying torch/include/ATen/ops/min_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5079630Z copying torch/include/ATen/ops/glu_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5081560Z copying torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5082640Z copying torch/include/ATen/ops/index_select_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5083940Z copying torch/include/ATen/ops/_mkldnn_reshape_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5085760Z copying torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5087000Z copying torch/include/ATen/ops/std_mean_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5088180Z copying torch/include/ATen/ops/softshrink_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5089850Z copying torch/include/ATen/ops/index_fill_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5090970Z copying torch/include/ATen/ops/repeat.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5092130Z copying torch/include/ATen/ops/_foreach_floor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5093410Z copying torch/include/ATen/ops/_nested_tensor_from_mask_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5094740Z copying torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5095910Z copying torch/include/ATen/ops/embedding_sparse_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5097180Z copying torch/include/ATen/ops/dropout_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5099080Z copying torch/include/ATen/ops/matmul.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5099980Z copying torch/include/ATen/ops/floor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5101020Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5102260Z copying torch/include/ATen/ops/_unsafe_view_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5104300Z copying torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5105370Z copying torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5106480Z copying torch/include/ATen/ops/_test_check_tensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5107710Z copying torch/include/ATen/ops/rot90_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5109080Z copying torch/include/ATen/ops/signbit_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5110310Z copying torch/include/ATen/ops/reciprocal_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5111720Z copying torch/include/ATen/ops/clamp_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5112870Z copying torch/include/ATen/ops/selu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5114490Z copying torch/include/ATen/ops/reflection_pad1d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5115780Z copying torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5117070Z copying torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5118370Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5119920Z copying torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5120990Z copying torch/include/ATen/ops/special_spherical_bessel_j0_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5122300Z copying torch/include/ATen/ops/minimum_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5123490Z copying torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5124860Z copying torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5129440Z copying torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5130350Z copying torch/include/ATen/ops/values_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5131200Z copying torch/include/ATen/ops/col2im_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5132030Z copying torch/include/ATen/ops/ge_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5132980Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5134070Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5135030Z copying torch/include/ATen/ops/cosh_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5135960Z copying torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5137020Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5138130Z copying torch/include/ATen/ops/hardtanh_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5139510Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5140850Z copying torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5142130Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5143540Z copying torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5144740Z copying torch/include/ATen/ops/atan2_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5146060Z copying torch/include/ATen/ops/sub_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5147370Z copying torch/include/ATen/ops/view_as_real_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5148720Z copying torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5150370Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5151420Z copying torch/include/ATen/ops/glu_jvp_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5152660Z copying torch/include/ATen/ops/_sobol_engine_scramble.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5153980Z copying torch/include/ATen/ops/mish_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5155230Z copying torch/include/ATen/ops/fft_rfftfreq_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5156520Z copying torch/include/ATen/ops/elu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5158400Z copying torch/include/ATen/ops/nanmean_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5159520Z copying torch/include/ATen/ops/miopen_batch_norm_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5160680Z copying torch/include/ATen/ops/linalg_cross_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5161960Z copying torch/include/ATen/ops/_fused_dropout.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5163320Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5164460Z copying torch/include/ATen/ops/addbmm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5165970Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5167260Z copying torch/include/ATen/ops/gt_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5169350Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5170610Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5171570Z copying torch/include/ATen/ops/miopen_rnn_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5172860Z copying torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5174060Z copying torch/include/ATen/ops/detach_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5175430Z copying torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5176750Z copying torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5178220Z copying torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5179790Z copying torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5181050Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5182220Z copying torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5183400Z copying torch/include/ATen/ops/conv_depthwise3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5185330Z copying torch/include/ATen/ops/norm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5186340Z copying torch/include/ATen/ops/masked_select_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5187840Z copying torch/include/ATen/ops/exponential_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5189470Z copying torch/include/ATen/ops/special_i0_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5190490Z copying torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5191570Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5192570Z copying torch/include/ATen/ops/_autocast_to_full_precision_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5193980Z copying torch/include/ATen/ops/erfinv_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5195520Z copying torch/include/ATen/ops/lcm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5197430Z copying torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5198450Z copying torch/include/ATen/ops/upsample_nearest2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5200110Z copying torch/include/ATen/ops/cross_entropy_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5201330Z copying torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5202740Z copying torch/include/ATen/ops/unsqueeze_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5204310Z copying torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5205610Z copying torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5207100Z copying torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5208490Z copying torch/include/ATen/ops/linalg_cross_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5209980Z copying torch/include/ATen/ops/gelu_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5211470Z copying torch/include/ATen/ops/_weight_int8pack_mm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5212560Z copying torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5213860Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5216210Z copying torch/include/ATen/ops/permute.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5217370Z copying torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5218880Z copying torch/include/ATen/ops/_upsample_nearest_exact1d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5220420Z copying torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5221900Z copying torch/include/ATen/ops/_sparse_semi_structured_linear.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5223090Z copying torch/include/ATen/ops/native_group_norm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5224300Z copying torch/include/ATen/ops/split_with_sizes_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5225650Z copying torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5227000Z copying torch/include/ATen/ops/_functional_assert_scalar_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5228290Z copying torch/include/ATen/ops/mse_loss_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5229990Z copying torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5231250Z copying torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5232270Z copying torch/include/ATen/ops/roll.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5238230Z copying torch/include/ATen/ops/linalg_svdvals_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5239060Z copying torch/include/ATen/ops/orgqr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5239900Z copying torch/include/ATen/ops/sigmoid_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5240790Z copying torch/include/ATen/ops/conv_transpose2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5241640Z copying torch/include/ATen/ops/layer_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5242710Z copying torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5243860Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5244770Z copying torch/include/ATen/ops/std_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5245670Z copying torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5246600Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5247420Z copying torch/include/ATen/ops/take.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5248260Z copying torch/include/ATen/ops/igammac_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5249140Z copying torch/include/ATen/ops/isin_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5250240Z copying torch/include/ATen/ops/record_stream.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5251610Z copying torch/include/ATen/ops/resize_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5252890Z copying torch/include/ATen/ops/bitwise_and_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5254320Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5255590Z copying torch/include/ATen/ops/native_group_norm_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5256980Z copying torch/include/ATen/ops/view_as_complex_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5258290Z copying torch/include/ATen/ops/fill_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5259580Z copying torch/include/ATen/ops/linear_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5261150Z copying torch/include/ATen/ops/isinf_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5262170Z copying torch/include/ATen/ops/expand_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5263630Z copying torch/include/ATen/ops/_batch_norm_with_update_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5265990Z copying torch/include/ATen/ops/_nested_get_min_seqlen_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5267080Z copying torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5268170Z copying torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5269190Z copying torch/include/ATen/ops/native_dropout_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5270470Z copying torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5271720Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5272910Z copying torch/include/ATen/ops/multinomial.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5274550Z copying torch/include/ATen/ops/alias_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5275650Z copying torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5276830Z copying torch/include/ATen/ops/allclose_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5278310Z copying torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5279490Z copying torch/include/ATen/ops/nuclear_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5280900Z copying torch/include/ATen/ops/_slow_conv2d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5282140Z copying torch/include/ATen/ops/multilabel_margin_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5283510Z copying torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5284710Z copying torch/include/ATen/ops/pairwise_distance_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5286130Z copying torch/include/ATen/ops/broadcast_to_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5288050Z copying torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5289120Z copying torch/include/ATen/ops/_nested_get_lengths_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5290450Z copying torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5291700Z copying torch/include/ATen/ops/_foreach_log.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5293790Z copying torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5294810Z copying torch/include/ATen/ops/nextafter_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5296140Z copying torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5297230Z copying torch/include/ATen/ops/_aminmax.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5298450Z copying torch/include/ATen/ops/complex_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5299920Z copying torch/include/ATen/ops/hardswish_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5301210Z copying torch/include/ATen/ops/digamma.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5303100Z copying torch/include/ATen/ops/mm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5304270Z copying torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5305460Z copying torch/include/ATen/ops/empty_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5306720Z copying torch/include/ATen/ops/triangular_solve_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5308110Z copying torch/include/ATen/ops/_pdist_forward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5309580Z copying torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5311020Z copying torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5312350Z copying torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5313570Z copying torch/include/ATen/ops/adaptive_avg_pool2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5314860Z copying torch/include/ATen/ops/bitwise_or_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5316710Z copying torch/include/ATen/ops/geometric_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5318070Z copying torch/include/ATen/ops/slow_conv_transpose2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5319510Z copying torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5320810Z copying torch/include/ATen/ops/cumprod_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5322430Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5323690Z copying torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5325420Z copying torch/include/ATen/ops/ldexp_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5326780Z copying torch/include/ATen/ops/arccosh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5328240Z copying torch/include/ATen/ops/linalg_matrix_rank.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5329360Z copying torch/include/ATen/ops/_copy_from_and_resize_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5331040Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5332690Z copying torch/include/ATen/ops/all_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5333450Z copying torch/include/ATen/ops/linalg_matrix_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5335370Z copying torch/include/ATen/ops/is_set_to_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5336270Z copying torch/include/ATen/ops/bitwise_left_shift_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5338700Z copying torch/include/ATen/ops/randn_like_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5340530Z copying torch/include/ATen/ops/rnn_relu_cell.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5342100Z copying torch/include/ATen/ops/max_pool2d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5343770Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5345360Z copying torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5346820Z copying torch/include/ATen/ops/_pack_padded_sequence_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5347580Z copying torch/include/ATen/ops/nonzero_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5349290Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5350320Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5351880Z copying torch/include/ATen/ops/mse_loss_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5353370Z copying torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5354280Z copying torch/include/ATen/ops/eye_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5356060Z copying torch/include/ATen/ops/special_exp2.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5356960Z copying torch/include/ATen/ops/_fused_adamw.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5359060Z copying torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5359710Z copying torch/include/ATen/ops/grid_sampler_3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5361490Z copying torch/include/ATen/ops/index_copy_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5362890Z copying torch/include/ATen/ops/frac_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5363840Z copying torch/include/ATen/ops/gelu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5365770Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5367200Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5368650Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5373960Z copying torch/include/ATen/ops/_pdist_forward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5374440Z copying torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5374880Z copying torch/include/ATen/ops/broadcast_tensors.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5375490Z copying torch/include/ATen/ops/slow_conv3d_forward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5375880Z copying torch/include/ATen/ops/lt_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5377570Z copying torch/include/ATen/ops/_chunk_cat.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5378950Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5380330Z copying torch/include/ATen/ops/is_distributed_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5381230Z copying torch/include/ATen/ops/nll_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5382930Z copying torch/include/ATen/ops/_masked_softmax_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5383890Z copying torch/include/ATen/ops/fft_irfftn_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5385420Z copying torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5386730Z copying torch/include/ATen/ops/slice_scatter_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5387860Z copying torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5389500Z copying torch/include/ATen/ops/fft_fftn_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5390330Z copying torch/include/ATen/ops/_fused_adagrad.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5391890Z copying torch/include/ATen/ops/all_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5393240Z copying torch/include/ATen/ops/quantized_gru_cell.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5394650Z copying torch/include/ATen/ops/eye_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5395710Z copying torch/include/ATen/ops/hypot_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5397090Z copying torch/include/ATen/ops/sqrt.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5398490Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5399410Z copying torch/include/ATen/ops/set_data_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5401010Z copying torch/include/ATen/ops/linalg_vecdot_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5402350Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5403840Z copying torch/include/ATen/ops/acosh_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5404610Z copying torch/include/ATen/ops/_convolution_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5406280Z copying torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5407760Z copying torch/include/ATen/ops/sparse_csr_tensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5409010Z copying torch/include/ATen/ops/_foreach_sinh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5409830Z copying torch/include/ATen/ops/moveaxis_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5411060Z copying torch/include/ATen/ops/positive.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5412790Z copying torch/include/ATen/ops/sum_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5414350Z copying torch/include/ATen/ops/asin_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5415890Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5416710Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5418380Z copying torch/include/ATen/ops/new_empty.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5419800Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5421290Z copying torch/include/ATen/ops/any_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5422320Z copying torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5423910Z copying torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5425280Z copying torch/include/ATen/ops/_propagate_xla_data_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5426400Z copying torch/include/ATen/ops/cudnn_convolution_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5427830Z copying torch/include/ATen/ops/_log_softmax_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5429740Z copying torch/include/ATen/ops/_foreach_round_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5431510Z copying torch/include/ATen/ops/_conj.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5433380Z copying torch/include/ATen/ops/is_coalesced_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5435070Z copying torch/include/ATen/ops/flatten.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5436550Z copying torch/include/ATen/ops/_to_dense_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5438020Z copying torch/include/ATen/ops/bitwise_or_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5439350Z copying torch/include/ATen/ops/bincount_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5440660Z copying torch/include/ATen/ops/dot_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5441620Z copying torch/include/ATen/ops/sparse_resize_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5443620Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5444420Z copying torch/include/ATen/ops/linspace_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5445970Z copying torch/include/ATen/ops/lerp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5447640Z copying torch/include/ATen/ops/nanmedian.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5449260Z copying torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5450700Z copying torch/include/ATen/ops/diagonal_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5452060Z copying torch/include/ATen/ops/sgn_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5453270Z copying torch/include/ATen/ops/_gather_sparse_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5454740Z copying torch/include/ATen/ops/topk_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5456090Z copying torch/include/ATen/ops/flip_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5457620Z copying torch/include/ATen/ops/any_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5458860Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5460170Z copying torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5461780Z copying torch/include/ATen/ops/special_entr_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5462590Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5464140Z copying torch/include/ATen/ops/where_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5465520Z copying torch/include/ATen/ops/_sparse_mm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5466820Z copying torch/include/ATen/ops/igamma.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5468260Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5469160Z copying torch/include/ATen/ops/_choose_qparams_per_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5470950Z copying torch/include/ATen/ops/fft_ihfft2.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5472430Z copying torch/include/ATen/ops/kl_div.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5473270Z copying torch/include/ATen/ops/special_legendre_polynomial_p_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5475020Z copying torch/include/ATen/ops/_mps_convolution.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5476380Z copying torch/include/ATen/ops/hardsigmoid_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5477670Z copying torch/include/ATen/ops/values_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5478640Z copying torch/include/ATen/ops/resize_as_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5480390Z copying torch/include/ATen/ops/bucketize_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5481360Z copying torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5482890Z copying torch/include/ATen/ops/_linalg_svd_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5484010Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5485670Z copying torch/include/ATen/ops/argmin_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5486630Z copying torch/include/ATen/ops/any_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5488280Z copying torch/include/ATen/ops/vsplit_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5489940Z copying torch/include/ATen/ops/_softmax_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5490650Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5492000Z copying torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5493420Z copying torch/include/ATen/ops/_mps_convolution_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5494570Z copying torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5496200Z copying torch/include/ATen/ops/value_selecting_reduction_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5497250Z copying torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5498890Z copying torch/include/ATen/ops/special_log1p_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5500490Z copying torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5501580Z copying torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5503040Z copying torch/include/ATen/ops/put_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5504160Z copying torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5505690Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5507280Z copying torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5508130Z copying torch/include/ATen/ops/glu_jvp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5509900Z copying torch/include/ATen/ops/atan_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5511220Z copying torch/include/ATen/ops/acos_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5512320Z copying torch/include/ATen/ops/log10_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5513920Z copying torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5514980Z copying torch/include/ATen/ops/_mixed_dtypes_linear_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5516290Z copying torch/include/ATen/ops/mkldnn_max_pool3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5517760Z copying torch/include/ATen/ops/binomial.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5518970Z copying torch/include/ATen/ops/quantized_max_pool1d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5520440Z copying torch/include/ATen/ops/linalg_qr_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5522210Z copying torch/include/ATen/ops/ctc_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5522760Z copying torch/include/ATen/ops/_propagate_xla_data_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5524240Z copying torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5525660Z copying torch/include/ATen/ops/index_add_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5526660Z copying torch/include/ATen/ops/norm_except_dim_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5528150Z copying torch/include/ATen/ops/log_normal_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5529980Z copying torch/include/ATen/ops/miopen_convolution_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5532080Z copying torch/include/ATen/ops/max_pool3d_with_indices_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5533680Z copying torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5534530Z copying torch/include/ATen/ops/transpose_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5536250Z copying torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5537690Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5539250Z copying torch/include/ATen/ops/smooth_l1_loss_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5540740Z copying torch/include/ATen/ops/cholesky_solve_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5542000Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5543630Z copying torch/include/ATen/ops/embedding_renorm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5544600Z copying torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5546240Z copying torch/include/ATen/ops/hardsigmoid.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5547230Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5548720Z copying torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5550370Z copying torch/include/ATen/ops/remainder_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5551240Z copying torch/include/ATen/ops/_weight_norm_interface_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5552860Z copying torch/include/ATen/ops/deg2rad.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5553840Z copying torch/include/ATen/ops/glu_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5555600Z copying torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5557070Z copying torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5557840Z copying torch/include/ATen/ops/zero_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5566840Z copying torch/include/ATen/ops/is_complex_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5567320Z copying torch/include/ATen/ops/floor_divide.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5567780Z copying torch/include/ATen/ops/soft_margin_loss_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5568200Z copying torch/include/ATen/ops/addr_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5568730Z copying torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5569170Z copying torch/include/ATen/ops/upsample_bicubic2d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5569590Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5570140Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5570610Z copying torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5571030Z copying torch/include/ATen/ops/corrcoef.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5572170Z copying torch/include/ATen/ops/linalg_tensorsolve_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5573780Z copying torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5575280Z copying torch/include/ATen/ops/special_gammaln_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5576250Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5577710Z copying torch/include/ATen/ops/erfc_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5579150Z copying torch/include/ATen/ops/ccol_indices_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5580150Z copying torch/include/ATen/ops/reflection_pad1d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5581470Z copying torch/include/ATen/ops/_foreach_asin_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5582860Z copying torch/include/ATen/ops/_fused_adam.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5584370Z copying torch/include/ATen/ops/zeros_like.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5585870Z copying torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5586800Z copying torch/include/ATen/ops/reshape_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5588390Z copying torch/include/ATen/ops/_foreach_cosh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5589570Z copying torch/include/ATen/ops/lt_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5590910Z copying torch/include/ATen/ops/slow_conv_transpose3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5592560Z copying torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5593250Z copying torch/include/ATen/ops/gt_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5595060Z copying torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5596150Z copying torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5597670Z copying torch/include/ATen/ops/replication_pad3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5598600Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5600430Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5601440Z copying torch/include/ATen/ops/unbind.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5602960Z copying torch/include/ATen/ops/scatter_reduce_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5604360Z copying torch/include/ATen/ops/unique_dim_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5605480Z copying torch/include/ATen/ops/triangular_solve_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5607420Z copying torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5608020Z copying torch/include/ATen/ops/baddbmm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5610110Z copying torch/include/ATen/ops/linear_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5610890Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5612210Z copying torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5613600Z copying torch/include/ATen/ops/geometric_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5615590Z copying torch/include/ATen/ops/multilabel_margin_loss_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5617040Z copying torch/include/ATen/ops/lstm_cell_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5618350Z copying torch/include/ATen/ops/_foreach_cos_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5619860Z copying torch/include/ATen/ops/max_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5621270Z copying torch/include/ATen/ops/outer_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5623060Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5624010Z copying torch/include/ATen/ops/vdot_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5625950Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5626880Z copying torch/include/ATen/ops/topk.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5628710Z copying torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5630090Z copying torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5631680Z copying torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5632910Z copying torch/include/ATen/ops/_cast_Short_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5634760Z copying torch/include/ATen/ops/batch_norm_gather_stats_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5636450Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5637420Z copying torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5638970Z copying torch/include/ATen/ops/batch_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5640360Z copying torch/include/ATen/ops/_to_sparse_bsc_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5641910Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5643570Z copying torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5644690Z copying torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5646220Z copying torch/include/ATen/ops/empty_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5647670Z copying torch/include/ATen/ops/q_scale_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5649400Z copying torch/include/ATen/ops/lgamma_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5650180Z copying torch/include/ATen/ops/stft_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5651670Z copying torch/include/ATen/ops/_sparse_mask_projection.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5652950Z copying torch/include/ATen/ops/aminmax_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5654390Z copying torch/include/ATen/ops/_trilinear_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5655360Z copying torch/include/ATen/ops/mse_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5656980Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5657870Z copying torch/include/ATen/ops/affine_grid_generator_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5659580Z copying torch/include/ATen/ops/sinc_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5661050Z copying torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5661980Z copying torch/include/ATen/ops/unique_dim_consecutive_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5663420Z copying torch/include/ATen/ops/nll_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5665230Z copying torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5665990Z copying torch/include/ATen/ops/quantize_per_tensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5667510Z copying torch/include/ATen/ops/avg_pool2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5668890Z copying torch/include/ATen/ops/unsqueeze_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5669980Z copying torch/include/ATen/ops/random_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5671810Z copying torch/include/ATen/ops/repeat_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5673160Z copying torch/include/ATen/ops/fractional_max_pool2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5674050Z copying torch/include/ATen/ops/linalg_matrix_rank_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5675580Z copying torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5676790Z copying torch/include/ATen/ops/output_nr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5678270Z copying torch/include/ATen/ops/slow_conv3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5679490Z copying torch/include/ATen/ops/not_equal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5680690Z copying torch/include/ATen/ops/cholesky_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5682410Z copying torch/include/ATen/ops/meshgrid.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5683620Z copying torch/include/ATen/ops/_softmax_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5685150Z copying torch/include/ATen/ops/sym_storage_offset_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5686600Z copying torch/include/ATen/ops/isneginf_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5687930Z copying torch/include/ATen/ops/hardsigmoid_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5689050Z copying torch/include/ATen/ops/unsqueeze_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5690350Z copying torch/include/ATen/ops/rand_like.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5691850Z copying torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5692960Z copying torch/include/ATen/ops/mse_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5694310Z copying torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5695820Z copying torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5696890Z copying torch/include/ATen/ops/grid_sampler_2d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5698370Z copying torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5699530Z copying torch/include/ATen/ops/float_power_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5701230Z copying torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5702220Z copying torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5703690Z copying torch/include/ATen/ops/slow_conv_dilated3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5705120Z copying torch/include/ATen/ops/maximum_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5706470Z copying torch/include/ATen/ops/adaptive_max_pool3d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5707730Z copying torch/include/ATen/ops/multi_margin_loss_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5709040Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5710640Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5711730Z copying torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5712970Z copying torch/include/ATen/ops/cudnn_batch_norm_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5714310Z copying torch/include/ATen/ops/cosh_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5715840Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5717300Z copying torch/include/ATen/ops/asinh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5718800Z copying torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5719540Z copying torch/include/ATen/ops/tanh_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5721180Z copying torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5722000Z copying torch/include/ATen/ops/_masked_scale.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5723800Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5724680Z copying torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5726200Z copying torch/include/ATen/ops/diff_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5727680Z copying torch/include/ATen/ops/fmax_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5728580Z copying torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5730140Z copying torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5731020Z copying torch/include/ATen/ops/eye_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5732340Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5733610Z copying torch/include/ATen/ops/reflection_pad2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5735170Z copying torch/include/ATen/ops/ceil_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5736800Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5738200Z copying torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5739070Z copying torch/include/ATen/ops/sym_storage_offset.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5740800Z copying torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5741720Z copying torch/include/ATen/ops/fmax_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5743320Z copying torch/include/ATen/ops/pixel_unshuffle_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5744860Z copying torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5745800Z copying torch/include/ATen/ops/_log_softmax_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5747440Z copying torch/include/ATen/ops/_masked_softmax_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5748770Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5749810Z copying torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5751120Z copying torch/include/ATen/ops/and.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5752420Z copying torch/include/ATen/ops/slow_conv_dilated2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5753720Z copying torch/include/ATen/ops/_sparse_csr_sum_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5755550Z copying torch/include/ATen/ops/replication_pad3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5756710Z copying torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5758110Z copying torch/include/ATen/ops/gru_cell_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5759420Z copying torch/include/ATen/ops/logaddexp2_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5760940Z copying torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5762500Z copying torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5763390Z copying torch/include/ATen/ops/searchsorted_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5764980Z copying torch/include/ATen/ops/addmv_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5766930Z copying torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5773470Z copying torch/include/ATen/ops/masked_scatter_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5774170Z copying torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5774800Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5775200Z copying torch/include/ATen/ops/clamp_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5775720Z copying torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5776340Z copying torch/include/ATen/ops/hann_window.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5777760Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5779490Z copying torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5781270Z copying torch/include/ATen/ops/log1p_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5782360Z copying torch/include/ATen/ops/_cast_Int.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5784010Z copying torch/include/ATen/ops/nextafter_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5785260Z copying torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5786540Z copying torch/include/ATen/ops/erf_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5787860Z copying torch/include/ATen/ops/as_strided_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5789260Z copying torch/include/ATen/ops/_flash_attention_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5790550Z copying torch/include/ATen/ops/mkldnn_rnn_layer_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5792340Z copying torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5798670Z copying torch/include/ATen/ops/isneginf_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5800100Z copying torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5801400Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5802860Z copying torch/include/ATen/ops/concatenate_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5803770Z copying torch/include/ATen/ops/bitwise_or_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5805380Z copying torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5806750Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5807890Z copying torch/include/ATen/ops/clamp_min_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5809350Z copying torch/include/ATen/ops/argmin_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5810430Z copying torch/include/ATen/ops/_index_put_impl_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5812770Z copying torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5814290Z copying torch/include/ATen/ops/erfc_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5816180Z copying torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5817210Z copying torch/include/ATen/ops/lstm_mps_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5818610Z copying torch/include/ATen/ops/range.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5820420Z copying torch/include/ATen/ops/select_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5821630Z copying torch/include/ATen/ops/_foreach_erf_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5822950Z copying torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5824170Z copying torch/include/ATen/ops/sparse_resize_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5825740Z copying torch/include/ATen/ops/mkldnn_linear_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5827270Z copying torch/include/ATen/ops/sinc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5828540Z copying torch/include/ATen/ops/_conj_physical.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5829740Z copying torch/include/ATen/ops/square_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5831110Z copying torch/include/ATen/ops/copysign_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5832520Z copying torch/include/ATen/ops/amin_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5833950Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5835420Z copying torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5837020Z copying torch/include/ATen/ops/margin_ranking_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5837880Z copying torch/include/ATen/ops/special_psi_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5839840Z copying torch/include/ATen/ops/special_ndtri_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5840530Z copying torch/include/ATen/ops/to_sparse.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5842230Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5843370Z copying torch/include/ATen/ops/_foreach_erfc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5844750Z copying torch/include/ATen/ops/selu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5846030Z copying torch/include/ATen/ops/_cdist_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5847220Z copying torch/include/ATen/ops/log_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5848620Z copying torch/include/ATen/ops/range_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5849860Z copying torch/include/ATen/ops/aminmax_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5851330Z copying torch/include/ATen/ops/linalg_solve_triangular.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5853190Z copying torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5854300Z copying torch/include/ATen/ops/cov.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5856200Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5857050Z copying torch/include/ATen/ops/relu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5858640Z copying torch/include/ATen/ops/unique_dim_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5859860Z copying torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5861310Z copying torch/include/ATen/ops/min.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5862440Z copying torch/include/ATen/ops/chain_matmul_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5863850Z copying torch/include/ATen/ops/tile_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5865260Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5866820Z copying torch/include/ATen/ops/_foreach_reciprocal_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5868290Z copying torch/include/ATen/ops/hardshrink_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5869340Z copying torch/include/ATen/ops/unique_dim_consecutive.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5870800Z copying torch/include/ATen/ops/is_nonzero_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5872160Z copying torch/include/ATen/ops/_prelu_kernel_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5873560Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5874640Z copying torch/include/ATen/ops/kthvalue_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5876360Z copying torch/include/ATen/ops/linspace_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5877310Z copying torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5878980Z copying torch/include/ATen/ops/slice_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5880410Z copying torch/include/ATen/ops/_test_parallel_materialize.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5881370Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5883170Z copying torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5884770Z copying torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5887160Z copying torch/include/ATen/ops/int_repr_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5887780Z copying torch/include/ATen/ops/ne_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5889300Z copying torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5890700Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5892280Z copying torch/include/ATen/ops/upsample_nearest2d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5893650Z copying torch/include/ATen/ops/_foreach_mul.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5894740Z copying torch/include/ATen/ops/upsample_linear1d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5896460Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5897220Z copying torch/include/ATen/ops/_int_mm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5898860Z copying torch/include/ATen/ops/upsample_linear1d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5900420Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5901500Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5902880Z copying torch/include/ATen/ops/fill.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5903990Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5905590Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5907390Z copying torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5908260Z copying torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5909640Z copying torch/include/ATen/ops/log1p_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5911120Z copying torch/include/ATen/ops/triplet_margin_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5911860Z copying torch/include/ATen/ops/lcm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5913420Z copying torch/include/ATen/ops/argwhere_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5914590Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5915950Z copying torch/include/ATen/ops/_foreach_frac.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5917470Z copying torch/include/ATen/ops/orgqr_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5918940Z copying torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5919890Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5921220Z copying torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5922700Z copying torch/include/ATen/ops/sgn_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5924130Z copying torch/include/ATen/ops/nanmedian_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5925020Z copying torch/include/ATen/ops/crow_indices_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5926610Z copying torch/include/ATen/ops/fft_ihfft_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5928120Z copying torch/include/ATen/ops/put_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5928980Z copying torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5930630Z copying torch/include/ATen/ops/std_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5932040Z copying torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5933290Z copying torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5934190Z copying torch/include/ATen/ops/lerp_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5935870Z copying torch/include/ATen/ops/clamp_max.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5937160Z copying torch/include/ATen/ops/_int_mm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5938920Z copying torch/include/ATen/ops/var_mean_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5940660Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5941940Z copying torch/include/ATen/ops/arctan_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5943410Z copying torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5944720Z copying torch/include/ATen/ops/div_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5945810Z copying torch/include/ATen/ops/round_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5947670Z copying torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5948640Z copying torch/include/ATen/ops/hypot_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5950120Z copying torch/include/ATen/ops/nll_loss2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5951550Z copying torch/include/ATen/ops/to_mkldnn_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5952940Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5954380Z copying torch/include/ATen/ops/empty_permuted_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5955520Z copying torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5957050Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5958020Z copying torch/include/ATen/ops/lt_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5959620Z copying torch/include/ATen/ops/linalg_householder_product_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5961230Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5962610Z copying torch/include/ATen/ops/cudnn_grid_sampler_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5964100Z copying torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5965120Z copying torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5966650Z copying torch/include/ATen/ops/slice_scatter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5968110Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5969510Z copying torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5970400Z copying torch/include/ATen/ops/_nnz.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5971940Z copying torch/include/ATen/ops/grid_sampler_2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5973420Z copying torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5974700Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5981540Z copying torch/include/ATen/ops/sparse_compressed_tensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5982600Z copying torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5983560Z copying torch/include/ATen/ops/hamming_window_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5984440Z copying torch/include/ATen/ops/nll_loss_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5985290Z copying torch/include/ATen/ops/zeros_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5986270Z copying torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5987330Z copying torch/include/ATen/ops/special_modified_bessel_k0_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5988230Z copying torch/include/ATen/ops/_convolution.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5989080Z copying torch/include/ATen/ops/special_bessel_j1.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5990120Z copying torch/include/ATen/ops/conv3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5991240Z copying torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5993350Z copying torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5994490Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5995690Z copying torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5996850Z copying torch/include/ATen/ops/chunk_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5998420Z copying torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.5999690Z copying torch/include/ATen/ops/upsample_nearest2d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6001070Z copying torch/include/ATen/ops/special_modified_bessel_k1_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6002270Z copying torch/include/ATen/ops/sgn_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6003710Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6005200Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6007030Z copying torch/include/ATen/ops/split_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6008170Z copying torch/include/ATen/ops/topk_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6010160Z copying torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6011410Z copying torch/include/ATen/ops/sym_numel_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6012940Z copying torch/include/ATen/ops/leaky_relu_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6014160Z copying torch/include/ATen/ops/mish_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6015650Z copying torch/include/ATen/ops/_values_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6017340Z copying torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6018600Z copying torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6019740Z copying torch/include/ATen/ops/bitwise_or_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6020920Z copying torch/include/ATen/ops/sym_numel_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6022480Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6023670Z copying torch/include/ATen/ops/log_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6025560Z copying torch/include/ATen/ops/_to_sparse.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6026900Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6028020Z copying torch/include/ATen/ops/_logcumsumexp_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6029260Z copying torch/include/ATen/ops/pow_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6031440Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6032500Z copying torch/include/ATen/ops/_foreach_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6034490Z copying torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6035870Z copying torch/include/ATen/ops/linalg_solve_triangular_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6036980Z copying torch/include/ATen/ops/conj_physical_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6038260Z copying torch/include/ATen/ops/silu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6039480Z copying torch/include/ATen/ops/asin.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6040900Z copying torch/include/ATen/ops/multinomial_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6042160Z copying torch/include/ATen/ops/_spsolve_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6043590Z copying torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6044890Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6046250Z copying torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6047600Z copying torch/include/ATen/ops/sspaddmm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6048980Z copying torch/include/ATen/ops/maximum_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6050420Z copying torch/include/ATen/ops/_batch_norm_impl_index.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6052240Z copying torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6053280Z copying torch/include/ATen/ops/linalg_eigh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6054780Z copying torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6056220Z copying torch/include/ATen/ops/quantized_max_pool3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6057630Z copying torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6059150Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6060540Z copying torch/include/ATen/ops/_cummax_helper_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6062350Z copying torch/include/ATen/ops/special_i1_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6063390Z copying torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6064640Z copying torch/include/ATen/ops/sparse_compressed_tensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6072120Z copying torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6073170Z copying torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6074230Z copying torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6075130Z copying torch/include/ATen/ops/_cast_Half.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6076230Z copying torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6077410Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6078670Z copying torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6079690Z copying torch/include/ATen/ops/elu_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6080650Z copying torch/include/ATen/ops/fmax_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6081470Z copying torch/include/ATen/ops/_to_sparse_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6082310Z copying torch/include/ATen/ops/addr_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6083200Z copying torch/include/ATen/ops/threshold_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6084070Z copying torch/include/ATen/ops/not_equal_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6084920Z copying torch/include/ATen/ops/xlogy_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6085800Z copying torch/include/ATen/ops/special_exp2_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6086930Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6088050Z copying torch/include/ATen/ops/special_bessel_j0_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6088990Z copying torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6090150Z copying torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6091120Z copying torch/include/ATen/ops/view_as_complex_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6092170Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6093590Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6094840Z copying torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6096120Z copying torch/include/ATen/ops/special_bessel_j1_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6097360Z copying torch/include/ATen/ops/_unsafe_index_put.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6099380Z copying torch/include/ATen/ops/row_indices_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6100640Z copying torch/include/ATen/ops/multiply_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6101670Z copying torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6102800Z copying torch/include/ATen/ops/_dim_arange_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6104130Z copying torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6105340Z copying torch/include/ATen/ops/to_sparse_csc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6106670Z copying torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6107940Z copying torch/include/ATen/ops/upsample_nearest2d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6109260Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6110960Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6112120Z copying torch/include/ATen/ops/equal_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6113420Z copying torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6114570Z copying torch/include/ATen/ops/xor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6115870Z copying torch/include/ATen/ops/special_softmax.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6117290Z copying torch/include/ATen/ops/scatter_reduce.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6118380Z copying torch/include/ATen/ops/slogdet_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6119890Z copying torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6120940Z copying torch/include/ATen/ops/std_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6122430Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6123960Z copying torch/include/ATen/ops/_foreach_log1p_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6125230Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6133940Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6136260Z copying torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6137380Z copying torch/include/ATen/ops/fractional_max_pool2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6138300Z copying torch/include/ATen/ops/hspmm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6139570Z copying torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6140940Z copying torch/include/ATen/ops/take_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6142390Z copying torch/include/ATen/ops/segment_reduce_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6143890Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6145180Z copying torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6147260Z copying torch/include/ATen/ops/squeeze_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6148450Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6149430Z copying torch/include/ATen/ops/less_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6150470Z copying torch/include/ATen/ops/_shape_as_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6151840Z copying torch/include/ATen/ops/mv_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6153490Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6155230Z copying torch/include/ATen/ops/special_legendre_polynomial_p_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6156550Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6160380Z copying torch/include/ATen/ops/threshold_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6161280Z copying torch/include/ATen/ops/clamp_min_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6162280Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6163280Z copying torch/include/ATen/ops/mkldnn_max_pool3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6164210Z copying torch/include/ATen/ops/_mps_convolution_transpose_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6165100Z copying torch/include/ATen/ops/cat_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6165930Z copying torch/include/ATen/ops/swapdims_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6166840Z copying torch/include/ATen/ops/rrelu_with_noise_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6173930Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6174870Z copying torch/include/ATen/ops/_to_sparse_csc_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6175770Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6176670Z copying torch/include/ATen/ops/rnn_tanh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6177570Z copying torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6178520Z copying torch/include/ATen/ops/special_multigammaln_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6179500Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6180520Z copying torch/include/ATen/ops/amax_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6181530Z copying torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6182550Z copying torch/include/ATen/ops/to_dense_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6183450Z copying torch/include/ATen/ops/reflection_pad3d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6184450Z copying torch/include/ATen/ops/nan_to_num_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6185360Z copying torch/include/ATen/ops/_cummin_helper_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6186320Z copying torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6187440Z copying torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6188510Z copying torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6189390Z copying torch/include/ATen/ops/log10_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6190650Z copying torch/include/ATen/ops/_test_parallel_materialize_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6192120Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6193480Z copying torch/include/ATen/ops/bitwise_left_shift.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6194610Z copying torch/include/ATen/ops/_pad_circular_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6196020Z copying torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6197600Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6199040Z copying torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6200010Z copying torch/include/ATen/ops/frobenius_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6201290Z copying torch/include/ATen/ops/count_nonzero_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6202570Z copying torch/include/ATen/ops/rsub_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6203820Z copying torch/include/ATen/ops/linalg_qr_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6205150Z copying torch/include/ATen/ops/slow_conv_transpose2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6206690Z copying torch/include/ATen/ops/_linalg_det_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6207900Z copying torch/include/ATen/ops/tanh_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6210520Z copying torch/include/ATen/ops/_foreach_lgamma_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6211420Z copying torch/include/ATen/ops/isin_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6212330Z copying torch/include/ATen/ops/ne_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6213200Z copying torch/include/ATen/ops/_linalg_slogdet_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6214750Z copying torch/include/ATen/ops/multinomial_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6215710Z copying torch/include/ATen/ops/_foreach_max_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6217140Z copying torch/include/ATen/ops/tan_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6218850Z copying torch/include/ATen/ops/multinomial_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6220100Z copying torch/include/ATen/ops/new_empty_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6221840Z copying torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6223290Z copying torch/include/ATen/ops/all_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6224720Z copying torch/include/ATen/ops/rms_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6226230Z copying torch/include/ATen/ops/to_dense_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6228030Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6229560Z copying torch/include/ATen/ops/flip_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6230850Z copying torch/include/ATen/ops/svd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6232460Z copying torch/include/ATen/ops/mm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6233850Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6235650Z copying torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6237200Z copying torch/include/ATen/ops/special_polygamma_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6238900Z copying torch/include/ATen/ops/rshift_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6240420Z copying torch/include/ATen/ops/log2_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6242340Z copying torch/include/ATen/ops/special_i1e_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6243670Z copying torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6245600Z copying torch/include/ATen/ops/squeeze_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6246710Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6248030Z copying torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6249310Z copying torch/include/ATen/ops/is_leaf_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6250650Z copying torch/include/ATen/ops/maximum_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6251970Z copying torch/include/ATen/ops/asinh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6253380Z copying torch/include/ATen/ops/broadcast_to_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6254670Z copying torch/include/ATen/ops/_nested_get_lengths_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6256050Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6257770Z copying torch/include/ATen/ops/tril_indices.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6258740Z copying torch/include/ATen/ops/sqrt_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6261470Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6262820Z copying torch/include/ATen/ops/randint_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6264210Z copying torch/include/ATen/ops/slogdet.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6266030Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6267260Z copying torch/include/ATen/ops/_foreach_erf.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6268560Z copying torch/include/ATen/ops/_functional_assert_scalar.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6270310Z copying torch/include/ATen/ops/_lazy_clone.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6271330Z copying torch/include/ATen/ops/mps_convolution_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6273480Z copying torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6274790Z copying torch/include/ATen/ops/equal_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6276060Z copying torch/include/ATen/ops/empty_quantized_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6277380Z copying torch/include/ATen/ops/special_digamma.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6278890Z copying torch/include/ATen/ops/fractional_max_pool3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6280050Z copying torch/include/ATen/ops/unfold_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6281960Z copying torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6282970Z copying torch/include/ATen/ops/all_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6284120Z copying torch/include/ATen/ops/cross.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6286040Z copying torch/include/ATen/ops/_convolution_double_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6287190Z copying torch/include/ATen/ops/gelu_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6288470Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6289700Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6291090Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6292510Z copying torch/include/ATen/ops/fmin_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6293780Z copying torch/include/ATen/ops/log1p.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6295170Z copying torch/include/ATen/ops/less.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6296350Z copying torch/include/ATen/ops/tensordot.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6297760Z copying torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6298970Z copying torch/include/ATen/ops/_sample_dirichlet_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6300360Z copying torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6301580Z copying torch/include/ATen/ops/log2.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6303090Z copying torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6304280Z copying torch/include/ATen/ops/linalg_cholesky_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6305650Z copying torch/include/ATen/ops/div_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6307780Z copying torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6308870Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6309790Z copying torch/include/ATen/ops/nll_loss_forward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6310920Z copying torch/include/ATen/ops/bitwise_not_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6312250Z copying torch/include/ATen/ops/_indices_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6313700Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6314950Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6316950Z copying torch/include/ATen/ops/slow_conv_dilated2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6318260Z copying torch/include/ATen/ops/_foreach_acos_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6319450Z copying torch/include/ATen/ops/gradient_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6320780Z copying torch/include/ATen/ops/conv_transpose1d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6322340Z copying torch/include/ATen/ops/or_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6323770Z copying torch/include/ATen/ops/smooth_l1_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6325110Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6326460Z copying torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6327830Z copying torch/include/ATen/ops/median_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6329830Z copying torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6330980Z copying torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6332080Z copying torch/include/ATen/ops/atleast_3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6333240Z copying torch/include/ATen/ops/_chunk_cat_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6334760Z copying torch/include/ATen/ops/_functional_sym_constrain_range_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6335880Z copying torch/include/ATen/ops/im2col.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6337390Z copying torch/include/ATen/ops/upsample_nearest3d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6338780Z copying torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6339910Z copying torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6341210Z copying torch/include/ATen/ops/_mps_convolution_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6343260Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6344230Z copying torch/include/ATen/ops/retains_grad_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6345610Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6346860Z copying torch/include/ATen/ops/sign_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6347960Z copying torch/include/ATen/ops/empty_like.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6350520Z copying torch/include/ATen/ops/gelu_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6351960Z copying torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6353280Z copying torch/include/ATen/ops/elu_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6354560Z copying torch/include/ATen/ops/output_nr_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6356430Z copying torch/include/ATen/ops/sqrt_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6357430Z copying torch/include/ATen/ops/linalg_lstsq.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6359240Z copying torch/include/ATen/ops/count_nonzero.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6360330Z copying torch/include/ATen/ops/feature_alpha_dropout.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6361510Z copying torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6362910Z copying torch/include/ATen/ops/softplus_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6365100Z copying torch/include/ATen/ops/trunc_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6366340Z copying torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6367660Z copying torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6368730Z copying torch/include/ATen/ops/as_strided_scatter_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6369950Z copying torch/include/ATen/ops/special_i0e_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6371190Z copying torch/include/ATen/ops/norm_except_dim_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6372600Z copying torch/include/ATen/ops/sort_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6373890Z copying torch/include/ATen/ops/logit_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6375310Z copying torch/include/ATen/ops/_stack_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6376700Z copying torch/include/ATen/ops/fft_hfftn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6378060Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6379420Z copying torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6380740Z copying torch/include/ATen/ops/view_as_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6382130Z copying torch/include/ATen/ops/grid_sampler.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6383280Z copying torch/include/ATen/ops/linalg_lu_solve.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6384520Z copying torch/include/ATen/ops/divide.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6386390Z copying torch/include/ATen/ops/_unsafe_masked_index.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6387540Z copying torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6388630Z copying torch/include/ATen/ops/is_neg.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6389860Z copying torch/include/ATen/ops/replication_pad2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6391730Z copying torch/include/ATen/ops/_resize_output_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6392780Z copying torch/include/ATen/ops/_fused_adamw_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6393780Z copying torch/include/ATen/ops/slice_inverse_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6395090Z copying torch/include/ATen/ops/hardswish_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6396830Z copying torch/include/ATen/ops/fft_ihfft2_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6398130Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6399140Z copying torch/include/ATen/ops/values_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6400270Z copying torch/include/ATen/ops/feature_dropout.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6402090Z copying torch/include/ATen/ops/resize_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6403240Z copying torch/include/ATen/ops/adaptive_max_pool2d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6404430Z copying torch/include/ATen/ops/gt_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6406210Z copying torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6407240Z copying torch/include/ATen/ops/special_xlog1py_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6408520Z copying torch/include/ATen/ops/linalg_inv_ex_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6409880Z copying torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6411340Z copying torch/include/ATen/ops/tril_indices_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6412440Z copying torch/include/ATen/ops/threshold_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6413780Z copying torch/include/ATen/ops/sparse_bsr_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6415010Z copying torch/include/ATen/ops/max_pool2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6416780Z copying torch/include/ATen/ops/tensor_split_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6417790Z copying torch/include/ATen/ops/diagonal_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6418980Z copying torch/include/ATen/ops/std_mean_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6420290Z copying torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6421700Z copying torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6423080Z copying torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6424170Z copying torch/include/ATen/ops/expand_as.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6425400Z copying torch/include/ATen/ops/adaptive_max_pool2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6426640Z copying torch/include/ATen/ops/le_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6428010Z copying torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6429380Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6430780Z copying torch/include/ATen/ops/hardshrink_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6432160Z copying torch/include/ATen/ops/addmv_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6433420Z copying torch/include/ATen/ops/to_sparse_bsc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6434950Z copying torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6436230Z copying torch/include/ATen/ops/_sobol_engine_scramble_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6437600Z copying torch/include/ATen/ops/slogdet_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6438870Z copying torch/include/ATen/ops/native_dropout_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6440090Z copying torch/include/ATen/ops/hardswish_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6441330Z copying torch/include/ATen/ops/lshift_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6442640Z copying torch/include/ATen/ops/set_data_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6444800Z copying torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6445960Z copying torch/include/ATen/ops/tril_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6447050Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6449060Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6450170Z copying torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6451560Z copying torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6452840Z copying torch/include/ATen/ops/sinh_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6454610Z copying torch/include/ATen/ops/sub_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6455640Z copying torch/include/ATen/ops/glu_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6456880Z copying torch/include/ATen/ops/fmax.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6458710Z copying torch/include/ATen/ops/_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6459830Z copying torch/include/ATen/ops/cudnn_batch_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6461050Z copying torch/include/ATen/ops/lcm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6462200Z copying torch/include/ATen/ops/atan_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6463590Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6464780Z copying torch/include/ATen/ops/_unique2_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6466180Z copying torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6467440Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6469370Z copying torch/include/ATen/ops/new_full_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6470560Z copying torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6471690Z copying torch/include/ATen/ops/logspace.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6473350Z copying torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6474800Z copying torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6476470Z copying torch/include/ATen/ops/to_mkldnn_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6477550Z copying torch/include/ATen/ops/linalg_eigvalsh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6479530Z copying torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6487030Z copying torch/include/ATen/ops/linalg_inv_ex_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6488090Z copying torch/include/ATen/ops/unsqueeze.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6488920Z copying torch/include/ATen/ops/isinf_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6489750Z copying torch/include/ATen/ops/_foreach_max.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6490570Z copying torch/include/ATen/ops/floor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6491390Z copying torch/include/ATen/ops/where_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6492400Z copying torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6493430Z copying torch/include/ATen/ops/special_log_softmax_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6494360Z copying torch/include/ATen/ops/_addmm_activation_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6495240Z copying torch/include/ATen/ops/clamp_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6496130Z copying torch/include/ATen/ops/special_hermite_polynomial_h.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6497000Z copying torch/include/ATen/ops/set_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6497850Z copying torch/include/ATen/ops/bucketize_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6498720Z copying torch/include/ATen/ops/asinh_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6499700Z copying torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6501010Z copying torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6502270Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6503530Z copying torch/include/ATen/ops/_conj_physical_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6504900Z copying torch/include/ATen/ops/_sparse_sum_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6506280Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6507440Z copying torch/include/ATen/ops/alias.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6508780Z copying torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6510110Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6511350Z copying torch/include/ATen/ops/fft_fft_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6512760Z copying torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6514010Z copying torch/include/ATen/ops/special_i1e_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6515350Z copying torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6516610Z copying torch/include/ATen/ops/poisson.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6517970Z copying torch/include/ATen/ops/special_hermite_polynomial_h_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6519410Z copying torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6520620Z copying torch/include/ATen/ops/replication_pad1d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6521910Z copying torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6523210Z copying torch/include/ATen/ops/nan_to_num_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6524510Z copying torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6527010Z copying torch/include/ATen/ops/logspace_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6527980Z copying torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6528930Z copying torch/include/ATen/ops/conj_physical_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6530030Z copying torch/include/ATen/ops/heaviside.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6531060Z copying torch/include/ATen/ops/arccosh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6532440Z copying torch/include/ATen/ops/_mkldnn_reshape.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6533590Z copying torch/include/ATen/ops/linalg_slogdet_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6534900Z copying torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6536160Z copying torch/include/ATen/ops/addcdiv_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6537950Z copying torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6539150Z copying torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6540360Z copying torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6541460Z copying torch/include/ATen/ops/aminmax_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6542800Z copying torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6544110Z copying torch/include/ATen/ops/_linalg_det_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6546160Z copying torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6547240Z copying torch/include/ATen/ops/_coalesce_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6548550Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6549970Z copying torch/include/ATen/ops/batch_norm_backward_elemt_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6551290Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6552530Z copying torch/include/ATen/ops/log_sigmoid_forward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6554110Z copying torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6555280Z copying torch/include/ATen/ops/special_i1_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6557270Z copying torch/include/ATen/ops/index_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6558770Z copying torch/include/ATen/ops/equal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6560110Z copying torch/include/ATen/ops/_unique2_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6561510Z copying torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6562920Z copying torch/include/ATen/ops/acos_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6564150Z copying torch/include/ATen/ops/heaviside_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6565550Z copying torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6566860Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6568220Z copying torch/include/ATen/ops/heaviside_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6569650Z copying torch/include/ATen/ops/_nested_view_from_jagged_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6570880Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6572090Z copying torch/include/ATen/ops/_fw_primal_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6573480Z copying torch/include/ATen/ops/_nested_tensor_from_mask.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6574910Z copying torch/include/ATen/ops/sparse_bsr_tensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6576140Z copying torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6577380Z copying torch/include/ATen/ops/sum_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6578540Z copying torch/include/ATen/ops/searchsorted.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6580050Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6581390Z copying torch/include/ATen/ops/linalg_solve_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6582470Z copying torch/include/ATen/ops/linalg_solve_ex_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6583770Z copying torch/include/ATen/ops/bitwise_and.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6585030Z copying torch/include/ATen/ops/instance_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6586310Z copying torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6587670Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6589000Z copying torch/include/ATen/ops/_slow_conv2d_forward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6590350Z copying torch/include/ATen/ops/embedding_dense_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6597920Z copying torch/include/ATen/ops/geqrf_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6598830Z copying torch/include/ATen/ops/tile.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6599700Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6600660Z copying torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6601590Z copying torch/include/ATen/ops/_foreach_clamp_min_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6602430Z copying torch/include/ATen/ops/nanmean.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6603330Z copying torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6604350Z copying torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6605380Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6606480Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6607540Z copying torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6608500Z copying torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6609550Z copying torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6610510Z copying torch/include/ATen/ops/topk_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6611360Z copying torch/include/ATen/ops/tanh_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6612200Z copying torch/include/ATen/ops/xlogy_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6613090Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6614180Z copying torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6615340Z copying torch/include/ATen/ops/softplus_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6616670Z copying torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6617880Z copying torch/include/ATen/ops/scalar_tensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6619050Z copying torch/include/ATen/ops/embedding_bag_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6620260Z copying torch/include/ATen/ops/rnn_relu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6621580Z copying torch/include/ATen/ops/special_i1e_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6622840Z copying torch/include/ATen/ops/adaptive_avg_pool3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6624470Z copying torch/include/ATen/ops/as_strided_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6625930Z copying torch/include/ATen/ops/ones_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6627390Z copying torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6628740Z copying torch/include/ATen/ops/cholesky_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6630040Z copying torch/include/ATen/ops/triu_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6631780Z copying torch/include/ATen/ops/count_nonzero_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6632910Z copying torch/include/ATen/ops/eq_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6633990Z copying torch/include/ATen/ops/fft_rfftn_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6635560Z copying torch/include/ATen/ops/reflection_pad2d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6636700Z copying torch/include/ATen/ops/hypot_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6638510Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6639620Z copying torch/include/ATen/ops/feature_dropout_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6640830Z copying torch/include/ATen/ops/gelu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6642230Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6643470Z copying torch/include/ATen/ops/q_per_channel_zero_points.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6644740Z copying torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6646080Z copying torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6647310Z copying torch/include/ATen/ops/isclose.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6649110Z copying torch/include/ATen/ops/view_as_complex.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6650180Z copying torch/include/ATen/ops/lstm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6651680Z copying torch/include/ATen/ops/_linalg_eigvals_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6652970Z copying torch/include/ATen/ops/_mps_convolution_transpose_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6654140Z copying torch/include/ATen/ops/kthvalue.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6655270Z copying torch/include/ATen/ops/_euclidean_dist_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6656650Z copying torch/include/ATen/ops/replication_pad1d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6657920Z copying torch/include/ATen/ops/sin_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6659340Z copying torch/include/ATen/ops/unsafe_chunk_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6660670Z copying torch/include/ATen/ops/_foreach_minimum_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6663320Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6664410Z copying torch/include/ATen/ops/select_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6665490Z copying torch/include/ATen/ops/clamp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6666870Z copying torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6668050Z copying torch/include/ATen/ops/_foreach_maximum_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6669520Z copying torch/include/ATen/ops/linalg_cholesky_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6670780Z copying torch/include/ATen/ops/hamming_window.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6672170Z copying torch/include/ATen/ops/flatten_dense_tensors_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6673460Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6674850Z copying torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6676540Z copying torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6677890Z copying torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6679100Z copying torch/include/ATen/ops/max_pool2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6680540Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6681850Z copying torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6683260Z copying torch/include/ATen/ops/linalg_lu_factor_ex.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6684800Z copying torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6685930Z copying torch/include/ATen/ops/unique_consecutive_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6687450Z copying torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6688830Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6690230Z copying torch/include/ATen/ops/_neg_view_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6690990Z copying torch/include/ATen/ops/trapezoid_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6692560Z copying torch/include/ATen/ops/bitwise_xor_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6694140Z copying torch/include/ATen/ops/tanh_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6695040Z copying torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6696790Z copying torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6697850Z copying torch/include/ATen/ops/logical_not_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6699550Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6700380Z copying torch/include/ATen/ops/avg_pool1d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6702080Z copying torch/include/ATen/ops/tril_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6703350Z copying torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6704640Z copying torch/include/ATen/ops/dsplit_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6705970Z copying torch/include/ATen/ops/is_vulkan_available_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6706870Z copying torch/include/ATen/ops/resolve_neg.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6708480Z copying torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6709570Z copying torch/include/ATen/ops/rad2deg.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6711030Z copying torch/include/ATen/ops/_mps_convolution_transpose.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6712890Z copying torch/include/ATen/ops/_segment_reduce_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6714670Z copying torch/include/ATen/ops/special_logit_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6715840Z copying torch/include/ATen/ops/_cummin_helper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6717830Z copying torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6719100Z copying torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6720550Z copying torch/include/ATen/ops/_foreach_addcmul_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6722090Z copying torch/include/ATen/ops/split_with_sizes_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6723740Z copying torch/include/ATen/ops/nll_loss_nd_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6725450Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6726850Z copying torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6728190Z copying torch/include/ATen/ops/type_as.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6729680Z copying torch/include/ATen/ops/dot_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6731040Z copying torch/include/ATen/ops/hardswish_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6732520Z copying torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6733770Z copying torch/include/ATen/ops/leaky_relu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6734990Z copying torch/include/ATen/ops/_masked_softmax.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6743180Z copying torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6743900Z copying torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6744300Z copying torch/include/ATen/ops/sign_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6744720Z copying torch/include/ATen/ops/linalg_tensorsolve.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6745120Z copying torch/include/ATen/ops/argwhere_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6745520Z copying torch/include/ATen/ops/erfinv_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6745930Z copying torch/include/ATen/ops/resolve_neg_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6746360Z copying torch/include/ATen/ops/scatter_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6747190Z copying torch/include/ATen/ops/_triton_multi_head_attention.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6748340Z copying torch/include/ATen/ops/alpha_dropout.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6749830Z copying torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6751160Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6752380Z copying torch/include/ATen/ops/stride_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6753730Z copying torch/include/ATen/ops/soft_margin_loss_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6754940Z copying torch/include/ATen/ops/lift.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6756350Z copying torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6757650Z copying torch/include/ATen/ops/atan2_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6758800Z copying torch/include/ATen/ops/_sparse_broadcast_to_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6760360Z copying torch/include/ATen/ops/_foreach_floor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6761670Z copying torch/include/ATen/ops/acos_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6762870Z copying torch/include/ATen/ops/_fused_dropout_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6764320Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6765810Z copying torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6766880Z copying torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6768320Z copying torch/include/ATen/ops/stride.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6769780Z copying torch/include/ATen/ops/addmv_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6771180Z copying torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6772010Z copying torch/include/ATen/ops/log_normal_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6773770Z copying torch/include/ATen/ops/align_to_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6774660Z copying torch/include/ATen/ops/relu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6776300Z copying torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6778190Z copying torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6779390Z copying torch/include/ATen/ops/_sample_dirichlet.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6781130Z copying torch/include/ATen/ops/special_ndtr_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6782500Z copying torch/include/ATen/ops/special_airy_ai_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6783510Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6784990Z copying torch/include/ATen/ops/clone_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6786430Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6787780Z copying torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6789280Z copying torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6790130Z copying torch/include/ATen/ops/_to_cpu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6791810Z copying torch/include/ATen/ops/adaptive_max_pool3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6792810Z copying torch/include/ATen/ops/_nested_view_from_jagged.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6794410Z copying torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6795600Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6797400Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6798590Z copying torch/include/ATen/ops/_unique2_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6800070Z copying torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6801530Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6802490Z copying torch/include/ATen/ops/trunc_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6804350Z copying torch/include/ATen/ops/retain_grad_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6805280Z copying torch/include/ATen/ops/max_pool1d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6806800Z copying torch/include/ATen/ops/histogramdd_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6808340Z copying torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6809720Z copying torch/include/ATen/ops/tanh_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6811050Z copying torch/include/ATen/ops/nanquantile_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6812520Z copying torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6813330Z copying torch/include/ATen/ops/cumsum_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6814980Z copying torch/include/ATen/ops/instance_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6816090Z copying torch/include/ATen/ops/scatter_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6817550Z copying torch/include/ATen/ops/_mixed_dtypes_linear_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6818830Z copying torch/include/ATen/ops/index_select_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6820580Z copying torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6821430Z copying torch/include/ATen/ops/refine_names_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6823000Z copying torch/include/ATen/ops/_remove_batch_dim_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6824380Z copying torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6825740Z copying torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6826760Z copying torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6828320Z copying torch/include/ATen/ops/acos.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6829800Z copying torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6830680Z copying torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6832820Z copying torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6834290Z copying torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6835700Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6837160Z copying torch/include/ATen/ops/chunk.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6838700Z copying torch/include/ATen/ops/_functional_assert_async.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6839810Z copying torch/include/ATen/ops/arange_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6841480Z copying torch/include/ATen/ops/log_softmax_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6842960Z copying torch/include/ATen/ops/unsqueeze_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6843750Z copying torch/include/ATen/ops/triangular_solve.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6845370Z copying torch/include/ATen/ops/view_as_real_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6846760Z copying torch/include/ATen/ops/native_layer_norm_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6848120Z copying torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6849390Z copying torch/include/ATen/ops/renorm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6851000Z copying torch/include/ATen/ops/_local_scalar_dense.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6851720Z copying torch/include/ATen/ops/absolute.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6853450Z copying torch/include/ATen/ops/_assert_async_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6854510Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6856110Z copying torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6857000Z copying torch/include/ATen/ops/mT_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6858560Z copying torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6860150Z copying torch/include/ATen/ops/_amp_update_scale.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6861620Z copying torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6862570Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6864060Z copying torch/include/ATen/ops/index_copy_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6865590Z copying torch/include/ATen/ops/_test_ambiguous_defaults_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6866430Z copying torch/include/ATen/ops/mul_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6868010Z copying torch/include/ATen/ops/conv_transpose3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6869150Z copying torch/include/ATen/ops/rrelu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6870760Z copying torch/include/ATen/ops/logical_or_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6872070Z copying torch/include/ATen/ops/unsqueeze_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6873490Z copying torch/include/ATen/ops/huber_loss_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6874440Z copying torch/include/ATen/ops/renorm_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6876220Z copying torch/include/ATen/ops/record_stream_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6877660Z copying torch/include/ATen/ops/promote_types_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6878640Z copying torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6880480Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6881840Z copying torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6883300Z copying torch/include/ATen/ops/linalg_vecdot.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6884910Z copying torch/include/ATen/ops/_sample_dirichlet_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6886260Z copying torch/include/ATen/ops/rand_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6887870Z copying torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6889380Z copying torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6890770Z copying torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6892100Z copying torch/include/ATen/ops/special_bessel_y1_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6893600Z copying torch/include/ATen/ops/masked_scatter_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6894670Z copying torch/include/ATen/ops/to_sparse_csc_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6896440Z copying torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6897770Z copying torch/include/ATen/ops/_cummin_helper_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6899320Z copying torch/include/ATen/ops/replication_pad2d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6900510Z copying torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6902070Z copying torch/include/ATen/ops/detach_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6903550Z copying torch/include/ATen/ops/cauchy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6905210Z copying torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6907020Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6907560Z copying torch/include/ATen/ops/row_indices_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6908950Z copying torch/include/ATen/ops/add_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6910300Z copying torch/include/ATen/ops/unfold_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6911270Z copying torch/include/ATen/ops/gelu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6912790Z copying torch/include/ATen/ops/linalg_svd_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6914410Z copying torch/include/ATen/ops/_fused_sdp_choice.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6915990Z copying torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6916650Z copying torch/include/ATen/ops/log2_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6918340Z copying torch/include/ATen/ops/selu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6919370Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6920960Z copying torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6922100Z copying torch/include/ATen/ops/_foreach_frac_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6923360Z copying torch/include/ATen/ops/vander_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6925040Z copying torch/include/ATen/ops/segment_reduce_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6925990Z copying torch/include/ATen/ops/_conv_depthwise2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6927630Z copying torch/include/ATen/ops/linalg_diagonal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6929070Z copying torch/include/ATen/ops/set_data.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6930260Z copying torch/include/ATen/ops/alpha_dropout_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6931990Z copying torch/include/ATen/ops/take_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6933470Z copying torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6934700Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6936250Z copying torch/include/ATen/ops/adjoint_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6937590Z copying torch/include/ATen/ops/scatter_reduce_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6939060Z copying torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6940010Z copying torch/include/ATen/ops/convolution_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6941680Z copying torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6943220Z copying torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6944640Z copying torch/include/ATen/ops/multi_margin_loss_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6945630Z copying torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6947160Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6948190Z copying torch/include/ATen/ops/special_sinc_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6949640Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6951330Z copying torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6952300Z copying torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6953880Z copying torch/include/ATen/ops/_foreach_maximum_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6959180Z copying torch/include/ATen/ops/_sparse_csr_prod_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6959940Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6960360Z copying torch/include/ATen/ops/special_gammaln_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6960760Z copying torch/include/ATen/ops/embedding_bag.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6961170Z copying torch/include/ATen/ops/silu_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6961740Z copying torch/include/ATen/ops/greater_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6963340Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6964310Z copying torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6965950Z copying torch/include/ATen/ops/sort_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6967390Z copying torch/include/ATen/ops/fill_diagonal_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6968910Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6969800Z copying torch/include/ATen/ops/_to_sparse_csc_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6971300Z copying torch/include/ATen/ops/zeros.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6972490Z copying torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6973970Z copying torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6975560Z copying torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6976990Z copying torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6978380Z copying torch/include/ATen/ops/fmod_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6979250Z copying torch/include/ATen/ops/sigmoid_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6980910Z copying torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6982630Z copying torch/include/ATen/ops/_sobol_engine_draw_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6984060Z copying torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6984990Z copying torch/include/ATen/ops/tril_indices_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6986670Z copying torch/include/ATen/ops/bitwise_left_shift_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6987550Z copying torch/include/ATen/ops/arctanh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6989230Z copying torch/include/ATen/ops/triu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6990580Z copying torch/include/ATen/ops/reciprocal_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6992100Z copying torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6993280Z copying torch/include/ATen/ops/_nnz_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6994690Z copying torch/include/ATen/ops/unfold_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6996040Z copying torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6997510Z copying torch/include/ATen/ops/exp2_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.6998940Z copying torch/include/ATen/ops/_lstm_mps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7006880Z copying torch/include/ATen/ops/hardsigmoid_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7008300Z copying torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7009710Z copying torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7011010Z copying torch/include/ATen/ops/_spsolve_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7012440Z copying torch/include/ATen/ops/is_set_to_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7013760Z copying torch/include/ATen/ops/log10_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7015050Z copying torch/include/ATen/ops/flip.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7016660Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7017560Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7019150Z copying torch/include/ATen/ops/roll_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7020790Z copying torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7021550Z copying torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7023360Z copying torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7024200Z copying torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7025770Z copying torch/include/ATen/ops/linalg_lu_factor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7027040Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7028760Z copying torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7030080Z copying torch/include/ATen/ops/round_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7031490Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7033040Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7034390Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7035830Z copying torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7036700Z copying torch/include/ATen/ops/as_strided_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7038310Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7039730Z copying torch/include/ATen/ops/_standard_gamma_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7041100Z copying torch/include/ATen/ops/neg_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7042280Z copying torch/include/ATen/ops/pinverse.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7043780Z copying torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7045110Z copying torch/include/ATen/ops/select_scatter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7046370Z copying torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7047990Z copying torch/include/ATen/ops/conv1d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7049490Z copying torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7051260Z copying torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7052790Z copying torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7054100Z copying torch/include/ATen/ops/arccosh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7055680Z copying torch/include/ATen/ops/gelu_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7056660Z copying torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7058280Z copying torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7059650Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7061220Z copying torch/include/ATen/ops/fft_fftfreq.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7062040Z copying torch/include/ATen/ops/im2col_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7063740Z copying torch/include/ATen/ops/_sparse_mm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7071270Z copying torch/include/ATen/ops/narrow_copy_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7072600Z copying torch/include/ATen/ops/not_equal_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7074060Z copying torch/include/ATen/ops/prod_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7075560Z copying torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7076840Z copying torch/include/ATen/ops/index_select.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7077770Z copying torch/include/ATen/ops/special_ndtr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7079450Z copying torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7081070Z copying torch/include/ATen/ops/mm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7082520Z copying torch/include/ATen/ops/addcmul_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7083870Z copying torch/include/ATen/ops/special_hermite_polynomial_h_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7085280Z copying torch/include/ATen/ops/_convolution_mode_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7086680Z copying torch/include/ATen/ops/embedding_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7088160Z copying torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7088960Z copying torch/include/ATen/ops/mps_convolution_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7090740Z copying torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7091920Z copying torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7093550Z copying torch/include/ATen/ops/special_erfcx.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7094920Z copying torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7096070Z copying torch/include/ATen/ops/ge_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7097100Z copying torch/include/ATen/ops/polar_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7098740Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7100000Z copying torch/include/ATen/ops/copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7101720Z copying torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7102640Z copying torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7104230Z copying torch/include/ATen/ops/data_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7105220Z copying torch/include/ATen/ops/adaptive_avg_pool3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7106990Z copying torch/include/ATen/ops/randn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7108620Z copying torch/include/ATen/ops/nll_loss2d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7110310Z copying torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7111680Z copying torch/include/ATen/ops/unbind_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7112800Z copying torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7114150Z copying torch/include/ATen/ops/eq_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7115640Z copying torch/include/ATen/ops/set_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7117050Z copying torch/include/ATen/ops/_native_multi_head_attention_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7118710Z copying torch/include/ATen/ops/_test_functorch_fallback.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7119540Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7121150Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7122180Z copying torch/include/ATen/ops/_cufft_clear_plan_cache.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7123830Z copying torch/include/ATen/ops/_fused_adagrad_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7125340Z copying torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7126280Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7127950Z copying torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7128970Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7130580Z copying torch/include/ATen/ops/ger_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7131570Z copying torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7133170Z copying torch/include/ATen/ops/_values_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7134630Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7136060Z copying torch/include/ATen/ops/set_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7137060Z copying torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7138740Z copying torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7140270Z copying torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7141080Z copying torch/include/ATen/ops/max_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7142830Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7143690Z copying torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7145250Z copying torch/include/ATen/ops/_linalg_det_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7146690Z copying torch/include/ATen/ops/triangular_solve_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7147680Z copying torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7149270Z copying torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7150510Z copying torch/include/ATen/ops/lshift_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7152020Z copying torch/include/ATen/ops/empty_quantized.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7153410Z copying torch/include/ATen/ops/cudnn_grid_sampler.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7154490Z copying torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7155950Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7157530Z copying torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7158570Z copying torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7160020Z copying torch/include/ATen/ops/logical_and_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7161380Z copying torch/include/ATen/ops/roll_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7162860Z copying torch/include/ATen/ops/remainder_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7163840Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7165560Z copying torch/include/ATen/ops/log10_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7167140Z copying torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7167930Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7169680Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7170570Z copying torch/include/ATen/ops/convolution.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7171940Z copying torch/include/ATen/ops/kl_div_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7173620Z copying torch/include/ATen/ops/roll_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7175070Z copying torch/include/ATen/ops/upsample_bicubic2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7176450Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7177340Z copying torch/include/ATen/ops/amax_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7178860Z copying torch/include/ATen/ops/multinomial_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7180200Z copying torch/include/ATen/ops/special_log_ndtr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7181670Z copying torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7182480Z copying torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7184210Z copying torch/include/ATen/ops/addmv_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7188960Z copying torch/include/ATen/ops/clamp_max_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7189380Z copying torch/include/ATen/ops/_values_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7189750Z copying torch/include/ATen/ops/clone.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7190250Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7190640Z copying torch/include/ATen/ops/avg_pool2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7191530Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7193340Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7194060Z copying torch/include/ATen/ops/reciprocal_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7195960Z copying torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7196710Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7198470Z copying torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7199400Z copying torch/include/ATen/ops/logical_or_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7201170Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7201970Z copying torch/include/ATen/ops/values_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7203810Z copying torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7205290Z copying torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7206810Z copying torch/include/ATen/ops/swapdims.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7207920Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7209480Z copying torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7210400Z copying torch/include/ATen/ops/cauchy_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7211960Z copying torch/include/ATen/ops/reflection_pad1d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7213640Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7215170Z copying torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7216050Z copying torch/include/ATen/ops/huber_loss_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7218250Z copying torch/include/ATen/ops/permute_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7219910Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7228020Z copying torch/include/ATen/ops/sub_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7229700Z copying torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7230490Z copying torch/include/ATen/ops/mm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7232120Z copying torch/include/ATen/ops/sinh_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7233620Z copying torch/include/ATen/ops/log2_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7234920Z copying torch/include/ATen/ops/glu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7236470Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7237760Z copying torch/include/ATen/ops/linalg_solve_ex_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7239130Z copying torch/include/ATen/ops/logsumexp_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7239920Z copying torch/include/ATen/ops/all.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7241430Z copying torch/include/ATen/ops/_foobar.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7242860Z copying torch/include/ATen/ops/cudnn_grid_sampler_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7244410Z copying torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7245210Z copying torch/include/ATen/ops/log_normal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7246890Z copying torch/include/ATen/ops/quantized_lstm_cell_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7248390Z copying torch/include/ATen/ops/mvlgamma_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7249560Z copying torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7251140Z copying torch/include/ATen/ops/glu_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7251900Z copying torch/include/ATen/ops/mish_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7253530Z copying torch/include/ATen/ops/_rowwise_prune_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7255190Z copying torch/include/ATen/ops/_foreach_acos_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7256670Z copying torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7257740Z copying torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7259020Z copying torch/include/ATen/ops/size_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7260760Z copying torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7261620Z copying torch/include/ATen/ops/special_erf.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7263240Z copying torch/include/ATen/ops/amax.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7264620Z copying torch/include/ATen/ops/_foreach_lerp_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7266180Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7267100Z copying torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7268910Z copying torch/include/ATen/ops/nll_loss_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7269780Z copying torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7271400Z copying torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7272880Z copying torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7273630Z copying torch/include/ATen/ops/movedim.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7275450Z copying torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7276300Z copying torch/include/ATen/ops/arccos.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7278050Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7279220Z copying torch/include/ATen/ops/linear.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7280690Z copying torch/include/ATen/ops/bucketize_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7281580Z copying torch/include/ATen/ops/asinh_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7283190Z copying torch/include/ATen/ops/_dim_arange.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7284600Z copying torch/include/ATen/ops/special_erfc_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7285660Z copying torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7287070Z copying torch/include/ATen/ops/nll_loss_nd_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7288720Z copying torch/include/ATen/ops/tan_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7290110Z copying torch/include/ATen/ops/_cdist_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7297760Z copying torch/include/ATen/ops/hardtanh_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7299170Z copying torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7300100Z copying torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7301670Z copying torch/include/ATen/ops/_prelu_kernel_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7302960Z copying torch/include/ATen/ops/gather.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7304420Z copying torch/include/ATen/ops/_reshape_alias_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7305830Z copying torch/include/ATen/ops/logaddexp2_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7307340Z copying torch/include/ATen/ops/multi_margin_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7308290Z copying torch/include/ATen/ops/_foreach_sin_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7309780Z copying torch/include/ATen/ops/fft_rfft_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7311160Z copying torch/include/ATen/ops/slow_conv3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7312680Z copying torch/include/ATen/ops/leaky_relu_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7313590Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7315100Z copying torch/include/ATen/ops/acosh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7316530Z copying torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7317650Z copying torch/include/ATen/ops/addcdiv_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7319340Z copying torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7320110Z copying torch/include/ATen/ops/to_sparse_csr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7321790Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7323340Z copying torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7324340Z copying torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7326030Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7326840Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7328350Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7330130Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7331230Z copying torch/include/ATen/ops/sym_constrain_range_for_size_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7332250Z copying torch/include/ATen/ops/data.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7333910Z copying torch/include/ATen/ops/matrix_power_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7335530Z copying torch/include/ATen/ops/cudnn_convolution_transpose_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7336940Z copying torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7338560Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7340020Z copying torch/include/ATen/ops/gather_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7341330Z copying torch/include/ATen/ops/_cast_Long.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7342750Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7343990Z copying torch/include/ATen/ops/hardshrink_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7345600Z copying torch/include/ATen/ops/hstack_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7346970Z copying torch/include/ATen/ops/miopen_convolution_relu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7348480Z copying torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7350050Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7350900Z copying torch/include/ATen/ops/gelu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7352630Z copying torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7353820Z copying torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7355640Z copying torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7356760Z copying torch/include/ATen/ops/div_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7358230Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7359210Z copying torch/include/ATen/ops/deg2rad_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7361120Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7362190Z copying torch/include/ATen/ops/native_group_norm_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7363710Z copying torch/include/ATen/ops/triu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7365030Z copying torch/include/ATen/ops/rename_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7366590Z copying torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7367620Z copying torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7369280Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7377020Z copying torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7378240Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7379800Z copying torch/include/ATen/ops/tan_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7381200Z copying torch/include/ATen/ops/softshrink_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7383100Z copying torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7384550Z copying torch/include/ATen/ops/linalg_lu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7385910Z copying torch/include/ATen/ops/_rowwise_prune.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7387300Z copying torch/include/ATen/ops/rshift_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7395630Z copying torch/include/ATen/ops/miopen_depthwise_convolution_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7397070Z copying torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7398370Z copying torch/include/ATen/ops/arctan2_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7399760Z copying torch/include/ATen/ops/dequantize_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7401050Z copying torch/include/ATen/ops/_nested_tensor_size.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7402550Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7403910Z copying torch/include/ATen/ops/_local_scalar_dense_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7405250Z copying torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7407190Z copying torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7408060Z copying torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7409560Z copying torch/include/ATen/ops/unfold_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7410980Z copying torch/include/ATen/ops/fft_rfft2_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7412250Z copying torch/include/ATen/ops/gru.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7413730Z copying torch/include/ATen/ops/sign_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7414490Z copying torch/include/ATen/ops/atleast_1d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7416180Z copying torch/include/ATen/ops/masked_fill_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7417620Z copying torch/include/ATen/ops/fft_ifft2_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7418500Z copying torch/include/ATen/ops/isneginf.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7420330Z copying torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7421090Z copying torch/include/ATen/ops/nanquantile.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7422790Z copying torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7424490Z copying torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7425290Z copying torch/include/ATen/ops/zeros_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7427100Z copying torch/include/ATen/ops/_nested_select_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7428070Z copying torch/include/ATen/ops/nested_to_padded_tensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7433070Z copying torch/include/ATen/ops/hardtanh_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7433720Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7434170Z copying torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7434570Z copying torch/include/ATen/ops/linalg_lu_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7434980Z copying torch/include/ATen/ops/fft_irfft2.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7436820Z copying torch/include/ATen/ops/miopen_convolution_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7438280Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7439160Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7440790Z copying torch/include/ATen/ops/scatter_add_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7441650Z copying torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7443180Z copying torch/include/ATen/ops/_indices_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7444630Z copying torch/include/ATen/ops/adaptive_avg_pool2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7445650Z copying torch/include/ATen/ops/embedding_sparse_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7447410Z copying torch/include/ATen/ops/special_psi_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7448630Z copying torch/include/ATen/ops/hardswish_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7450070Z copying torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7451080Z copying torch/include/ATen/ops/std_mean_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7452510Z copying torch/include/ATen/ops/softplus_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7454130Z copying torch/include/ATen/ops/special_expm1_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7455210Z copying torch/include/ATen/ops/elu_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7456820Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7458160Z copying torch/include/ATen/ops/_foreach_trunc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7459080Z copying torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7460710Z copying torch/include/ATen/ops/bitwise_not.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7461720Z copying torch/include/ATen/ops/_foreach_mul_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7463320Z copying torch/include/ATen/ops/bartlett_window_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7464310Z copying torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7466260Z copying torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7467090Z copying torch/include/ATen/ops/log_sigmoid_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7468720Z copying torch/include/ATen/ops/minimum_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7470220Z copying torch/include/ATen/ops/ccol_indices_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7471390Z copying torch/include/ATen/ops/scatter_add_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7472790Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7474030Z copying torch/include/ATen/ops/std_mean_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7475560Z copying torch/include/ATen/ops/reciprocal_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7476760Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7478170Z copying torch/include/ATen/ops/cdist_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7479700Z copying torch/include/ATen/ops/sparse_sampled_addmm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7481110Z copying torch/include/ATen/ops/_add_relu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7482120Z copying torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7483650Z copying torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7484840Z copying torch/include/ATen/ops/randperm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7486400Z copying torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7487300Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7488820Z copying torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7490400Z copying torch/include/ATen/ops/_nested_sum_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7491730Z copying torch/include/ATen/ops/i0.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7492900Z copying torch/include/ATen/ops/_foreach_sinh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7494500Z copying torch/include/ATen/ops/native_dropout_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7495860Z copying torch/include/ATen/ops/_test_functorch_fallback_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7496920Z copying torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7498310Z copying torch/include/ATen/ops/flipud_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7499810Z copying torch/include/ATen/ops/_ctc_loss_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7501270Z copying torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7502160Z copying torch/include/ATen/ops/_int_mm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7503860Z copying torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7504620Z copying torch/include/ATen/ops/erf_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7506210Z copying torch/include/ATen/ops/igammac_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7508110Z copying torch/include/ATen/ops/linalg_qr_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7509430Z copying torch/include/ATen/ops/_foreach_erf_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7510710Z copying torch/include/ATen/ops/max_pool2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7512380Z copying torch/include/ATen/ops/_cast_Char_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7513840Z copying torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7514650Z copying torch/include/ATen/ops/diag_embed_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7516310Z copying torch/include/ATen/ops/_spdiags_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7517680Z copying torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7518990Z copying torch/include/ATen/ops/cov_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7520350Z copying torch/include/ATen/ops/q_scale_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7521880Z copying torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7522830Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7524160Z copying torch/include/ATen/ops/var.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7525580Z copying torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7527210Z copying torch/include/ATen/ops/bitwise_not_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7528580Z copying torch/include/ATen/ops/index_put.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7529890Z copying torch/include/ATen/ops/dequantize_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7530910Z copying torch/include/ATen/ops/convolution_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7532840Z copying torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7534200Z copying torch/include/ATen/ops/grid_sampler_2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7535070Z copying torch/include/ATen/ops/special_i0e.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7536600Z copying torch/include/ATen/ops/special_log1p_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7538090Z copying torch/include/ATen/ops/logaddexp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7539100Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7540790Z copying torch/include/ATen/ops/arange_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7542070Z copying torch/include/ATen/ops/logaddexp2.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7543590Z copying torch/include/ATen/ops/upsample_nearest3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7544470Z copying torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7546010Z copying torch/include/ATen/ops/index_fill_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7547070Z copying torch/include/ATen/ops/remainder.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7548690Z copying torch/include/ATen/ops/batch_norm_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7549500Z copying torch/include/ATen/ops/repeat_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7551160Z copying torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7552890Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7553730Z copying torch/include/ATen/ops/avg_pool3d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7555350Z copying torch/include/ATen/ops/_foreach_lerp_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7556520Z copying torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7558060Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7559200Z copying torch/include/ATen/ops/indices_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7560720Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7562180Z copying torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7562930Z copying torch/include/ATen/ops/_cudnn_rnn_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7564610Z copying torch/include/ATen/ops/amax_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7566180Z copying torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7567620Z copying torch/include/ATen/ops/nll_loss2d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7568430Z copying torch/include/ATen/ops/linalg_matrix_rank_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7570080Z copying torch/include/ATen/ops/_masked_scale_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7571400Z copying torch/include/ATen/ops/_stack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7572230Z copying torch/include/ATen/ops/histc_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7574100Z copying torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7574930Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7576570Z copying torch/include/ATen/ops/tanh_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7577680Z copying torch/include/ATen/ops/fft_hfft.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7579230Z copying torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7580050Z copying torch/include/ATen/ops/to_padded_tensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7581650Z copying torch/include/ATen/ops/fft_fft.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7582770Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7584380Z copying torch/include/ATen/ops/requires_grad_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7585170Z copying torch/include/ATen/ops/gradient.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7586840Z copying torch/include/ATen/ops/fft_ihfft.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7588430Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7589170Z copying torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7591050Z copying torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7591730Z copying torch/include/ATen/ops/view_as_real_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7593390Z copying torch/include/ATen/ops/copysign_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7594230Z copying torch/include/ATen/ops/values_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7595710Z copying torch/include/ATen/ops/_prelu_kernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7597200Z copying torch/include/ATen/ops/fractional_max_pool3d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7598590Z copying torch/include/ATen/ops/upsample_linear1d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7599670Z copying torch/include/ATen/ops/_add_batch_dim_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7601480Z copying torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7602330Z copying torch/include/ATen/ops/mH_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7603840Z copying torch/include/ATen/ops/lift_fresh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7605150Z copying torch/include/ATen/ops/ne_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7606600Z copying torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7608110Z copying torch/include/ATen/ops/multinomial_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7609480Z copying torch/include/ATen/ops/special_modified_bessel_k0.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7610640Z copying torch/include/ATen/ops/atan2_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7612070Z copying torch/include/ATen/ops/_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7613170Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7614960Z copying torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7615730Z copying torch/include/ATen/ops/unsafe_chunk_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7617440Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7618840Z copying torch/include/ATen/ops/native_channel_shuffle_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7619860Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7621230Z copying torch/include/ATen/ops/addmv_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7622630Z copying torch/include/ATen/ops/rshift_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7624110Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7624870Z copying torch/include/ATen/ops/special_erfinv_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7626950Z copying torch/include/ATen/ops/_fused_sdp_choice_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7627620Z copying torch/include/ATen/ops/_copy_from_and_resize_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7629370Z copying torch/include/ATen/ops/_sparse_log_softmax.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7630420Z copying torch/include/ATen/ops/select_scatter_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7632220Z copying torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7633230Z copying torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7634930Z copying torch/include/ATen/ops/huber_loss_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7636270Z copying torch/include/ATen/ops/count_nonzero_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7637760Z copying torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7638540Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7640060Z copying torch/include/ATen/ops/true_divide_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7641360Z copying torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7642850Z copying torch/include/ATen/ops/upsample_bilinear2d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7647460Z copying torch/include/ATen/ops/ccol_indices_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7647890Z copying torch/include/ATen/ops/addcmul_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7648290Z copying torch/include/ATen/ops/_fused_adagrad_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7648680Z copying torch/include/ATen/ops/erfc_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7649200Z copying torch/include/ATen/ops/slow_conv_transpose3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7650630Z copying torch/include/ATen/ops/resolve_conj.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7652060Z copying torch/include/ATen/ops/quantized_gru_cell_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7653130Z copying torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7654550Z copying torch/include/ATen/ops/_foreach_erfc_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7655800Z copying torch/include/ATen/ops/glu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7657480Z copying torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7658980Z copying torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7659990Z copying torch/include/ATen/ops/cosh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7661920Z copying torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7662730Z copying torch/include/ATen/ops/nll_loss_forward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7664400Z copying torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7665630Z copying torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7667330Z copying torch/include/ATen/ops/addcmul_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7668410Z copying torch/include/ATen/ops/avg_pool3d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7670260Z copying torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7671630Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7673150Z copying torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7673910Z copying torch/include/ATen/ops/fmod.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7675680Z copying torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7676480Z copying torch/include/ATen/ops/inverse.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7678000Z copying torch/include/ATen/ops/_foreach_round_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7679420Z copying torch/include/ATen/ops/to_dense_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7680970Z copying torch/include/ATen/ops/rshift_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7682440Z copying torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7683330Z copying torch/include/ATen/ops/item.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7685020Z copying torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7686530Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7687960Z copying torch/include/ATen/ops/hypot_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7688700Z copying torch/include/ATen/ops/_foreach_zero.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7690310Z copying torch/include/ATen/ops/zeros_like_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7691620Z copying torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7693010Z copying torch/include/ATen/ops/index_select_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7694060Z copying torch/include/ATen/ops/to_sparse_bsr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7695670Z copying torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7697450Z copying torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7698780Z copying torch/include/ATen/ops/nll_loss_forward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7700200Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7701060Z copying torch/include/ATen/ops/linalg_eig_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7702680Z copying torch/include/ATen/ops/sgn_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7703770Z copying torch/include/ATen/ops/replication_pad1d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7705290Z copying torch/include/ATen/ops/linalg_eigh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7706790Z copying torch/include/ATen/ops/linalg_matrix_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7707540Z copying torch/include/ATen/ops/lu_unpack_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7709350Z copying torch/include/ATen/ops/fmax_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7710980Z copying torch/include/ATen/ops/linalg_vector_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7712510Z copying torch/include/ATen/ops/native_layer_norm_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7713610Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7715260Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7716640Z copying torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7717490Z copying torch/include/ATen/ops/quantized_batch_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7719130Z copying torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7720280Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7722050Z copying torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7722900Z copying torch/include/ATen/ops/matrix_power.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7724560Z copying torch/include/ATen/ops/sgn_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7725390Z copying torch/include/ATen/ops/ne_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7727050Z copying torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7728470Z copying torch/include/ATen/ops/split_with_sizes_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7729460Z copying torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7731040Z copying torch/include/ATen/ops/conj_physical_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7732490Z copying torch/include/ATen/ops/silu_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7733300Z copying torch/include/ATen/ops/linalg_matrix_power_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7734760Z copying torch/include/ATen/ops/unsafe_split_with_sizes.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7735940Z copying torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7737580Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7738560Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7739650Z copying torch/include/ATen/ops/frac_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7741360Z copying torch/include/ATen/ops/less_equal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7742150Z copying torch/include/ATen/ops/rrelu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7744050Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7745310Z copying torch/include/ATen/ops/rnn_tanh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7746500Z copying torch/include/ATen/ops/upsample_nearest1d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7747790Z copying torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7749200Z copying torch/include/ATen/ops/mean_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7750500Z copying torch/include/ATen/ops/new_empty_strided.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7752090Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7752880Z copying torch/include/ATen/ops/pow_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7754430Z copying torch/include/ATen/ops/channel_shuffle_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7755780Z copying torch/include/ATen/ops/log_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7756740Z copying torch/include/ATen/ops/unique_consecutive_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7758380Z copying torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7759680Z copying torch/include/ATen/ops/alpha_dropout_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7761140Z copying torch/include/ATen/ops/_foreach_abs_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7762000Z copying torch/include/ATen/ops/replication_pad2d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7763610Z copying torch/include/ATen/ops/kaiser_window.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7765070Z copying torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7766160Z copying torch/include/ATen/ops/nansum.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7767660Z copying torch/include/ATen/ops/threshold_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7768590Z copying torch/include/ATen/ops/soft_margin_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7770110Z copying torch/include/ATen/ops/det_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7771670Z copying torch/include/ATen/ops/_foreach_sin.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7773030Z copying torch/include/ATen/ops/addr_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7774490Z copying torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7776130Z copying torch/include/ATen/ops/split_with_sizes_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7777120Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7778750Z copying torch/include/ATen/ops/log_sigmoid_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7780210Z copying torch/include/ATen/ops/_foreach_div_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7781620Z copying torch/include/ATen/ops/prelu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7783080Z copying torch/include/ATen/ops/maximum_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7784450Z copying torch/include/ATen/ops/grid_sampler_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7785900Z copying torch/include/ATen/ops/_cslt_compress_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7787500Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7788620Z copying torch/include/ATen/ops/_foreach_ceil_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7790100Z copying torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7791660Z copying torch/include/ATen/ops/fmod_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7793130Z copying torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7793920Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7795660Z copying torch/include/ATen/ops/_unsafe_index_put_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7796960Z copying torch/include/ATen/ops/logical_not_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7798260Z copying torch/include/ATen/ops/crow_indices_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7799870Z copying torch/include/ATen/ops/logspace_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7801340Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7802850Z copying torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7803820Z copying torch/include/ATen/ops/_fused_sgd_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7805610Z copying torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7807160Z copying torch/include/ATen/ops/lift_fresh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7807890Z copying torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7809640Z copying torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7810500Z copying torch/include/ATen/ops/sym_stride_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7812330Z copying torch/include/ATen/ops/isreal_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7813660Z copying torch/include/ATen/ops/unbind_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7814600Z copying torch/include/ATen/ops/_spdiags_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7816080Z copying torch/include/ATen/ops/_pad_enum.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7817510Z copying torch/include/ATen/ops/equal_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7818850Z copying torch/include/ATen/ops/_autocast_to_reduced_precision.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7820350Z copying torch/include/ATen/ops/mse_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7821830Z copying torch/include/ATen/ops/_addmm_activation_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7823150Z copying torch/include/ATen/ops/pin_memory_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7824010Z copying torch/include/ATen/ops/max_unpool2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7825890Z copying torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7826850Z copying torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7828510Z copying torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7829380Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7831070Z copying torch/include/ATen/ops/einsum.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7832160Z copying torch/include/ATen/ops/_ctc_loss_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7833690Z copying torch/include/ATen/ops/xlogy_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7845200Z copying torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7846540Z copying torch/include/ATen/ops/is_conj.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7848120Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7849510Z copying torch/include/ATen/ops/miopen_convolution_relu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7850840Z copying torch/include/ATen/ops/permute_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7852200Z copying torch/include/ATen/ops/multiply.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7853580Z copying torch/include/ATen/ops/batch_norm_stats_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7854950Z copying torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7856340Z copying torch/include/ATen/ops/silu_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7857970Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7858820Z copying torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7860300Z copying torch/include/ATen/ops/trapezoid.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7861560Z copying torch/include/ATen/ops/prelu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7863290Z copying torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7864420Z copying torch/include/ATen/ops/_nested_tensor_strides_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7865940Z copying torch/include/ATen/ops/q_zero_point.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7867490Z copying torch/include/ATen/ops/_resize_output_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7868390Z copying torch/include/ATen/ops/isfinite_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7874110Z copying torch/include/ATen/ops/masked_fill_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7874620Z copying torch/include/ATen/ops/sparse_resize_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7875090Z copying torch/include/ATen/ops/unfold_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7875550Z copying torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7876050Z copying torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7876450Z copying torch/include/ATen/ops/addcdiv_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7878350Z copying torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7879200Z copying torch/include/ATen/ops/_sparse_softmax_backward_data.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7880930Z copying torch/include/ATen/ops/mkldnn_max_pool2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7882430Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7883440Z copying torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7885300Z copying torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7886240Z copying torch/include/ATen/ops/_nested_from_padded_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7887690Z copying torch/include/ATen/ops/isin_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7889100Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7890580Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7891500Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7892680Z copying torch/include/ATen/ops/linalg_matmul.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7894420Z copying torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7895300Z copying torch/include/ATen/ops/special_bessel_y1_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7896960Z copying torch/include/ATen/ops/reciprocal_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7898070Z copying torch/include/ATen/ops/tril_indices_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7899260Z copying torch/include/ATen/ops/isposinf_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7900620Z copying torch/include/ATen/ops/_nested_get_max_seqlen_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7901980Z copying torch/include/ATen/ops/gcd_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7902870Z copying torch/include/ATen/ops/_convolution_double_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7904530Z copying torch/include/ATen/ops/softshrink_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7905440Z copying torch/include/ATen/ops/_sparse_mm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7906960Z copying torch/include/ATen/ops/_cudnn_ctc_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7908080Z copying torch/include/ATen/ops/_foreach_neg_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7909480Z copying torch/include/ATen/ops/leaky_relu_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7911030Z copying torch/include/ATen/ops/nested_to_padded_tensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7911700Z copying torch/include/ATen/ops/_add_relu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7913260Z copying torch/include/ATen/ops/round_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7914810Z copying torch/include/ATen/ops/resolve_conj_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7916320Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7917230Z copying torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7919290Z copying torch/include/ATen/ops/ones_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7920630Z copying torch/include/ATen/ops/_foreach_clamp_max.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7922080Z copying torch/include/ATen/ops/log_sigmoid_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7923040Z copying torch/include/ATen/ops/_slow_conv2d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7924630Z copying torch/include/ATen/ops/neg_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7926110Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7927700Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7928500Z copying torch/include/ATen/ops/replication_pad2d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7930040Z copying torch/include/ATen/ops/lerp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7931500Z copying torch/include/ATen/ops/exp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7932940Z copying torch/include/ATen/ops/is_set_to_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7933720Z copying torch/include/ATen/ops/logsumexp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7935520Z copying torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7936300Z copying torch/include/ATen/ops/_pad_packed_sequence.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7937730Z copying torch/include/ATen/ops/round.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7939450Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7940590Z copying torch/include/ATen/ops/roll_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7941890Z copying torch/include/ATen/ops/i0_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7943700Z copying torch/include/ATen/ops/alias_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7945060Z copying torch/include/ATen/ops/mish_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7946070Z copying torch/include/ATen/ops/replication_pad2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7947540Z copying torch/include/ATen/ops/addcmul_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7948920Z copying torch/include/ATen/ops/std_mean_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7950530Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7952070Z copying torch/include/ATen/ops/prod_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7952760Z copying torch/include/ATen/ops/pow_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7954480Z copying torch/include/ATen/ops/resize_as_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7955310Z copying torch/include/ATen/ops/gcd_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7957250Z copying torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7958310Z copying torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7959880Z copying torch/include/ATen/ops/_foreach_log10.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7961150Z copying torch/include/ATen/ops/select_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7962520Z copying torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7964070Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7964940Z copying torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7966460Z copying torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7967880Z copying torch/include/ATen/ops/scalar_tensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7969370Z copying torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7970930Z copying torch/include/ATen/ops/nonzero_static.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7971650Z copying torch/include/ATen/ops/im2col_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7973090Z copying torch/include/ATen/ops/special_spherical_bessel_j0_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7974760Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7975640Z copying torch/include/ATen/ops/im2col_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7977370Z copying torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7978460Z copying torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7980130Z copying torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7980950Z copying torch/include/ATen/ops/copysign_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7982740Z copying torch/include/ATen/ops/_reshape_from_tensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7984060Z copying torch/include/ATen/ops/_fw_primal_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7985390Z copying torch/include/ATen/ops/qscheme_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.7995080Z copying torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8001600Z copying torch/include/ATen/ops/_print.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8003070Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8004510Z copying torch/include/ATen/ops/set_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8005900Z copying torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8007290Z copying torch/include/ATen/ops/_cudnn_init_dropout_state.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8008840Z copying torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8009560Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8011320Z copying torch/include/ATen/ops/polygamma.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8012350Z copying torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8014100Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8015090Z copying torch/include/ATen/ops/upsample_bilinear2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8016770Z copying torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8017720Z copying torch/include/ATen/ops/swapaxes_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8019690Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8020800Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8021860Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8023440Z copying torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8024730Z copying torch/include/ATen/ops/quantile.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8025950Z copying torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8027540Z copying torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8028870Z copying torch/include/ATen/ops/convolution_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8030360Z copying torch/include/ATen/ops/masked_scatter_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8031050Z copying torch/include/ATen/ops/_nnpack_available.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8032660Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8034190Z copying torch/include/ATen/ops/new_zeros.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8035760Z copying torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8036550Z copying torch/include/ATen/ops/replication_pad1d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8038300Z copying torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8039620Z copying torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8041130Z copying torch/include/ATen/ops/uniform_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8042480Z copying torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8043860Z copying torch/include/ATen/ops/_log_softmax_backward_data_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8044780Z copying torch/include/ATen/ops/_foreach_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8046160Z copying torch/include/ATen/ops/mT_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8047640Z copying torch/include/ATen/ops/nonzero_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8049250Z copying torch/include/ATen/ops/_pack_padded_sequence.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8050010Z copying torch/include/ATen/ops/_foreach_neg.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8051770Z copying torch/include/ATen/ops/linalg_multi_dot.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8052980Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8054270Z copying torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8055620Z copying torch/include/ATen/ops/arange_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8057230Z copying torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8057800Z copying torch/include/ATen/ops/ne.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8059620Z copying torch/include/ATen/ops/threshold_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8060510Z copying torch/include/ATen/ops/rrelu_with_noise_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8062100Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8069280Z copying torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8070650Z copying torch/include/ATen/ops/lu_unpack_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8071780Z copying torch/include/ATen/ops/special_erfc_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8073120Z copying torch/include/ATen/ops/_nested_sum_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8074510Z copying torch/include/ATen/ops/quantized_max_pool1d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8075810Z copying torch/include/ATen/ops/linalg_lstsq_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8076630Z copying torch/include/ATen/ops/ormqr_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8078270Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8079540Z copying torch/include/ATen/ops/is_nonzero.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8080990Z copying torch/include/ATen/ops/glu_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8081740Z copying torch/include/ATen/ops/_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8083470Z copying torch/include/ATen/ops/bitwise_xor_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8084950Z copying torch/include/ATen/ops/sigmoid_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8085730Z copying torch/include/ATen/ops/_foreach_cos.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8087140Z copying torch/include/ATen/ops/randn_like_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8088520Z copying torch/include/ATen/ops/_slow_conv2d_forward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8089590Z copying torch/include/ATen/ops/subtract_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8091240Z copying torch/include/ATen/ops/sparse_compressed_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8092540Z copying torch/include/ATen/ops/_foreach_ceil_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8093370Z copying torch/include/ATen/ops/div_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8095160Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8096540Z copying torch/include/ATen/ops/_foreach_div_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8097860Z copying torch/include/ATen/ops/logical_or_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8098860Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8100380Z copying torch/include/ATen/ops/mul_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8101960Z copying torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8106660Z copying torch/include/ATen/ops/swapaxes.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8107220Z copying torch/include/ATen/ops/divide_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8107740Z copying torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8108100Z copying torch/include/ATen/ops/sub.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8108600Z copying torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8109760Z copying torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8111190Z copying torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8112720Z copying torch/include/ATen/ops/rrelu_with_noise_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8114130Z copying torch/include/ATen/ops/_fft_r2c_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8115030Z copying torch/include/ATen/ops/special_entr_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8116450Z copying torch/include/ATen/ops/conv1d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8117960Z copying torch/include/ATen/ops/view_as_real_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8119450Z copying torch/include/ATen/ops/linalg_svd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8120340Z copying torch/include/ATen/ops/native_batch_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8122220Z copying torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8123590Z copying torch/include/ATen/ops/constant_pad_nd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8125110Z copying torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8125870Z copying torch/include/ATen/ops/quantized_lstm_cell.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8127390Z copying torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8134030Z copying torch/include/ATen/ops/linalg_lu_factor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8135750Z copying torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8136530Z copying torch/include/ATen/ops/is_leaf_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8138160Z copying torch/include/ATen/ops/binomial_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8139640Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8141110Z copying torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8142440Z copying torch/include/ATen/ops/log2_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8143890Z copying torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8144730Z copying torch/include/ATen/ops/resolve_conj_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8146500Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8147850Z copying torch/include/ATen/ops/row_indices_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8149360Z copying torch/include/ATen/ops/_foreach_exp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8150500Z copying torch/include/ATen/ops/layer_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8151910Z copying torch/include/ATen/ops/sum_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8153360Z copying torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8154840Z copying torch/include/ATen/ops/_sparse_mask_projection_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8155700Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8157160Z copying torch/include/ATen/ops/special_zeta_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8158660Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8160120Z copying torch/include/ATen/ops/special_log_ndtr_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8161120Z copying torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8162770Z copying torch/include/ATen/ops/copy_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8163950Z copying torch/include/ATen/ops/linalg_lu_solve_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8165860Z copying torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8166790Z copying torch/include/ATen/ops/linalg_eigvalsh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8168310Z copying torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8169730Z copying torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8171210Z copying torch/include/ATen/ops/argmin_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8172710Z copying torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8173740Z copying torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8175240Z copying torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8176500Z copying torch/include/ATen/ops/special_zeta_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8177960Z copying torch/include/ATen/ops/is_complex_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8179370Z copying torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8180750Z copying torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8181600Z copying torch/include/ATen/ops/add_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8183170Z copying torch/include/ATen/ops/diagonal_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8184600Z copying torch/include/ATen/ops/_linalg_check_errors.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8186090Z copying torch/include/ATen/ops/angle_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8186960Z copying torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8188580Z copying torch/include/ATen/ops/_nested_get_min_seqlen_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8189980Z copying torch/include/ATen/ops/_nested_get_values_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8191390Z copying torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8192430Z copying torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8194030Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8195600Z copying torch/include/ATen/ops/sort_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8196620Z copying torch/include/ATen/ops/_lazy_clone_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8198270Z copying torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8199150Z copying torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8200650Z copying torch/include/ATen/ops/thnn_conv2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8201960Z copying torch/include/ATen/ops/baddbmm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8203460Z copying torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8204960Z copying torch/include/ATen/ops/embedding_renorm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8206270Z copying torch/include/ATen/ops/avg_pool3d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8207800Z copying torch/include/ATen/ops/multilabel_margin_loss_forward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8208540Z copying torch/include/ATen/ops/reciprocal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8210240Z copying torch/include/ATen/ops/contiguous_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8211700Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8213010Z copying torch/include/ATen/ops/sparse_mask_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8214400Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8215740Z copying torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8217240Z copying torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8218760Z copying torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8219500Z copying torch/include/ATen/ops/tril_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8221050Z copying torch/include/ATen/ops/logical_not_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8221960Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8223740Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8224640Z copying torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8226120Z copying torch/include/ATen/ops/arcsin.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8227500Z copying torch/include/ATen/ops/qr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8228910Z copying torch/include/ATen/ops/view_as_real_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8230440Z copying torch/include/ATen/ops/softshrink_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8231860Z copying torch/include/ATen/ops/frac_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8233340Z copying torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8234640Z copying torch/include/ATen/ops/miopen_rnn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8236050Z copying torch/include/ATen/ops/_native_multi_head_attention_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8237550Z copying torch/include/ATen/ops/_segment_reduce_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8238870Z copying torch/include/ATen/ops/_linalg_eigvals_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8240690Z copying torch/include/ATen/ops/_test_string_default_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8241580Z copying torch/include/ATen/ops/sparse_csr_tensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8243070Z copying torch/include/ATen/ops/logaddexp_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8244410Z copying torch/include/ATen/ops/grid_sampler_2d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8245310Z copying torch/include/ATen/ops/pairwise_distance.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8247120Z copying torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8248000Z copying torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8249590Z copying torch/include/ATen/ops/_cast_Long_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8251060Z copying torch/include/ATen/ops/nll_loss2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8251910Z copying torch/include/ATen/ops/fft_ifftshift_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8253420Z copying torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8255580Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8256460Z copying torch/include/ATen/ops/cos_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8258090Z copying torch/include/ATen/ops/adaptive_max_pool1d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8259230Z copying torch/include/ATen/ops/_mkldnn_transpose_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8261040Z copying torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8261870Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8263600Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8265040Z copying torch/include/ATen/ops/cudnn_convolution.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8266220Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8267970Z copying torch/include/ATen/ops/atleast_2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8269440Z copying torch/include/ATen/ops/choose_qparams_optimized.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8270790Z copying torch/include/ATen/ops/_linalg_slogdet.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8272030Z copying torch/include/ATen/ops/_slow_conv2d_forward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8273620Z copying torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8274960Z copying torch/include/ATen/ops/special_bessel_y1.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8276220Z copying torch/include/ATen/ops/slice.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8277330Z copying torch/include/ATen/ops/_nested_tensor_size_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8279050Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8279910Z copying torch/include/ATen/ops/_spdiags.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8281680Z copying torch/include/ATen/ops/linalg_matmul_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8282750Z copying torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8284060Z copying torch/include/ATen/ops/_neg_view.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8285470Z copying torch/include/ATen/ops/unsafe_split.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8286560Z copying torch/include/ATen/ops/sign_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8288210Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8289840Z copying torch/include/ATen/ops/logaddexp2_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8296710Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8297700Z copying torch/include/ATen/ops/div_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8299280Z copying torch/include/ATen/ops/trace_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8300700Z copying torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8302020Z copying torch/include/ATen/ops/fft_hfft_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8303560Z copying torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8305070Z copying torch/include/ATen/ops/linear_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8305770Z copying torch/include/ATen/ops/nll_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8307410Z copying torch/include/ATen/ops/_nested_tensor_strides_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8308970Z copying torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8309810Z copying torch/include/ATen/ops/fft_ifft_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8311390Z copying torch/include/ATen/ops/value_selecting_reduction_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8312770Z copying torch/include/ATen/ops/triplet_margin_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8313970Z copying torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8315080Z copying torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8316500Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8324230Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8325570Z copying torch/include/ATen/ops/col2im_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8326490Z copying torch/include/ATen/ops/_fft_c2r_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8328070Z copying torch/include/ATen/ops/arcsinh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8329380Z copying torch/include/ATen/ops/type_as_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8330530Z copying torch/include/ATen/ops/linalg_eigvals_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8332140Z copying torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8333780Z copying torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8334470Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8336240Z copying torch/include/ATen/ops/_safe_softmax_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8341530Z copying torch/include/ATen/ops/_copy_from_and_resize.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8342000Z copying torch/include/ATen/ops/linalg_ldl_solve_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8342410Z copying torch/include/ATen/ops/logdet.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8342800Z copying torch/include/ATen/ops/align_as_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8343310Z copying torch/include/ATen/ops/tanh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8345100Z copying torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8346070Z copying torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8347560Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8348870Z copying torch/include/ATen/ops/tanh_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8350530Z copying torch/include/ATen/ops/_unsafe_masked_index_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8351390Z copying torch/include/ATen/ops/trunc_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8353040Z copying torch/include/ATen/ops/_cholesky_solve_helper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8354260Z copying torch/include/ATen/ops/special_laguerre_polynomial_l.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8355410Z copying torch/include/ATen/ops/mv.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8356480Z copying torch/include/ATen/ops/logit.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8358060Z copying torch/include/ATen/ops/min_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8359580Z copying torch/include/ATen/ops/isnan_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8360430Z copying torch/include/ATen/ops/_unique2_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8361820Z copying torch/include/ATen/ops/_mkldnn_reshape_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8363600Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8364410Z copying torch/include/ATen/ops/_pack_padded_sequence_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8366200Z copying torch/include/ATen/ops/upsample_trilinear3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8367100Z copying torch/include/ATen/ops/normal_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8369140Z copying torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8370040Z copying torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8371370Z copying torch/include/ATen/ops/smm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8372980Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8373910Z copying torch/include/ATen/ops/less_equal_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8375430Z copying torch/include/ATen/ops/new_ones_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8376850Z copying torch/include/ATen/ops/nonzero_static_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8377760Z copying torch/include/ATen/ops/sinc_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8379320Z copying torch/include/ATen/ops/binary_cross_entropy_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8386860Z copying torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8388250Z copying torch/include/ATen/ops/expand_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8389530Z copying torch/include/ATen/ops/complex_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8390930Z copying torch/include/ATen/ops/_weight_norm_interface_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8392410Z copying torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8393760Z copying torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8394630Z copying torch/include/ATen/ops/isin_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8396320Z copying torch/include/ATen/ops/special_i1_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8397660Z copying torch/include/ATen/ops/pinverse_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8398560Z copying torch/include/ATen/ops/_foreach_atan_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8400270Z copying torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8401030Z copying torch/include/ATen/ops/lstm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8402740Z copying torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8404120Z copying torch/include/ATen/ops/xlogy_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8404790Z copying torch/include/ATen/ops/expm1.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8406340Z copying torch/include/ATen/ops/dist_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8407840Z copying torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8408870Z copying torch/include/ATen/ops/maximum.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8410190Z copying torch/include/ATen/ops/remainder_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8411630Z copying torch/include/ATen/ops/ones.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8413260Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8414000Z copying torch/include/ATen/ops/_foreach_maximum.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8415700Z copying torch/include/ATen/ops/slow_conv3d_forward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8416610Z copying torch/include/ATen/ops/aminmax_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8418180Z copying torch/include/ATen/ops/special_modified_bessel_i1.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8419360Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8420900Z copying torch/include/ATen/ops/mse_loss_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8421910Z copying torch/include/ATen/ops/_cummax_helper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8423470Z copying torch/include/ATen/ops/pad.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8424900Z copying torch/include/ATen/ops/linalg_cross_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8425770Z copying torch/include/ATen/ops/_resize_output_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8427400Z copying torch/include/ATen/ops/gru_cell_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8428950Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8429730Z copying torch/include/ATen/ops/std_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8431320Z copying torch/include/ATen/ops/round_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8432750Z copying torch/include/ATen/ops/_to_cpu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8433770Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8435310Z copying torch/include/ATen/ops/fft_irfft2_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8436860Z copying torch/include/ATen/ops/block_diag.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8437980Z copying torch/include/ATen/ops/_nested_get_offsets.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8439540Z copying torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8440330Z copying torch/include/ATen/ops/atanh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8442110Z copying torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8443070Z copying torch/include/ATen/ops/to_sparse_bsc_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8444830Z copying torch/include/ATen/ops/exponential_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8446270Z copying torch/include/ATen/ops/miopen_depthwise_convolution_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8447590Z copying torch/include/ATen/ops/gather_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8448550Z copying torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8450150Z copying torch/include/ATen/ops/geqrf.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8451370Z copying torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8452680Z copying torch/include/ATen/ops/bitwise_xor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8454880Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8456760Z copying torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8457730Z copying torch/include/ATen/ops/_aminmax_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8459320Z copying torch/include/ATen/ops/native_layer_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8460710Z copying torch/include/ATen/ops/sym_constrain_range_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8462130Z copying torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8463570Z copying torch/include/ATen/ops/frexp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8465100Z copying torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8466110Z copying torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8467540Z copying torch/include/ATen/ops/linalg_vander_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8469220Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8470290Z copying torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8472580Z copying torch/include/ATen/ops/split_with_sizes.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8474140Z copying torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8475440Z copying torch/include/ATen/ops/special_i1_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8477050Z copying torch/include/ATen/ops/sum_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8478530Z copying torch/include/ATen/ops/vdot_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8479530Z copying torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8481130Z copying torch/include/ATen/ops/pinverse_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8482330Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8483940Z copying torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8485310Z copying torch/include/ATen/ops/add.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8486840Z copying torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8487690Z copying torch/include/ATen/ops/_cummax_helper_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8489300Z copying torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8490920Z copying torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8492240Z copying torch/include/ATen/ops/eq_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8493370Z copying torch/include/ATen/ops/_batch_norm_impl_index_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8494960Z copying torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8496000Z copying torch/include/ATen/ops/upsample_nearest1d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8497960Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8498720Z copying torch/include/ATen/ops/sort_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8500540Z copying torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8501510Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8503120Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8504720Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8505590Z copying torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8507170Z copying torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8508610Z copying torch/include/ATen/ops/max_pool1d_with_indices_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8509930Z copying torch/include/ATen/ops/special_erf_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8511600Z copying torch/include/ATen/ops/avg_pool3d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8512940Z copying torch/include/ATen/ops/upsample_nearest1d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8514440Z copying torch/include/ATen/ops/sin_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8515190Z copying torch/include/ATen/ops/sum_to_size.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8516790Z copying torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8518470Z copying torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8519380Z copying torch/include/ATen/ops/special_hermite_polynomial_he_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8521080Z copying torch/include/ATen/ops/gradient_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8522430Z copying torch/include/ATen/ops/_cslt_compress.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8524070Z copying torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8525490Z copying torch/include/ATen/ops/fractional_max_pool2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8526390Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8528040Z copying torch/include/ATen/ops/_test_optional_intlist_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8529500Z copying torch/include/ATen/ops/log_normal_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8530310Z copying torch/include/ATen/ops/hypot_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8531950Z copying torch/include/ATen/ops/hypot.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8533390Z copying torch/include/ATen/ops/nll_loss_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8534110Z copying torch/include/ATen/ops/_nested_tensor_size_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8535940Z copying torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8536870Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8538590Z copying torch/include/ATen/ops/linalg_qr_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8540330Z copying torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8541710Z copying torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8542730Z copying torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8544300Z copying torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8545450Z copying torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8547170Z copying torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8548140Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8549710Z copying torch/include/ATen/ops/linalg_cross_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8550960Z copying torch/include/ATen/ops/special_bessel_j0_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8551870Z copying torch/include/ATen/ops/rsub_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8553360Z copying torch/include/ATen/ops/sort_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8555190Z copying torch/include/ATen/ops/sparse_resize_and_clear_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8556510Z copying torch/include/ATen/ops/put_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8557930Z copying torch/include/ATen/ops/eq_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8563090Z copying torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8563690Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8564110Z copying torch/include/ATen/ops/_foreach_floor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8564540Z copying torch/include/ATen/ops/signbit_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8565070Z copying torch/include/ATen/ops/erfinv_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8566670Z copying torch/include/ATen/ops/diag_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8568030Z copying torch/include/ATen/ops/_functional_sym_constrain_range_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8569010Z copying torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8570800Z copying torch/include/ATen/ops/_logcumsumexp_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8571630Z copying torch/include/ATen/ops/fractional_max_pool3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8573260Z copying torch/include/ATen/ops/logical_or.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8574750Z copying torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8575770Z copying torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8577230Z copying torch/include/ATen/ops/_pdist_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8578870Z copying torch/include/ATen/ops/empty_permuted_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8580360Z copying torch/include/ATen/ops/topk_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8581700Z copying torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8583010Z copying torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8584210Z copying torch/include/ATen/ops/bincount_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8585870Z copying torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8586960Z copying torch/include/ATen/ops/i0_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8588350Z copying torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8589420Z copying torch/include/ATen/ops/asinh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8590970Z copying torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8592540Z copying torch/include/ATen/ops/resize_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8593510Z copying torch/include/ATen/ops/logcumsumexp_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8595050Z copying torch/include/ATen/ops/ravel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8596540Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8597340Z copying torch/include/ATen/ops/bitwise_and_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8599120Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8600590Z copying torch/include/ATen/ops/_index_put_impl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8601910Z copying torch/include/ATen/ops/isin_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8603050Z copying torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8604430Z copying torch/include/ATen/ops/_cast_Short.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8605810Z copying torch/include/ATen/ops/_sparse_broadcast_to_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8606760Z copying torch/include/ATen/ops/select_scatter_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8608230Z copying torch/include/ATen/ops/fmod_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8609830Z copying torch/include/ATen/ops/masked_scatter_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8611310Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8612250Z copying torch/include/ATen/ops/hardtanh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8613820Z copying torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8614790Z copying torch/include/ATen/ops/index_reduce_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8616300Z copying torch/include/ATen/ops/_linalg_solve_ex_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8618100Z copying torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8618680Z copying torch/include/ATen/ops/std_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8620520Z copying torch/include/ATen/ops/vsplit_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8621720Z copying torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8623240Z copying torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8624010Z copying torch/include/ATen/ops/linalg_lu_solve_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8625640Z copying torch/include/ATen/ops/_sparse_csr_sum.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8627250Z copying torch/include/ATen/ops/view_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8628640Z copying torch/include/ATen/ops/ccol_indices_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8629610Z copying torch/include/ATen/ops/resize_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8631360Z copying torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8632290Z copying torch/include/ATen/ops/constant_pad_nd_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8633800Z copying torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8635280Z copying torch/include/ATen/ops/silu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8636540Z copying torch/include/ATen/ops/choose_qparams_optimized_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8638050Z copying torch/include/ATen/ops/log_softmax.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8639700Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8640550Z copying torch/include/ATen/ops/_foreach_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8641970Z copying torch/include/ATen/ops/_version_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8643770Z copying torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8644540Z copying torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8646260Z copying torch/include/ATen/ops/corrcoef_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8647590Z copying torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8648670Z copying torch/include/ATen/ops/_to_sparse_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8650340Z copying torch/include/ATen/ops/sin_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8650950Z copying torch/include/ATen/ops/_cast_Half_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8652680Z copying torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8654350Z copying torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8655710Z copying torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8657220Z copying torch/include/ATen/ops/hardswish_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8658750Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8659770Z copying torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8661250Z copying torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8662730Z copying torch/include/ATen/ops/_flash_attention_forward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8664180Z copying torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8665410Z copying torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8666810Z copying torch/include/ATen/ops/hardsigmoid_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8668220Z copying torch/include/ATen/ops/linalg_matmul_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8669690Z copying torch/include/ATen/ops/_to_sparse_bsr_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8671140Z copying torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8672000Z copying torch/include/ATen/ops/_pad_circular.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8673750Z copying torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8675430Z copying torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8676620Z copying torch/include/ATen/ops/_foreach_div.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8678420Z copying torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8680100Z copying torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8681560Z copying torch/include/ATen/ops/to_sparse_bsr_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8682860Z copying torch/include/ATen/ops/bmm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8684310Z copying torch/include/ATen/ops/conv3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8685730Z copying torch/include/ATen/ops/addcdiv_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8686640Z copying torch/include/ATen/ops/add_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8688220Z copying torch/include/ATen/ops/multi_margin_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8689720Z copying torch/include/ATen/ops/bitwise_xor_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8690640Z copying torch/include/ATen/ops/exp2_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8692140Z copying torch/include/ATen/ops/_nested_from_padded.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8693660Z copying torch/include/ATen/ops/sparse_bsr_tensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8694790Z copying torch/include/ATen/ops/combinations_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8696060Z copying torch/include/ATen/ops/fmod_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8697840Z copying torch/include/ATen/ops/broadcast_to.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8699190Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8700860Z copying torch/include/ATen/ops/hardswish_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8702320Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8703270Z copying torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8704750Z copying torch/include/ATen/ops/linalg_lu_solve_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8706160Z copying torch/include/ATen/ops/bitwise_or_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8707730Z copying torch/include/ATen/ops/special_i0e_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8708970Z copying torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8710440Z copying torch/include/ATen/ops/vdot_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8711410Z copying torch/include/ATen/ops/_conj_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8713130Z copying torch/include/ATen/ops/gt_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8714550Z copying torch/include/ATen/ops/diag_embed.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8715690Z copying torch/include/ATen/ops/sqrt_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8717100Z copying torch/include/ATen/ops/nan_to_num_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8718160Z copying torch/include/ATen/ops/conv2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8719520Z copying torch/include/ATen/ops/_batch_norm_with_update.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8720820Z copying torch/include/ATen/ops/_foreach_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8721810Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8723400Z copying torch/include/ATen/ops/hardshrink_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8724710Z copying torch/include/ATen/ops/heaviside_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8725820Z copying torch/include/ATen/ops/pdist.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8727460Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8728410Z copying torch/include/ATen/ops/cholesky_solve_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8729950Z copying torch/include/ATen/ops/is_signed.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8731350Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8732140Z copying torch/include/ATen/ops/ne_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8733640Z copying torch/include/ATen/ops/index_reduce.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8735120Z copying torch/include/ATen/ops/logit_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8736000Z copying torch/include/ATen/ops/linalg_multi_dot_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8737810Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8738790Z copying torch/include/ATen/ops/linalg_eig_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8740270Z copying torch/include/ATen/ops/special_i1e_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8741290Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8742730Z copying torch/include/ATen/ops/_conj_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8744090Z copying torch/include/ATen/ops/randperm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8745380Z copying torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8746780Z copying torch/include/ATen/ops/_fused_adamw_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8748100Z copying torch/include/ATen/ops/rand_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8749090Z copying torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8750670Z copying torch/include/ATen/ops/_foreach_cosh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8752230Z copying torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8753000Z copying torch/include/ATen/ops/rename_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8754570Z copying torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8756230Z copying torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8757670Z copying torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8758530Z copying torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8760210Z copying torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8761610Z copying torch/include/ATen/ops/_is_zerotensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8762500Z copying torch/include/ATen/ops/exp_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8764230Z copying torch/include/ATen/ops/multilabel_margin_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8765690Z copying torch/include/ATen/ops/_test_check_tensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8766550Z copying torch/include/ATen/ops/embedding_dense_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8768110Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8769490Z copying torch/include/ATen/ops/_cast_Float.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8770470Z copying torch/include/ATen/ops/_neg_view_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8771780Z copying torch/include/ATen/ops/acosh_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8773370Z copying torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8774690Z copying torch/include/ATen/ops/_assert_tensor_metadata_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8779850Z copying torch/include/ATen/ops/sigmoid_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8780590Z copying torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8781030Z copying torch/include/ATen/ops/index_fill_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8781430Z copying torch/include/ATen/ops/pad_sequence_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8781850Z copying torch/include/ATen/ops/unsafe_split_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8782450Z copying torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8783870Z copying torch/include/ATen/ops/mish_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8785210Z copying torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8786830Z copying torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8787810Z copying torch/include/ATen/ops/addmm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8789890Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8790780Z copying torch/include/ATen/ops/_convolution_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8792420Z copying torch/include/ATen/ops/atan2_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8793550Z copying torch/include/ATen/ops/bucketize_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8795300Z copying torch/include/ATen/ops/native_layer_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8796660Z copying torch/include/ATen/ops/tan.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8797560Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8799440Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8800650Z copying torch/include/ATen/ops/ge_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8801760Z copying torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8803370Z copying torch/include/ATen/ops/lu_solve_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8804830Z copying torch/include/ATen/ops/conv_tbc_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8806220Z copying torch/include/ATen/ops/_log_softmax_backward_data_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8807050Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8808680Z copying torch/include/ATen/ops/_sobol_engine_draw_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8810080Z copying torch/include/ATen/ops/hardtanh_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8811490Z copying torch/include/ATen/ops/bitwise_and_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8812430Z copying torch/include/ATen/ops/masked_select_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8814110Z copying torch/include/ATen/ops/lerp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8815480Z copying torch/include/ATen/ops/matrix_exp_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8816310Z copying torch/include/ATen/ops/special_erfc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8817950Z copying torch/include/ATen/ops/cosh_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8819320Z copying torch/include/ATen/ops/linalg_cross_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8820390Z copying torch/include/ATen/ops/index_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8821880Z copying torch/include/ATen/ops/linalg_multi_dot_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8823520Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8824620Z copying torch/include/ATen/ops/_cslt_sparse_mm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8825690Z copying torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8826860Z copying torch/include/ATen/ops/index_add.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8828420Z copying torch/include/ATen/ops/lt_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8829820Z copying torch/include/ATen/ops/max_pool2d_with_indices.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8830840Z copying torch/include/ATen/ops/nonzero_static_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8832320Z copying torch/include/ATen/ops/exponential_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8833820Z copying torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8835400Z copying torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8836680Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8838020Z copying torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8839440Z copying torch/include/ATen/ops/cummin_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8840730Z copying torch/include/ATen/ops/quantize_per_channel_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8842040Z copying torch/include/ATen/ops/cauchy_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8843400Z copying torch/include/ATen/ops/rsqrt_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8844730Z copying torch/include/ATen/ops/linspace_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8846080Z copying torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8847530Z copying torch/include/ATen/ops/special_modified_bessel_i1_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8848960Z copying torch/include/ATen/ops/frac_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8850500Z copying torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8851260Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8852780Z copying torch/include/ATen/ops/select_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8854170Z copying torch/include/ATen/ops/_nested_sum_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8855190Z copying torch/include/ATen/ops/_foreach_log_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8856850Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8858530Z copying torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8859590Z copying torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8861400Z copying torch/include/ATen/ops/inner_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8862910Z copying torch/include/ATen/ops/_triton_scaled_dot_attention.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8864090Z copying torch/include/ATen/ops/is_coalesced.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8865560Z copying torch/include/ATen/ops/native_group_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8866500Z copying torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8867930Z copying torch/include/ATen/ops/fft_fftfreq_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8869680Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8871170Z copying torch/include/ATen/ops/max_pool2d_with_indices_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8872050Z copying torch/include/ATen/ops/_standard_gamma_grad_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8873750Z copying torch/include/ATen/ops/linalg_inv_ex_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8875140Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8876160Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8877690Z copying torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8879020Z copying torch/include/ATen/ops/hinge_embedding_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8879910Z copying torch/include/ATen/ops/nanmedian_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8881540Z copying torch/include/ATen/ops/dot_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8882780Z copying torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8883880Z copying torch/include/ATen/ops/stack_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8885330Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8886770Z copying torch/include/ATen/ops/smooth_l1_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8888310Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8889140Z copying torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8890940Z copying torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8891740Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8893400Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8894370Z copying torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8895790Z copying torch/include/ATen/ops/index_put_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8897320Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8898210Z copying torch/include/ATen/ops/glu_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8900090Z copying torch/include/ATen/ops/view_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8901460Z copying torch/include/ATen/ops/_foreach_sign_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8902650Z copying torch/include/ATen/ops/index_add_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8904110Z copying torch/include/ATen/ops/native_layer_norm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8905630Z copying torch/include/ATen/ops/to_padded_tensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8906360Z copying torch/include/ATen/ops/is_set_to_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8908070Z copying torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8909330Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8910630Z copying torch/include/ATen/ops/concatenate.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8911560Z copying torch/include/ATen/ops/logaddexp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8913050Z copying torch/include/ATen/ops/batch_norm_backward_reduce.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8914320Z copying torch/include/ATen/ops/_linalg_eigvals.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8915660Z copying torch/include/ATen/ops/qscheme.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8917030Z copying torch/include/ATen/ops/silu_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8917870Z copying torch/include/ATen/ops/movedim_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8919660Z copying torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8920990Z copying torch/include/ATen/ops/lu_unpack_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8922370Z copying torch/include/ATen/ops/thnn_conv2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8923890Z copying torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8925160Z copying torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8926140Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8927640Z copying torch/include/ATen/ops/sparse_sampled_addmm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8929120Z copying torch/include/ATen/ops/igammac_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8930280Z copying torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8931250Z copying torch/include/ATen/ops/quantized_max_pool1d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8932820Z copying torch/include/ATen/ops/special_airy_ai_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8934260Z copying torch/include/ATen/ops/addcdiv_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8935150Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8942520Z copying torch/include/ATen/ops/_nested_get_max_seqlen_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8944090Z copying torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8945390Z copying torch/include/ATen/ops/addcdiv_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8946660Z copying torch/include/ATen/ops/rsqrt.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8948070Z copying torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8949360Z copying torch/include/ATen/ops/_foreach_lgamma.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8951020Z copying torch/include/ATen/ops/argmax_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8951900Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8953740Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8954630Z copying torch/include/ATen/ops/erfc_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8956180Z copying torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8957290Z copying torch/include/ATen/ops/threshold_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8958730Z copying torch/include/ATen/ops/svd_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8960520Z copying torch/include/ATen/ops/addmm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8961440Z copying torch/include/ATen/ops/lift_fresh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8963140Z copying torch/include/ATen/ops/_foreach_zero_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8964580Z copying torch/include/ATen/ops/flatten_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8965330Z copying torch/include/ATen/ops/linalg_lu_factor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8966950Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8968180Z copying torch/include/ATen/ops/where_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8969750Z copying torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8970740Z copying torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8972760Z copying torch/include/ATen/ops/_pad_enum_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8974310Z copying torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8975680Z copying torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8976580Z copying torch/include/ATen/ops/from_file.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8978340Z copying torch/include/ATen/ops/row_stack_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8979700Z copying torch/include/ATen/ops/clamp_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8981130Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8982120Z copying torch/include/ATen/ops/celu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8983570Z copying torch/include/ATen/ops/matrix_exp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8984920Z copying torch/include/ATen/ops/special_logit_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8986300Z copying torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8987700Z copying torch/include/ATen/ops/lstm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8988460Z copying torch/include/ATen/ops/atan2_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8989950Z copying torch/include/ATen/ops/cummaxmin_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8991600Z copying torch/include/ATen/ops/_functional_sym_constrain_range.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8993080Z copying torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8994050Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.8999510Z copying torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9000110Z copying torch/include/ATen/ops/zero_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9000600Z copying torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9001080Z copying torch/include/ATen/ops/row_stack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9001520Z copying torch/include/ATen/ops/slow_conv_transpose3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9001990Z copying torch/include/ATen/ops/miopen_convolution_add_relu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9003500Z copying torch/include/ATen/ops/max_pool2d_with_indices_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9004760Z copying torch/include/ATen/ops/real.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9005860Z copying torch/include/ATen/ops/replication_pad1d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9007380Z copying torch/include/ATen/ops/pairwise_distance_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9008350Z copying torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9009760Z copying torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9011370Z copying torch/include/ATen/ops/_make_dual.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9012340Z copying torch/include/ATen/ops/_make_dual_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9014080Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9015510Z copying torch/include/ATen/ops/renorm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9016930Z copying torch/include/ATen/ops/relu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9018530Z copying torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9019860Z copying torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9021050Z copying torch/include/ATen/ops/avg_pool2d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9022500Z copying torch/include/ATen/ops/_foreach_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9023970Z copying torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9025510Z copying torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9026910Z copying torch/include/ATen/ops/ceil.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9028020Z copying torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9029680Z copying torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9031080Z copying torch/include/ATen/ops/sqrt_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9032070Z copying torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9033580Z copying torch/include/ATen/ops/min_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9035180Z copying torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9036080Z copying torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9037660Z copying torch/include/ATen/ops/_nnpack_available_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9039000Z copying torch/include/ATen/ops/bitwise_right_shift.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9040470Z copying torch/include/ATen/ops/threshold_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9041410Z copying torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9043100Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9044050Z copying torch/include/ATen/ops/_autocast_to_full_precision.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9045640Z copying torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9046680Z copying torch/include/ATen/ops/_nested_get_min_seqlen.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9048440Z copying torch/include/ATen/ops/remainder_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9049860Z copying torch/include/ATen/ops/linalg_det_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9050810Z copying torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9052400Z copying torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9054020Z copying torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9054700Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9056350Z copying torch/include/ATen/ops/randint_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9057780Z copying torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9058630Z copying torch/include/ATen/ops/nested_to_padded_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9060560Z copying torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9061880Z copying torch/include/ATen/ops/resize_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9063370Z copying torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9064020Z copying torch/include/ATen/ops/isclose_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9065700Z copying torch/include/ATen/ops/resize_as_sparse_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9066780Z copying torch/include/ATen/ops/view_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9068270Z copying torch/include/ATen/ops/replication_pad1d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9069700Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9070520Z copying torch/include/ATen/ops/triu_indices_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9072250Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9073400Z copying torch/include/ATen/ops/mish_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9074740Z copying torch/include/ATen/ops/atleast_2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9076140Z copying torch/include/ATen/ops/_nested_get_lengths.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9076880Z copying torch/include/ATen/ops/renorm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9078510Z copying torch/include/ATen/ops/native_group_norm_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9079930Z copying torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9081680Z copying torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9082580Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9084160Z copying torch/include/ATen/ops/take_along_dim_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9085120Z copying torch/include/ATen/ops/_reshape_from_tensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9086490Z copying torch/include/ATen/ops/hsplit_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9088080Z copying torch/include/ATen/ops/gather_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9089160Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9090740Z copying torch/include/ATen/ops/threshold_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9092010Z copying torch/include/ATen/ops/t_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9093510Z copying torch/include/ATen/ops/triu_indices_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9094850Z copying torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9096310Z copying torch/include/ATen/ops/absolute_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9097840Z copying torch/include/ATen/ops/isnan_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9098950Z copying torch/include/ATen/ops/fft_hfft2_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9100630Z copying torch/include/ATen/ops/upsample_nearest3d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9102060Z copying torch/include/ATen/ops/atanh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9103560Z copying torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9104940Z copying torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9106610Z copying torch/include/ATen/ops/fill_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9108030Z copying torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9109220Z copying torch/include/ATen/ops/batch_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9111110Z copying torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9111960Z copying torch/include/ATen/ops/sparse_mask_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9113660Z copying torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9115160Z copying torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9116460Z copying torch/include/ATen/ops/rsub_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9117980Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9118940Z copying torch/include/ATen/ops/sinc_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9120720Z copying torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9122260Z copying torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9123180Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9124670Z copying torch/include/ATen/ops/_nested_from_padded_tensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9125940Z copying torch/include/ATen/ops/randint_like_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9127240Z copying torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9128920Z copying torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9130350Z copying torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9131210Z copying torch/include/ATen/ops/abs.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9132730Z copying torch/include/ATen/ops/isin_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9134240Z copying torch/include/ATen/ops/huber_loss_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9135520Z copying torch/include/ATen/ops/retain_grad.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9136760Z copying torch/include/ATen/ops/sparse_resize_and_clear.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9138150Z copying torch/include/ATen/ops/kron_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9139450Z copying torch/include/ATen/ops/log1p_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9140850Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9141790Z copying torch/include/ATen/ops/_batch_norm_no_update_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9143330Z copying torch/include/ATen/ops/bucketize.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9144600Z copying torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9146080Z copying torch/include/ATen/ops/logaddexp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9147180Z copying torch/include/ATen/ops/gather_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9149020Z copying torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9150040Z copying torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9151590Z copying torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9152510Z copying torch/include/ATen/ops/clip_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9154360Z copying torch/include/ATen/ops/bernoulli_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9155730Z copying torch/include/ATen/ops/_local_scalar_dense_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9157110Z copying torch/include/ATen/ops/_cslt_sparse_mm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9158080Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9159670Z copying torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9161280Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9162650Z copying torch/include/ATen/ops/max_pool3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9163800Z copying torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9165200Z copying torch/include/ATen/ops/special_erf_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9166870Z copying torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9168250Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9169500Z copying torch/include/ATen/ops/pow_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9170470Z copying torch/include/ATen/ops/_cast_Double.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9172240Z copying torch/include/ATen/ops/frobenius_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9173660Z copying torch/include/ATen/ops/sinc_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9174920Z copying torch/include/ATen/ops/softplus.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9176350Z copying torch/include/ATen/ops/_foreach_pow_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9177520Z copying torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9179110Z copying torch/include/ATen/ops/kthvalue_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9180450Z copying torch/include/ATen/ops/_is_any_true.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9181800Z copying torch/include/ATen/ops/reshape_as_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9183420Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9184260Z copying torch/include/ATen/ops/special_bessel_y0_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9185940Z copying torch/include/ATen/ops/crow_indices_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9187290Z copying torch/include/ATen/ops/_weight_int8pack_mm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9188770Z copying torch/include/ATen/ops/uniform_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9189590Z copying torch/include/ATen/ops/_embedding_bag_dense_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9191180Z copying torch/include/ATen/ops/to_sparse_csc_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9192740Z copying torch/include/ATen/ops/reshape_as_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9193540Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9195100Z copying torch/include/ATen/ops/replication_pad1d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9196560Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9197400Z copying torch/include/ATen/ops/_safe_softmax.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9199170Z copying torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9200220Z copying torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9201710Z copying torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9203310Z copying torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9204060Z copying torch/include/ATen/ops/set_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9205680Z copying torch/include/ATen/ops/numpy_T.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9207040Z copying torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9208470Z copying torch/include/ATen/ops/miopen_batch_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9209870Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9210810Z copying torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9215960Z copying torch/include/ATen/ops/float_power.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9216530Z copying torch/include/ATen/ops/narrow_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9217040Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9217510Z copying torch/include/ATen/ops/unique_consecutive_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9218930Z copying torch/include/ATen/ops/rot90.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9220500Z copying torch/include/ATen/ops/t.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9221230Z copying torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9222650Z copying torch/include/ATen/ops/squeeze_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9224080Z copying torch/include/ATen/ops/clamp_min_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9224950Z copying torch/include/ATen/ops/greater.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9226620Z copying torch/include/ATen/ops/swapaxes_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9228270Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9228890Z copying torch/include/ATen/ops/avg_pool3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9230720Z copying torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9231520Z copying torch/include/ATen/ops/_foreach_sign.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9233250Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9234110Z copying torch/include/ATen/ops/_linalg_svd_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9235670Z copying torch/include/ATen/ops/from_blob.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9237130Z copying torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9238610Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9239280Z copying torch/include/ATen/ops/exp_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9241070Z copying torch/include/ATen/ops/index_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9241920Z copying torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9243550Z copying torch/include/ATen/ops/linspace_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9245080Z copying torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9245790Z copying torch/include/ATen/ops/special_ndtri_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9247440Z copying torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9248920Z copying torch/include/ATen/ops/put_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9249770Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9251220Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9253000Z copying torch/include/ATen/ops/linalg_lu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9254240Z copying torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9255660Z copying torch/include/ATen/ops/log1p_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9257030Z copying torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9258520Z copying torch/include/ATen/ops/tril_indices_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9259780Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9260840Z copying torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9262460Z copying torch/include/ATen/ops/_compute_linear_combination_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9263780Z copying torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9265180Z copying torch/include/ATen/ops/put.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9266570Z copying torch/include/ATen/ops/special_airy_ai_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9267620Z copying torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9269180Z copying torch/include/ATen/ops/reflection_pad1d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9270680Z copying torch/include/ATen/ops/eq_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9272140Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9273530Z copying torch/include/ATen/ops/im2col_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9274730Z copying torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9276170Z copying torch/include/ATen/ops/cumprod_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9277030Z copying torch/include/ATen/ops/fill_diagonal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9278790Z copying torch/include/ATen/ops/lgamma_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9279690Z copying torch/include/ATen/ops/equal_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9281010Z copying torch/include/ATen/ops/linalg_eigvals_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9282820Z copying torch/include/ATen/ops/_flash_attention_forward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9284390Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9285350Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9287180Z copying torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9288010Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9289830Z copying torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9290810Z copying torch/include/ATen/ops/value_selecting_reduction_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9292310Z copying torch/include/ATen/ops/_unpack_dual.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9293560Z copying torch/include/ATen/ops/special_log_ndtr_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9295070Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9296550Z copying torch/include/ATen/ops/sparse_csc_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9297610Z copying torch/include/ATen/ops/log1p_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9299080Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9300370Z copying torch/include/ATen/ops/flatten_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9302010Z copying torch/include/ATen/ops/sym_numel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9303430Z copying torch/include/ATen/ops/linalg_svdvals_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9304760Z copying torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9305690Z copying torch/include/ATen/ops/masked_select.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9307220Z copying torch/include/ATen/ops/unfold_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9308680Z copying torch/include/ATen/ops/special_airy_ai.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9309520Z copying torch/include/ATen/ops/min_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9311250Z copying torch/include/ATen/ops/fmin_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9312620Z copying torch/include/ATen/ops/logit_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9313630Z copying torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9315220Z copying torch/include/ATen/ops/view.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9316600Z copying torch/include/ATen/ops/threshold_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9318010Z copying torch/include/ATen/ops/mkldnn_rnn_layer_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9319480Z copying torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9320890Z copying torch/include/ATen/ops/_efficient_attention_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9321830Z copying torch/include/ATen/ops/slice_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9323610Z copying torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9324410Z copying torch/include/ATen/ops/polar_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9325930Z copying torch/include/ATen/ops/linspace.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9327430Z copying torch/include/ATen/ops/linalg_matrix_power_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9328980Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9329870Z copying torch/include/ATen/ops/softplus_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9331400Z copying torch/include/ATen/ops/arccos_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9332900Z copying torch/include/ATen/ops/silu_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9333810Z copying torch/include/ATen/ops/digamma_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9335390Z copying torch/include/ATen/ops/cudnn_is_acceptable_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9336810Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9338350Z copying torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9339390Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9340920Z copying torch/include/ATen/ops/special_erfcx_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9342420Z copying torch/include/ATen/ops/_cdist_forward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9343820Z copying torch/include/ATen/ops/mean_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9344880Z copying torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9346370Z copying torch/include/ATen/ops/_foreach_mul_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9347470Z copying torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9348850Z copying torch/include/ATen/ops/round_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9350270Z copying torch/include/ATen/ops/moveaxis.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9351850Z copying torch/include/ATen/ops/_efficient_attention_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9353280Z copying torch/include/ATen/ops/mul_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9354780Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9356240Z copying torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9357600Z copying torch/include/ATen/ops/select_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9358700Z copying torch/include/ATen/ops/acos_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9360140Z copying torch/include/ATen/ops/nansum_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9361510Z copying torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9363160Z copying torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9364540Z copying torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9365630Z copying torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9367130Z copying torch/include/ATen/ops/diag_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9368210Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9369870Z copying torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9370800Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9372460Z copying torch/include/ATen/ops/_embedding_bag_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9373350Z copying torch/include/ATen/ops/mean_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9375250Z copying torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9376320Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9377780Z copying torch/include/ATen/ops/_cudnn_ctc_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9379540Z copying torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9380940Z copying torch/include/ATen/ops/trunc_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9381820Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9383440Z copying torch/include/ATen/ops/detach.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9384920Z copying torch/include/ATen/ops/special_hermite_polynomial_he.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9386490Z copying torch/include/ATen/ops/logaddexp2_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9387740Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9389080Z copying torch/include/ATen/ops/random_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9390770Z copying torch/include/ATen/ops/_aminmax_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9392270Z copying torch/include/ATen/ops/gelu_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9393140Z copying torch/include/ATen/ops/masked_select_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9394770Z copying torch/include/ATen/ops/row_indices_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9396060Z copying torch/include/ATen/ops/expand.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9397000Z copying torch/include/ATen/ops/asinh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9398740Z copying torch/include/ATen/ops/atanh_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9400030Z copying torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9401340Z copying torch/include/ATen/ops/sub_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9402920Z copying torch/include/ATen/ops/affine_grid_generator_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9403640Z copying torch/include/ATen/ops/rnn_tanh_cell_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9405360Z copying torch/include/ATen/ops/ger_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9406990Z copying torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9407960Z copying torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9409530Z copying torch/include/ATen/ops/upsample_linear1d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9410890Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9412250Z copying torch/include/ATen/ops/result_type_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9413750Z copying torch/include/ATen/ops/_prelu_kernel_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9414620Z copying torch/include/ATen/ops/ormqr_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9416290Z copying torch/include/ATen/ops/floor_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9417810Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9419330Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9420260Z copying torch/include/ATen/ops/slice_inverse_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9421800Z copying torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9422850Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9424340Z copying torch/include/ATen/ops/threshold.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9425770Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9427270Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9432390Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9433060Z copying torch/include/ATen/ops/special_ndtri_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9433470Z copying torch/include/ATen/ops/_sparse_addmm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9433950Z copying torch/include/ATen/ops/special_xlogy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9434550Z copying torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9435000Z copying torch/include/ATen/ops/is_floating_point_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9436510Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9437950Z copying torch/include/ATen/ops/_foreach_pow.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9438840Z copying torch/include/ATen/ops/fft_irfftn_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9440590Z copying torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9442130Z copying torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9443030Z copying torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9444710Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9445570Z copying torch/include/ATen/ops/median_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9447410Z copying torch/include/ATen/ops/fft_ifft.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9448670Z copying torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9449660Z copying torch/include/ATen/ops/ceil_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9451220Z copying torch/include/ATen/ops/leaky_relu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9452380Z copying torch/include/ATen/ops/full_like.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9454330Z copying torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9455640Z copying torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9457090Z copying torch/include/ATen/ops/rad2deg_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9458520Z copying torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9459870Z copying torch/include/ATen/ops/fmax_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9460830Z copying torch/include/ATen/ops/refine_names.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9462250Z copying torch/include/ATen/ops/linalg_cond_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9463750Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9464720Z copying torch/include/ATen/ops/embedding_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9466180Z copying torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9467620Z copying torch/include/ATen/ops/tensordot_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9469130Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9469820Z copying torch/include/ATen/ops/clamp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9471550Z copying torch/include/ATen/ops/_foreach_sqrt_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9472500Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9474180Z copying torch/include/ATen/ops/glu_jvp_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9475250Z copying torch/include/ATen/ops/batch_norm_elemt.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9476850Z copying torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9477680Z copying torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9479200Z copying torch/include/ATen/ops/special_erfcx_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9480590Z copying torch/include/ATen/ops/nextafter_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9481510Z copying torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9483140Z copying torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9484650Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9486030Z copying torch/include/ATen/ops/batch_norm_stats_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9487040Z copying torch/include/ATen/ops/conv_tbc_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9488640Z copying torch/include/ATen/ops/mkldnn_linear_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9489520Z copying torch/include/ATen/ops/_assert_tensor_metadata.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9491040Z copying torch/include/ATen/ops/slice_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9492100Z copying torch/include/ATen/ops/add_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9493850Z copying torch/include/ATen/ops/rnn_tanh_cell.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9495320Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9496800Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9497730Z copying torch/include/ATen/ops/expand_as_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9499630Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9500510Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9502150Z copying torch/include/ATen/ops/masked_scatter_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9503800Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9504620Z copying torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9506050Z copying torch/include/ATen/ops/_aminmax_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9507240Z copying torch/include/ATen/ops/istft_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9508490Z copying torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9510380Z copying torch/include/ATen/ops/max_pool3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9512050Z copying torch/include/ATen/ops/special_expit_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9513550Z copying torch/include/ATen/ops/_stack_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9515230Z copying torch/include/ATen/ops/fliplr_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9516740Z copying torch/include/ATen/ops/acos_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9518080Z copying torch/include/ATen/ops/log10_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9519290Z copying torch/include/ATen/ops/argmax_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9521200Z copying torch/include/ATen/ops/triu_indices.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9522630Z copying torch/include/ATen/ops/sparse_dim_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9523960Z copying torch/include/ATen/ops/bitwise_and_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9525520Z copying torch/include/ATen/ops/atan_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9526400Z copying torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9527810Z copying torch/include/ATen/ops/prod.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9529560Z copying torch/include/ATen/ops/mul_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9530920Z copying torch/include/ATen/ops/is_pinned.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9532250Z copying torch/include/ATen/ops/index_add_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9533440Z copying torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9534840Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9535810Z copying torch/include/ATen/ops/unfold.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9537590Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9538990Z copying torch/include/ATen/ops/rrelu_with_noise_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9540470Z copying torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9542210Z copying torch/include/ATen/ops/upsample_trilinear3d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9543100Z copying torch/include/ATen/ops/linalg_householder_product.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9544730Z copying torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9546050Z copying torch/include/ATen/ops/aminmax_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9547060Z copying torch/include/ATen/ops/view_as_real.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9548560Z copying torch/include/ATen/ops/_softmax_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9550380Z copying torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9551730Z copying torch/include/ATen/ops/huber_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9552790Z copying torch/include/ATen/ops/_native_batch_norm_legit_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9554600Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9556220Z copying torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9557010Z copying torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9558520Z copying torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9560240Z copying torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9560860Z copying torch/include/ATen/ops/diagflat.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9562440Z copying torch/include/ATen/ops/amax_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9563940Z copying torch/include/ATen/ops/addr_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9564670Z copying torch/include/ATen/ops/special_i1e.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9566410Z copying torch/include/ATen/ops/_embedding_bag_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:05.9732380Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0818130Z copying torch/include/ATen/ops/zero_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0819360Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0820820Z copying torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0833770Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0834980Z copying torch/include/ATen/ops/arange_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0836970Z copying torch/include/ATen/ops/mish_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0839650Z copying torch/include/ATen/ops/chalf_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0842160Z copying torch/include/ATen/ops/linalg_svdvals.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0843940Z copying torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0845290Z copying torch/include/ATen/ops/special_spherical_bessel_j0.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0846650Z copying torch/include/ATen/ops/_weight_int4pack_mm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0847970Z copying torch/include/ATen/ops/expm1_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0849120Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0850750Z copying torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0852360Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0853690Z copying torch/include/ATen/ops/std_mean.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0855090Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0856390Z copying torch/include/ATen/ops/_linalg_eigh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0858000Z copying torch/include/ATen/ops/smooth_l1_loss_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0859070Z copying torch/include/ATen/ops/igamma_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0860950Z copying torch/include/ATen/ops/_embedding_bag_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0862420Z copying torch/include/ATen/ops/remainder_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0863980Z copying torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0865500Z copying torch/include/ATen/ops/masked_select_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0866320Z copying torch/include/ATen/ops/_sparse_sum_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0867840Z copying torch/include/ATen/ops/empty.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0869770Z copying torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0871120Z copying torch/include/ATen/ops/baddbmm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0872500Z copying torch/include/ATen/ops/poisson_nll_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0874060Z copying torch/include/ATen/ops/baddbmm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0874970Z copying torch/include/ATen/ops/ger.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0876610Z copying torch/include/ATen/ops/_conv_depthwise2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0878110Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0879650Z copying torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0881700Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0882480Z copying torch/include/ATen/ops/lift_fresh_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0884650Z copying torch/include/ATen/ops/nll_loss2d_forward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0887590Z copying torch/include/ATen/ops/imag_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0889880Z copying torch/include/ATen/ops/full_like_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0890810Z copying torch/include/ATen/ops/_cast_Float_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0892340Z copying torch/include/ATen/ops/upsample_nearest3d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0893770Z copying torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0895060Z copying torch/include/ATen/ops/lt_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0896420Z copying torch/include/ATen/ops/copysign.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0897300Z copying torch/include/ATen/ops/_indices_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0899250Z copying torch/include/ATen/ops/replication_pad3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0899950Z copying torch/include/ATen/ops/index_fill_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0901550Z copying torch/include/ATen/ops/conv_tbc_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0902990Z copying torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0904270Z copying torch/include/ATen/ops/logical_xor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0905640Z copying torch/include/ATen/ops/logit_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0907380Z copying torch/include/ATen/ops/softplus_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0908110Z copying torch/include/ATen/ops/upsample_nearest3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0909500Z copying torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0917970Z copying torch/include/ATen/ops/ceil_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0926250Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0927730Z copying torch/include/ATen/ops/nanquantile_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0937760Z copying torch/include/ATen/ops/_make_dep_token_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0938510Z copying torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0941480Z copying torch/include/ATen/ops/batch_norm_backward_elemt_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0942970Z copying torch/include/ATen/ops/special_round_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0944280Z copying torch/include/ATen/ops/_reshape_alias.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0949340Z copying torch/include/ATen/ops/le_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0950750Z copying torch/include/ATen/ops/softshrink_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0956530Z copying torch/include/ATen/ops/resolve_neg_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0958190Z copying torch/include/ATen/ops/binomial_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0964790Z copying torch/include/ATen/ops/mvlgamma_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0965620Z copying torch/include/ATen/ops/lshift_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0967370Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0973670Z copying torch/include/ATen/ops/_efficient_attention_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0975120Z copying torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0981870Z copying torch/include/ATen/ops/special_gammaincc_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0983340Z copying torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0989070Z copying torch/include/ATen/ops/cosh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0990390Z copying torch/include/ATen/ops/clamp_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0991740Z copying torch/include/ATen/ops/binary_cross_entropy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0997130Z copying torch/include/ATen/ops/concat.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.0998410Z copying torch/include/ATen/ops/mul_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1005660Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1007110Z copying torch/include/ATen/ops/special_multigammaln.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1007970Z copying torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1014100Z copying torch/include/ATen/ops/fft_ifftn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1015680Z copying torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1022750Z copying torch/include/ATen/ops/nonzero_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1024520Z copying torch/include/ATen/ops/nonzero.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1026480Z copying torch/include/ATen/ops/fliplr_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1030870Z copying torch/include/ATen/ops/negative_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1032150Z copying torch/include/ATen/ops/fft_fftn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1038660Z copying torch/include/ATen/ops/native_batch_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1039600Z copying torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1041130Z copying torch/include/ATen/ops/new_empty_strided_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1046770Z copying torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1047910Z copying torch/include/ATen/ops/scatter_add_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1055040Z copying torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1056530Z copying torch/include/ATen/ops/eye_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1064580Z copying torch/include/ATen/ops/cartesian_prod_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1090710Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1095050Z copying torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1099200Z copying torch/include/ATen/ops/conv_transpose2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1108560Z copying torch/include/ATen/ops/as_strided.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1117320Z copying torch/include/ATen/ops/geometric_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1122530Z copying torch/include/ATen/ops/cosh_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1124280Z copying torch/include/ATen/ops/copysign_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1126450Z copying torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1131590Z copying torch/include/ATen/ops/output_nr_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1132770Z copying torch/include/ATen/ops/argsort_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1139240Z copying torch/include/ATen/ops/fft_hfft_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1141140Z copying torch/include/ATen/ops/sinh_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1147290Z copying torch/include/ATen/ops/_foreach_sin_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1148280Z copying torch/include/ATen/ops/_unique_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1149520Z copying torch/include/ATen/ops/sin_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1155360Z copying torch/include/ATen/ops/range_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1156380Z copying torch/include/ATen/ops/special_log_softmax.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1163370Z copying torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1164530Z copying torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1171630Z copying torch/include/ATen/ops/argmax_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1172730Z copying torch/include/ATen/ops/detach_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1174570Z copying torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1179810Z copying torch/include/ATen/ops/isnan.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1180720Z copying torch/include/ATen/ops/special_xlogy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1187420Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1188410Z copying torch/include/ATen/ops/all_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1190370Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1194670Z copying torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1195840Z copying torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1202020Z copying torch/include/ATen/ops/cumsum_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1203870Z copying torch/include/ATen/ops/as_strided_scatter_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1210900Z copying torch/include/ATen/ops/scatter_reduce_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1211920Z copying torch/include/ATen/ops/_indices.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1213420Z copying torch/include/ATen/ops/_linalg_det_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1218140Z copying torch/include/ATen/ops/sin_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1219500Z copying torch/include/ATen/ops/random_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1226230Z copying torch/include/ATen/ops/_pdist_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1227230Z copying torch/include/ATen/ops/nll_loss_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1233780Z copying torch/include/ATen/ops/tanh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1234990Z copying torch/include/ATen/ops/cumprod.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1236740Z copying torch/include/ATen/ops/special_entr_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1241160Z copying torch/include/ATen/ops/_foreach_lgamma_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1243010Z copying torch/include/ATen/ops/any_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1249690Z copying torch/include/ATen/ops/_add_batch_dim_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1251020Z copying torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1262420Z copying torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1263440Z copying torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1264360Z copying torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1266440Z copying torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1268830Z copying torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1272180Z copying torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1276500Z copying torch/include/ATen/ops/linalg_cholesky_ex.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1282060Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1285700Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1286760Z copying torch/include/ATen/ops/geqrf_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1292300Z copying torch/include/ATen/ops/fft_rfftn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1294580Z copying torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1295630Z copying torch/include/ATen/ops/slow_conv3d_forward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1301000Z copying torch/include/ATen/ops/qr_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1302140Z copying torch/include/ATen/ops/linalg_cholesky.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1304000Z copying torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1309710Z copying torch/include/ATen/ops/lerp_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1311110Z copying torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1317310Z copying torch/include/ATen/ops/masked_scatter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1318470Z copying torch/include/ATen/ops/flip_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1320090Z copying torch/include/ATen/ops/topk_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1325070Z copying torch/include/ATen/ops/_neg_view_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1326860Z copying torch/include/ATen/ops/silu_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1332640Z copying torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1334630Z copying torch/include/ATen/ops/col_indices_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1341150Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1342270Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1343650Z copying torch/include/ATen/ops/rand_like_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1348280Z copying torch/include/ATen/ops/_foobar_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1350510Z copying torch/include/ATen/ops/histogram_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1357160Z copying torch/include/ATen/ops/all_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1358280Z copying torch/include/ATen/ops/native_channel_shuffle.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1359460Z copying torch/include/ATen/ops/vdot.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1365310Z copying torch/include/ATen/ops/slow_conv_dilated3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1366260Z copying torch/include/ATen/ops/any_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1373040Z copying torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1374200Z copying torch/include/ATen/ops/_sparse_log_softmax_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1380490Z copying torch/include/ATen/ops/avg_pool2d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1381610Z copying torch/include/ATen/ops/_dirichlet_grad_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1382690Z copying torch/include/ATen/ops/_coalesced_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1388210Z copying torch/include/ATen/ops/baddbmm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1389420Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1396390Z copying torch/include/ATen/ops/trace_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1398300Z copying torch/include/ATen/ops/nextafter_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1403980Z copying torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1406130Z copying torch/include/ATen/ops/softshrink_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1407300Z copying torch/include/ATen/ops/native_dropout_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1411270Z copying torch/include/ATen/ops/_native_multi_head_attention.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1413330Z copying torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1418740Z copying torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1420150Z copying torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1426510Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1427750Z copying torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1428970Z copying torch/include/ATen/ops/renorm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1435380Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1443600Z copying torch/include/ATen/ops/t_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1444740Z copying torch/include/ATen/ops/unsafe_split_with_sizes_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1445870Z copying torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1453030Z copying torch/include/ATen/ops/fmin_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1454110Z copying torch/include/ATen/ops/_sparse_sum_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1460520Z copying torch/include/ATen/ops/special_sinc_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1461600Z copying torch/include/ATen/ops/nll_loss_nd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1467990Z copying torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1469180Z copying torch/include/ATen/ops/_softmax_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1470940Z copying torch/include/ATen/ops/miopen_batch_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1476980Z copying torch/include/ATen/ops/angle_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1478220Z copying torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1485000Z copying torch/include/ATen/ops/gather_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1486210Z copying torch/include/ATen/ops/reflection_pad3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1487940Z copying torch/include/ATen/ops/relu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1493150Z copying torch/include/ATen/ops/poisson_nll_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1494300Z copying torch/include/ATen/ops/bitwise_not_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1500690Z copying torch/include/ATen/ops/item_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1502580Z copying torch/include/ATen/ops/_native_batch_norm_legit_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1503700Z copying torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1508760Z copying torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1511200Z copying torch/include/ATen/ops/special_legendre_polynomial_p.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1517790Z copying torch/include/ATen/ops/cudnn_batch_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1519180Z copying torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1520480Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1525730Z copying torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1526850Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1529880Z copying torch/include/ATen/ops/pixel_shuffle_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1538860Z copying torch/include/ATen/ops/rshift.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1539790Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1542960Z copying torch/include/ATen/ops/batch_norm_update_stats_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1543970Z copying torch/include/ATen/ops/squeeze_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1547070Z copying torch/include/ATen/ops/special_i0e_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1555550Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1556560Z copying torch/include/ATen/ops/mish.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1561830Z copying torch/include/ATen/ops/subtract.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1563190Z copying torch/include/ATen/ops/trunc_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1569360Z copying torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1570430Z copying torch/include/ATen/ops/amin_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1577290Z copying torch/include/ATen/ops/amin_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1578320Z copying torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1579710Z copying torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1586100Z copying torch/include/ATen/ops/miopen_convolution_relu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1587150Z copying torch/include/ATen/ops/indices_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1594480Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1595470Z copying torch/include/ATen/ops/_reshape_from_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1602770Z copying torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1603840Z copying torch/include/ATen/ops/blackman_window_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1605180Z copying torch/include/ATen/ops/batch_norm_elemt_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1611390Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1612830Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1618910Z copying torch/include/ATen/ops/_sobol_engine_ff_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1619930Z copying torch/include/ATen/ops/sort_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1621130Z copying torch/include/ATen/ops/logit_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1626440Z copying torch/include/ATen/ops/cat_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1627640Z copying torch/include/ATen/ops/le_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1635050Z copying torch/include/ATen/ops/mean_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1636110Z copying torch/include/ATen/ops/is_inference.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1637870Z copying torch/include/ATen/ops/fft_ihfftn_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1642110Z copying torch/include/ATen/ops/mode_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1644350Z copying torch/include/ATen/ops/segment_reduce_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1649140Z copying torch/include/ATen/ops/detach_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1650220Z copying torch/include/ATen/ops/_triton_multi_head_attention_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1653440Z copying torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1658550Z copying torch/include/ATen/ops/corrcoef_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1659850Z copying torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1666210Z copying torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1667370Z copying torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1673820Z copying torch/include/ATen/ops/unflatten_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1674970Z copying torch/include/ATen/ops/avg_pool3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1676970Z copying torch/include/ATen/ops/ldexp_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1682230Z copying torch/include/ATen/ops/special_log1p.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1683680Z copying torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1691070Z copying torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1692110Z copying torch/include/ATen/ops/le_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1693420Z copying torch/include/ATen/ops/threshold_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1699800Z copying torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1700910Z copying torch/include/ATen/ops/align_as.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1708200Z copying torch/include/ATen/ops/linspace_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1709370Z copying torch/include/ATen/ops/_nested_get_ragged_idx_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1710840Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1715170Z copying torch/include/ATen/ops/slow_conv_transpose2d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1718920Z copying torch/include/ATen/ops/narrow.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1724400Z copying torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1725460Z copying torch/include/ATen/ops/hspmm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1731900Z copying torch/include/ATen/ops/_saturate_weight_to_fp16.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1733340Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1739640Z copying torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1740690Z copying torch/include/ATen/ops/var_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1746960Z copying torch/include/ATen/ops/erfinv_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1748070Z copying torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1749450Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1756180Z copying torch/include/ATen/ops/dot_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1757240Z copying torch/include/ATen/ops/sparse_dim_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1761350Z copying torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1764050Z copying torch/include/ATen/ops/resize.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1768370Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1769460Z copying torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1773290Z copying torch/include/ATen/ops/erfc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1777300Z copying torch/include/ATen/ops/logical_not_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1781670Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1785340Z copying torch/include/ATen/ops/to_sparse_bsr_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1786450Z copying torch/include/ATen/ops/digamma_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1791180Z copying torch/include/ATen/ops/lstm_cell.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1793610Z copying torch/include/ATen/ops/digamma_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1798940Z copying torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1799970Z copying torch/include/ATen/ops/col_indices.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1802760Z copying torch/include/ATen/ops/tile_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1808130Z copying torch/include/ATen/ops/mm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1811090Z copying torch/include/ATen/ops/movedim_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1815000Z copying torch/include/ATen/ops/bincount_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1816000Z copying torch/include/ATen/ops/tril_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1820940Z copying torch/include/ATen/ops/logical_xor_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1824160Z copying torch/include/ATen/ops/_nested_view_from_jagged_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1829180Z copying torch/include/ATen/ops/matrix_H_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1831550Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1832620Z copying torch/include/ATen/ops/bitwise_not_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1838750Z copying torch/include/ATen/ops/_indices_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1839930Z copying torch/include/ATen/ops/addbmm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1846670Z copying torch/include/ATen/ops/sym_storage_offset_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1847860Z copying torch/include/ATen/ops/ctc_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1853950Z copying torch/include/ATen/ops/quantized_max_pool3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1855020Z copying torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1856100Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1861120Z copying torch/include/ATen/ops/eq_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1863070Z copying torch/include/ATen/ops/angle_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1869190Z copying torch/include/ATen/ops/take_along_dim_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1871150Z copying torch/include/ATen/ops/_dimI_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1877090Z copying torch/include/ATen/ops/atan_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1878460Z copying torch/include/ATen/ops/unfold_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1879730Z copying torch/include/ATen/ops/_sparse_sparse_matmul_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1886300Z copying torch/include/ATen/ops/_debug_has_internal_overlap.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1893510Z copying torch/include/ATen/ops/special_ndtri_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1901570Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1902660Z copying torch/include/ATen/ops/resize_as_sparse_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1903730Z copying torch/include/ATen/ops/to_mkldnn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1908570Z copying torch/include/ATen/ops/le.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1909630Z copying torch/include/ATen/ops/fft_ihfftn_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1916730Z copying torch/include/ATen/ops/lstm_mps_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1917830Z copying torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1924630Z copying torch/include/ATen/ops/transpose_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1925660Z copying torch/include/ATen/ops/meshgrid_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1928580Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1931970Z copying torch/include/ATen/ops/_cudnn_rnn_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1933840Z copying torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1937550Z copying torch/include/ATen/ops/_fused_adam_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1940590Z copying torch/include/ATen/ops/copy_sparse_to_sparse_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1945190Z copying torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1946310Z copying torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1950160Z copying torch/include/ATen/ops/special_gammainc_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1955270Z copying torch/include/ATen/ops/embedding_sparse_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1958170Z copying torch/include/ATen/ops/adaptive_max_pool1d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1959360Z copying torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1964890Z copying torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1966990Z copying torch/include/ATen/ops/fft_hfft2.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1972980Z copying torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1974080Z copying torch/include/ATen/ops/split_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1980770Z copying torch/include/ATen/ops/empty_permuted.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1981880Z copying torch/include/ATen/ops/smm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1983600Z copying torch/include/ATen/ops/_foreach_expm1_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1988480Z copying torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1990720Z copying torch/include/ATen/ops/is_conj_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1995850Z copying torch/include/ATen/ops/fft_fftshift_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1997870Z copying torch/include/ATen/ops/_convolution_mode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.1998880Z copying torch/include/ATen/ops/diagonal_scatter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2005900Z copying torch/include/ATen/ops/sym_constrain_range_for_size_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2006910Z copying torch/include/ATen/ops/_unique_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2012920Z copying torch/include/ATen/ops/cdist_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2014010Z copying torch/include/ATen/ops/conv_tbc_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2020860Z copying torch/include/ATen/ops/triangular_solve_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2022040Z copying torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2023350Z copying torch/include/ATen/ops/unique_dim_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2028850Z copying torch/include/ATen/ops/searchsorted_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2029890Z copying torch/include/ATen/ops/logspace_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2035910Z copying torch/include/ATen/ops/record_stream_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2037280Z copying torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2043350Z copying torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2044600Z copying torch/include/ATen/ops/frac.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2045580Z copying torch/include/ATen/ops/binomial_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2052220Z copying torch/include/ATen/ops/fft_ihfft_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2053450Z copying torch/include/ATen/ops/amin_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2060030Z copying torch/include/ATen/ops/hamming_window_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2067380Z copying torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2068800Z copying torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2069870Z copying torch/include/ATen/ops/indices.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2075140Z copying torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2076160Z copying torch/include/ATen/ops/bitwise_and_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2082910Z copying torch/include/ATen/ops/searchsorted_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2084050Z copying torch/include/ATen/ops/histc_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2090850Z copying torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2092000Z copying torch/include/ATen/ops/is_pinned_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2092960Z copying torch/include/ATen/ops/empty_quantized_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2097930Z copying torch/include/ATen/ops/cholesky_inverse_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2106100Z copying torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2107230Z copying torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2114310Z copying torch/include/ATen/ops/arctanh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2115250Z copying torch/include/ATen/ops/alias_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2121920Z copying torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2122950Z copying torch/include/ATen/ops/linalg_pinv.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2124150Z copying torch/include/ATen/ops/instance_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2129470Z copying torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2130550Z copying torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2137200Z copying torch/include/ATen/ops/scatter_add_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2139260Z copying torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2140220Z copying torch/include/ATen/ops/kron_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2145370Z copying torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2146390Z copying torch/include/ATen/ops/arctan2_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2153040Z copying torch/include/ATen/ops/eye.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2154420Z copying torch/include/ATen/ops/_foreach_log1p_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2156270Z copying torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2162570Z copying torch/include/ATen/ops/_foreach_sqrt.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2163880Z copying torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2170330Z copying torch/include/ATen/ops/silu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2171420Z copying torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2177800Z copying torch/include/ATen/ops/nll_loss2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2178910Z copying torch/include/ATen/ops/rnn_relu_cell_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2180260Z copying torch/include/ATen/ops/bitwise_or_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2185260Z copying torch/include/ATen/ops/bartlett_window.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2186440Z copying torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2193580Z copying torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2195010Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2201720Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2203000Z copying torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2204190Z copying torch/include/ATen/ops/empty_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2209040Z copying torch/include/ATen/ops/_linalg_check_errors_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2210230Z copying torch/include/ATen/ops/cudnn_batch_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2216880Z copying torch/include/ATen/ops/_gather_sparse_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2218140Z copying torch/include/ATen/ops/empty_strided_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2219320Z copying torch/include/ATen/ops/view_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2225940Z copying torch/include/ATen/ops/special_entr_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2233870Z copying torch/include/ATen/ops/sinh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2234880Z copying torch/include/ATen/ops/_nested_from_padded_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2242520Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2243800Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2245050Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2249760Z copying torch/include/ATen/ops/frac_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2252080Z copying torch/include/ATen/ops/special_i1_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2258470Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2259610Z copying torch/include/ATen/ops/_foreach_tan_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2260760Z copying torch/include/ATen/ops/tan_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2263660Z copying torch/include/ATen/ops/frobenius_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2268630Z copying torch/include/ATen/ops/linalg_matrix_exp_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2269550Z copying torch/include/ATen/ops/sgn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2273160Z copying torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2278220Z copying torch/include/ATen/ops/_trilinear.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2281280Z copying torch/include/ATen/ops/glu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2286760Z copying torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2287950Z copying torch/include/ATen/ops/cudnn_convolution_add_relu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2290690Z copying torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2295710Z copying torch/include/ATen/ops/as_strided_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2298380Z copying torch/include/ATen/ops/_test_optional_floatlist_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2299920Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2305570Z copying torch/include/ATen/ops/sum.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2306860Z copying torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2310520Z copying torch/include/ATen/ops/special_xlog1py.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2318350Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2319390Z copying torch/include/ATen/ops/inner_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2324160Z copying torch/include/ATen/ops/elu_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2327020Z copying torch/include/ATen/ops/_foreach_round_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2331410Z copying torch/include/ATen/ops/equal_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2332510Z copying torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2336580Z copying torch/include/ATen/ops/linalg_lu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2341210Z copying torch/include/ATen/ops/unbind_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2345780Z copying torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2349860Z copying torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2350860Z copying torch/include/ATen/ops/_pin_memory_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2354480Z copying torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2357630Z copying torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2361540Z copying torch/include/ATen/ops/linalg_det.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2362660Z copying torch/include/ATen/ops/chalf_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2366690Z copying torch/include/ATen/ops/_sobol_engine_scramble_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2369690Z copying torch/include/ATen/ops/floor_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2375800Z copying torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2376920Z copying torch/include/ATen/ops/special_polygamma_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2383130Z copying torch/include/ATen/ops/values.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2384410Z copying torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2385680Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2392990Z copying torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2397810Z copying torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2400700Z copying torch/include/ATen/ops/gelu_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2401730Z copying torch/include/ATen/ops/adaptive_avg_pool1d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2402920Z copying torch/include/ATen/ops/cumsum_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2408490Z copying torch/include/ATen/ops/bernoulli_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2409790Z copying torch/include/ATen/ops/_assert_async_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2416260Z copying torch/include/ATen/ops/isposinf_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2418790Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2419940Z copying torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2425570Z copying torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2426610Z copying torch/include/ATen/ops/special_i0_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2433020Z copying torch/include/ATen/ops/linalg_cond_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2434160Z copying torch/include/ATen/ops/to.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2440000Z copying torch/include/ATen/ops/_linalg_svd_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2440980Z copying torch/include/ATen/ops/angle.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2442090Z copying torch/include/ATen/ops/softplus_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2449230Z copying torch/include/ATen/ops/allclose.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2450200Z copying torch/include/ATen/ops/special_i1_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2458040Z copying torch/include/ATen/ops/_embedding_bag.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2459090Z copying torch/include/ATen/ops/kaiser_window_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2466410Z copying torch/include/ATen/ops/_unpack_dual_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2467440Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2468600Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2474060Z copying torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2475210Z copying torch/include/ATen/ops/clamp_min_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2481640Z copying torch/include/ATen/ops/expand_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2482760Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2484060Z copying torch/include/ATen/ops/binary_cross_entropy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2489470Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2491390Z copying torch/include/ATen/ops/_debug_has_internal_overlap_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2497880Z copying torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2499160Z copying torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2500270Z copying torch/include/ATen/ops/soft_margin_loss_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2505980Z copying torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2507080Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2513540Z copying torch/include/ATen/ops/special_modified_bessel_k1.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2514920Z copying torch/include/ATen/ops/rsqrt_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2520540Z copying torch/include/ATen/ops/to_dense.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2521460Z copying torch/include/ATen/ops/fmin.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2523390Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2527580Z copying torch/include/ATen/ops/scatter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2528750Z copying torch/include/ATen/ops/scaled_dot_product_attention.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2535150Z copying torch/include/ATen/ops/mode_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2537210Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2544160Z copying torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2545230Z copying torch/include/ATen/ops/masked_select_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2546420Z copying torch/include/ATen/ops/_foreach_rsqrt.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2552180Z copying torch/include/ATen/ops/_test_ambiguous_defaults.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2554280Z copying torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2559800Z copying torch/include/ATen/ops/mul.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2562000Z copying torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2563930Z copying torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2569390Z copying torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2571380Z copying torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2578520Z copying torch/include/ATen/ops/_nested_from_padded_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2585410Z copying torch/include/ATen/ops/upsample_nearest2d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2586560Z copying torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2592810Z copying torch/include/ATen/ops/sparse_csc_tensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2594810Z copying torch/include/ATen/ops/gcd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2600550Z copying torch/include/ATen/ops/_dimV.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2601590Z copying torch/include/ATen/ops/batch_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2602860Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2609610Z copying torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2617340Z copying torch/include/ATen/ops/native_layer_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2618350Z copying torch/include/ATen/ops/special_ndtr_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2625210Z copying torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2626430Z copying torch/include/ATen/ops/retain_grad_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2627480Z copying torch/include/ATen/ops/asin_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2633480Z copying torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2634550Z copying torch/include/ATen/ops/column_stack_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2641080Z copying torch/include/ATen/ops/_weight_int8pack_mm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2642280Z copying torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2643630Z copying torch/include/ATen/ops/_flash_attention_forward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2648710Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2649980Z copying torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2653000Z copying torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2658160Z copying torch/include/ATen/ops/logit_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2659220Z copying torch/include/ATen/ops/log_normal_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2665150Z copying torch/include/ATen/ops/qr_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2667410Z copying torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2672580Z copying torch/include/ATen/ops/trunc_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2673660Z copying torch/include/ATen/ops/miopen_rnn_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2675940Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2685530Z copying torch/include/ATen/ops/_foreach_sub_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2686490Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2688970Z copying torch/include/ATen/ops/_wrapped_linear_prepack_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2690900Z copying torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2696610Z copying torch/include/ATen/ops/clamp_min_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2697630Z copying torch/include/ATen/ops/is_leaf.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2699020Z copying torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2706420Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2707400Z copying torch/include/ATen/ops/ldexp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2714220Z copying torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2721860Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2722980Z copying torch/include/ATen/ops/upsample_nearest3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2724090Z copying torch/include/ATen/ops/bmm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2729370Z copying torch/include/ATen/ops/linalg_inv.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2730800Z copying torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2737120Z copying torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2738330Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2739460Z copying torch/include/ATen/ops/_pack_padded_sequence_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2746270Z copying torch/include/ATen/ops/randperm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2954650Z copying torch/include/ATen/ops/index_reduce_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2955630Z copying torch/include/ATen/ops/lu_solve_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2956900Z copying torch/include/ATen/ops/dense_dim_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2958710Z copying torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2959780Z copying torch/include/ATen/ops/exp2_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2961030Z copying torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2962250Z copying torch/include/ATen/ops/margin_ranking_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2963700Z copying torch/include/ATen/ops/bitwise_right_shift_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2964790Z copying torch/include/ATen/ops/sparse_csr_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2966520Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2967670Z copying torch/include/ATen/ops/sqrt_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2968830Z copying torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2970280Z copying torch/include/ATen/ops/index_fill_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2971360Z copying torch/include/ATen/ops/maximum_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2972620Z copying torch/include/ATen/ops/asinh_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2974260Z copying torch/include/ATen/ops/bitwise_not_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2975320Z copying torch/include/ATen/ops/random_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2976760Z copying torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2978040Z copying torch/include/ATen/ops/_foreach_expm1_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2979270Z copying torch/include/ATen/ops/special_spherical_bessel_j0_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2980600Z copying torch/include/ATen/ops/special_entr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2981720Z copying torch/include/ATen/ops/upsample_bilinear2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2983320Z copying torch/include/ATen/ops/erf_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2984680Z copying torch/include/ATen/ops/_cast_Char.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2986250Z copying torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2987040Z copying torch/include/ATen/ops/trace_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2988770Z copying torch/include/ATen/ops/hinge_embedding_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2990150Z copying torch/include/ATen/ops/bartlett_window_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2991580Z copying torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2992870Z copying torch/include/ATen/ops/indices_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2994260Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2995390Z copying torch/include/ATen/ops/unsafe_chunk.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2996920Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2997610Z copying torch/include/ATen/ops/_dirichlet_grad.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.2999190Z copying torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3000530Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3001870Z copying torch/include/ATen/ops/glu_backward_jvp_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3002720Z copying torch/include/ATen/ops/igammac_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3004430Z copying torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3005450Z copying torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3007260Z copying torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3008210Z copying torch/include/ATen/ops/reflection_pad3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3009800Z copying torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3010650Z copying torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3012100Z copying torch/include/ATen/ops/gt.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3013140Z copying torch/include/ATen/ops/_nnpack_available_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3014690Z copying torch/include/ATen/ops/fft_fft_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3015790Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3017090Z copying torch/include/ATen/ops/relu_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3018550Z copying torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3020110Z copying torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3020940Z copying torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3022370Z copying torch/include/ATen/ops/_shape_as_tensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3023660Z copying torch/include/ATen/ops/logical_and.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3025270Z copying torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3025870Z copying torch/include/ATen/ops/diff.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3027430Z copying torch/include/ATen/ops/round_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3028970Z copying torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3029860Z copying torch/include/ATen/ops/softplus_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3031370Z copying torch/include/ATen/ops/bincount_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3032770Z copying torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3034180Z copying torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3035320Z copying torch/include/ATen/ops/_mkldnn_transpose.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3036730Z copying torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3037700Z copying torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3039210Z copying torch/include/ATen/ops/grid_sampler_2d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3040550Z copying torch/include/ATen/ops/special_digamma_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3041890Z copying torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3043530Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3044980Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3045860Z copying torch/include/ATen/ops/isposinf_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3048020Z copying torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3049720Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3050980Z copying torch/include/ATen/ops/floor_divide_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3052570Z copying torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3053820Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3055390Z copying torch/include/ATen/ops/_cast_Char_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3056760Z copying torch/include/ATen/ops/embedding_renorm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3058100Z copying torch/include/ATen/ops/promote_types_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3059530Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3060460Z copying torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3062020Z copying torch/include/ATen/ops/_to_sparse_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3063080Z copying torch/include/ATen/ops/cov_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3064600Z copying torch/include/ATen/ops/greater_equal_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3065860Z copying torch/include/ATen/ops/gather_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3067300Z copying torch/include/ATen/ops/scaled_dot_product_attention_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3068690Z copying torch/include/ATen/ops/_is_all_true_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3070020Z copying torch/include/ATen/ops/nonzero_numpy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3071460Z copying torch/include/ATen/ops/masked_scatter_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3072320Z copying torch/include/ATen/ops/hardsigmoid_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3074110Z copying torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3074910Z copying torch/include/ATen/ops/msort.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3076670Z copying torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3078120Z copying torch/include/ATen/ops/hstack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3079480Z copying torch/include/ATen/ops/_unique2_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3080870Z copying torch/include/ATen/ops/divide_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3082160Z copying torch/include/ATen/ops/randn_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3084620Z copying torch/include/ATen/ops/var_mean.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3087090Z copying torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3092460Z copying torch/include/ATen/ops/hardsigmoid_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3093420Z copying torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3096030Z copying torch/include/ATen/ops/_linalg_svd_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3101030Z copying torch/include/ATen/ops/_sparse_softmax_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3102450Z copying torch/include/ATen/ops/q_per_channel_axis.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3112350Z copying torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3112760Z copying torch/include/ATen/ops/_fused_adamw_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3115820Z copying torch/include/ATen/ops/complex_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3117630Z copying torch/include/ATen/ops/fix_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3119920Z copying torch/include/ATen/ops/upsample_bicubic2d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3125860Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3127260Z copying torch/include/ATen/ops/cat_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3133140Z copying torch/include/ATen/ops/_empty_affine_quantized.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3135140Z copying torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3142070Z copying torch/include/ATen/ops/to_sparse_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3143930Z copying torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3149160Z copying torch/include/ATen/ops/_foreach_div_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3151250Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3152660Z copying torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3159130Z copying torch/include/ATen/ops/segment_reduce.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3160500Z copying torch/include/ATen/ops/cos_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3167710Z copying torch/include/ATen/ops/linalg_tensorinv_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3169160Z copying torch/include/ATen/ops/fft_ifft2_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3175510Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3176860Z copying torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3178360Z copying torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3183560Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3184490Z copying torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3190860Z copying torch/include/ATen/ops/sym_stride.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3192260Z copying torch/include/ATen/ops/special_hermite_polynomial_h_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3193580Z copying torch/include/ATen/ops/tan_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3200000Z copying torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3201390Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3208350Z copying torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3209420Z copying torch/include/ATen/ops/triu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3211010Z copying torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3215680Z copying torch/include/ATen/ops/hardshrink_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3219360Z copying torch/include/ATen/ops/argmax_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3225000Z copying torch/include/ATen/ops/softshrink_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3226450Z copying torch/include/ATen/ops/randn_like.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3232820Z copying torch/include/ATen/ops/histogram_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3234100Z copying torch/include/ATen/ops/dstack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3240260Z copying torch/include/ATen/ops/_to_sparse_csc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3241610Z copying torch/include/ATen/ops/binary_cross_entropy_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3242910Z copying torch/include/ATen/ops/_int_mm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3248430Z copying torch/include/ATen/ops/_lu_with_info_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3249790Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3255810Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3257160Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3264460Z copying torch/include/ATen/ops/trace.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3266020Z copying torch/include/ATen/ops/matrix_exp_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3267340Z copying torch/include/ATen/ops/indices_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3273660Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3275010Z copying torch/include/ATen/ops/gru_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3281490Z copying torch/include/ATen/ops/elu_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3283100Z copying torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3284500Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3289370Z copying torch/include/ATen/ops/_test_warn_in_autograd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3290680Z copying torch/include/ATen/ops/arcsin_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3292140Z copying torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3298560Z copying torch/include/ATen/ops/adaptive_max_pool2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3299940Z copying torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3306810Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3307640Z copying torch/include/ATen/ops/atleast_3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3314300Z copying torch/include/ATen/ops/kthvalue_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3315580Z copying torch/include/ATen/ops/_spsolve.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3316900Z copying torch/include/ATen/ops/_foreach_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3322240Z copying torch/include/ATen/ops/smooth_l1_loss_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3323610Z copying torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3329710Z copying torch/include/ATen/ops/to_sparse_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3331170Z copying torch/include/ATen/ops/mkldnn_max_pool3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3337010Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3338370Z copying torch/include/ATen/ops/trapz.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3340090Z copying torch/include/ATen/ops/_trilinear_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3342610Z copying torch/include/ATen/ops/native_batch_norm_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3347740Z copying torch/include/ATen/ops/linear_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3350840Z copying torch/include/ATen/ops/_ctc_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3355850Z copying torch/include/ATen/ops/dropout.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3357460Z copying torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3360880Z copying torch/include/ATen/ops/randperm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3364890Z copying torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3366270Z copying torch/include/ATen/ops/less_equal_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3369830Z copying torch/include/ATen/ops/mse_loss_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3372920Z copying torch/include/ATen/ops/nll_loss2d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3378740Z copying torch/include/ATen/ops/qscheme_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3380300Z copying torch/include/ATen/ops/cumprod_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3386650Z copying torch/include/ATen/ops/bmm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3389270Z copying torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3395650Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3396950Z copying torch/include/ATen/ops/blackman_window.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3404530Z copying torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3405850Z copying torch/include/ATen/ops/elu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3412050Z copying torch/include/ATen/ops/triu_indices_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3413490Z copying torch/include/ATen/ops/conv_transpose3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3414920Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3417670Z copying torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3420990Z copying torch/include/ATen/ops/gelu_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3422410Z copying torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3426590Z copying torch/include/ATen/ops/index_select_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3430320Z copying torch/include/ATen/ops/dropout_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3436080Z copying torch/include/ATen/ops/lstm_mps_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3437690Z copying torch/include/ATen/ops/cartesian_prod.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3439270Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3446000Z copying torch/include/ATen/ops/_indices_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3447390Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3453510Z copying torch/include/ATen/ops/ormqr_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3455210Z copying torch/include/ATen/ops/hardshrink_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3461770Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3463260Z copying torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3464050Z copying torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3468920Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3471170Z copying torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3476580Z copying torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3477430Z copying torch/include/ATen/ops/channel_shuffle.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3479940Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3484990Z copying torch/include/ATen/ops/indices_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3486370Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3492550Z copying torch/include/ATen/ops/ge_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3494470Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3501610Z copying torch/include/ATen/ops/minimum_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3502920Z copying torch/include/ATen/ops/_dimI_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3504240Z copying torch/include/ATen/ops/resize_as.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3509410Z copying torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3510970Z copying torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3516670Z copying torch/include/ATen/ops/or.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3518320Z copying torch/include/ATen/ops/is_same_size_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3519620Z copying torch/include/ATen/ops/cumsum.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3526020Z copying torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3527350Z copying torch/include/ATen/ops/set_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3534080Z copying torch/include/ATen/ops/exponential_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3535110Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3541640Z copying torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3543050Z copying torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3544010Z copying torch/include/ATen/ops/copysign_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3548840Z copying torch/include/ATen/ops/asin_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3557120Z copying torch/include/ATen/ops/upsample_nearest3d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3558530Z copying torch/include/ATen/ops/mode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3559980Z copying torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3565760Z copying torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3567120Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3573480Z copying torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3574180Z copying torch/include/ATen/ops/_foreach_sigmoid_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3580690Z copying torch/include/ATen/ops/alias_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3581540Z copying torch/include/ATen/ops/ormqr_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3583070Z copying torch/include/ATen/ops/hsplit_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3588640Z copying torch/include/ATen/ops/heaviside_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3590180Z copying torch/include/ATen/ops/kaiser_window_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3593220Z copying torch/include/ATen/ops/fft_fftfreq_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3597520Z copying torch/include/ATen/ops/greater_equal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3602450Z copying torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3604880Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3606310Z copying torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3612370Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3613140Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3619280Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3620740Z copying torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3626730Z copying torch/include/ATen/ops/special_modified_bessel_k0_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3627990Z copying torch/include/ATen/ops/vsplit.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3629490Z copying torch/include/ATen/ops/_linalg_eigh_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3635770Z copying torch/include/ATen/ops/special_modified_bessel_i1_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3636780Z copying torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3643600Z copying torch/include/ATen/ops/addmm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3645000Z copying torch/include/ATen/ops/atan.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3646550Z copying torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3651420Z copying torch/include/ATen/ops/channel_shuffle_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3657930Z copying torch/include/ATen/ops/glu_jvp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3658640Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3660630Z copying torch/include/ATen/ops/mkldnn_convolution_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3662180Z copying torch/include/ATen/ops/_is_all_true.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3668210Z copying torch/include/ATen/ops/le_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3669620Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3676220Z copying torch/include/ATen/ops/polygamma_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3677400Z copying torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3683950Z copying torch/include/ATen/ops/index_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3685010Z copying torch/include/ATen/ops/max_pool2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3686610Z copying torch/include/ATen/ops/special_hermite_polynomial_he_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3690920Z copying torch/include/ATen/ops/_nested_get_values_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3692690Z copying torch/include/ATen/ops/addmv_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3699160Z copying torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3700630Z copying torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3706950Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3708380Z copying torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3709850Z copying torch/include/ATen/ops/as_strided_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3716240Z copying torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3724050Z copying torch/include/ATen/ops/embedding_bag_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3725360Z copying torch/include/ATen/ops/flatten_dense_tensors.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3732040Z copying torch/include/ATen/ops/fft_hfftn_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3733400Z copying torch/include/ATen/ops/mvlgamma_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3734690Z copying torch/include/ATen/ops/_cudnn_rnn_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3739020Z copying torch/include/ATen/ops/isreal_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3741330Z copying torch/include/ATen/ops/cumprod_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3746830Z copying torch/include/ATen/ops/logical_xor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3748200Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3749540Z copying torch/include/ATen/ops/_unsafe_index_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3755700Z copying torch/include/ATen/ops/cos_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3757070Z copying torch/include/ATen/ops/fft_fftn_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3759890Z copying torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3764840Z copying torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3768830Z copying torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3772110Z copying torch/include/ATen/ops/rnn_tanh_cell_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3773540Z copying torch/include/ATen/ops/_embedding_bag_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3777670Z copying torch/include/ATen/ops/_weight_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3780740Z copying torch/include/ATen/ops/eq.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3785350Z copying torch/include/ATen/ops/_efficient_attention_forward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3786870Z copying torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3790360Z copying torch/include/ATen/ops/cumprod_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3794660Z copying torch/include/ATen/ops/fmod_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3798020Z copying torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3798830Z copying torch/include/ATen/ops/_fft_c2c.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3804640Z copying torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3806140Z copying torch/include/ATen/ops/_to_sparse_bsc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3812670Z copying torch/include/ATen/ops/pad_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3813890Z copying torch/include/ATen/ops/special_modified_bessel_i0.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3820070Z copying torch/include/ATen/ops/reflection_pad1d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3821400Z copying torch/include/ATen/ops/arcsinh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3822670Z copying torch/include/ATen/ops/addr_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3829950Z copying torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3831440Z copying torch/include/ATen/ops/cudnn_convolution_relu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3837070Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3838810Z copying torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3845140Z copying torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3846540Z copying torch/include/ATen/ops/lu_unpack_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3847640Z copying torch/include/ATen/ops/_coalesced_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3852800Z copying torch/include/ATen/ops/special_erfcx_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3854230Z copying torch/include/ATen/ops/var_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3860970Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3862000Z copying torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3863490Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3868490Z copying torch/include/ATen/ops/_triton_multi_head_attention_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3870020Z copying torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3876600Z copying torch/include/ATen/ops/var_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3877950Z copying torch/include/ATen/ops/tanh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3884560Z copying torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3885960Z copying torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3892770Z copying torch/include/ATen/ops/lgamma_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3894140Z copying torch/include/ATen/ops/_scaled_mm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3901150Z copying torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3902440Z copying torch/include/ATen/ops/to_mkldnn_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3908370Z copying torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3909770Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3910630Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3916280Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3917160Z copying torch/include/ATen/ops/replication_pad3d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3924330Z copying torch/include/ATen/ops/bmm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3925200Z copying torch/include/ATen/ops/_to_dense.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3926830Z copying torch/include/ATen/ops/batch_norm_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3931450Z copying torch/include/ATen/ops/log.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3932950Z copying torch/include/ATen/ops/igamma_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3940000Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3940900Z copying torch/include/ATen/ops/new_full.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3947580Z copying torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3948820Z copying torch/include/ATen/ops/embedding_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3950280Z copying torch/include/ATen/ops/linalg_slogdet.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3955320Z copying torch/include/ATen/ops/fft_rfft2_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3957070Z copying torch/include/ATen/ops/_foreach_atan_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3963360Z copying torch/include/ATen/ops/clip.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3964690Z copying torch/include/ATen/ops/reshape.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3966070Z copying torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3973280Z copying torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3974780Z copying torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3981660Z copying torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3982460Z copying torch/include/ATen/ops/_cslt_sparse_mm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3989320Z copying torch/include/ATen/ops/isneginf_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3990750Z copying torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3992390Z copying torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3997080Z copying torch/include/ATen/ops/view_as_complex_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.3998520Z copying torch/include/ATen/ops/mvlgamma.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4005450Z copying torch/include/ATen/ops/permute_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4006860Z copying torch/include/ATen/ops/sign_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4007820Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4014040Z copying torch/include/ATen/ops/reflection_pad2d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4015340Z copying torch/include/ATen/ops/_foreach_minimum.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4020840Z copying torch/include/ATen/ops/int_repr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4022480Z copying torch/include/ATen/ops/heaviside_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4023800Z copying torch/include/ATen/ops/column_stack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4029450Z copying torch/include/ATen/ops/scatter_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4030760Z copying torch/include/ATen/ops/minimum.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4037580Z copying torch/include/ATen/ops/to_sparse_bsc_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4039370Z copying torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4040770Z copying torch/include/ATen/ops/from_file_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4045290Z copying torch/include/ATen/ops/miopen_convolution_transpose.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4047530Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4053240Z copying torch/include/ATen/ops/sinc_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4054650Z copying torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4056510Z copying torch/include/ATen/ops/real_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4062660Z copying torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4064070Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4070220Z copying torch/include/ATen/ops/align_tensors_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4072100Z copying torch/include/ATen/ops/acos_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4077660Z copying torch/include/ATen/ops/minimum_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4079010Z copying torch/include/ATen/ops/special_bessel_y0.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4080410Z copying torch/include/ATen/ops/sspaddmm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4085630Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4087310Z copying torch/include/ATen/ops/logdet_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4091770Z copying torch/include/ATen/ops/cauchy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4094830Z copying torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4096200Z copying torch/include/ATen/ops/is_vulkan_available_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4101390Z copying torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4103160Z copying torch/include/ATen/ops/gt_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4109090Z copying torch/include/ATen/ops/ccol_indices.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4110750Z copying torch/include/ATen/ops/normal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4117330Z copying torch/include/ATen/ops/cudnn_convolution_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4119010Z copying torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4120380Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4125330Z copying torch/include/ATen/ops/_to_sparse_bsc_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4126640Z copying torch/include/ATen/ops/linalg_eigh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4132690Z copying torch/include/ATen/ops/upsample_bilinear2d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4134560Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4140960Z copying torch/include/ATen/ops/rnn_relu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4141980Z copying torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4143460Z copying torch/include/ATen/ops/replication_pad1d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4148740Z copying torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4149940Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4157730Z copying torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4159100Z copying torch/include/ATen/ops/sym_constrain_range_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4165600Z copying torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4166480Z copying torch/include/ATen/ops/leaky_relu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4168140Z copying torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4172920Z copying torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4174230Z copying torch/include/ATen/ops/linalg_ldl_factor_ex.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4180520Z copying torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4181880Z copying torch/include/ATen/ops/heaviside_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4183300Z copying torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4189550Z copying torch/include/ATen/ops/histc_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4190950Z copying torch/include/ATen/ops/_pad_packed_sequence_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4203090Z copying torch/include/ATen/ops/q_per_channel_zero_points_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4203720Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4206840Z copying torch/include/ATen/ops/square.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4207780Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4209310Z copying torch/include/ATen/ops/diagflat_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4214800Z copying torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4216390Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4217900Z copying torch/include/ATen/ops/prod_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4222480Z copying torch/include/ATen/ops/cdist.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4224160Z copying torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4231500Z copying torch/include/ATen/ops/special_expm1_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4232950Z copying torch/include/ATen/ops/atleast_1d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4239400Z copying torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4240780Z copying torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4246660Z copying torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4247810Z copying torch/include/ATen/ops/conv_transpose1d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4254250Z copying torch/include/ATen/ops/_assert_async_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4254980Z copying torch/include/ATen/ops/fft_rfftfreq.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4256640Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4262170Z copying torch/include/ATen/ops/cummax.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4263570Z copying torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4270300Z copying torch/include/ATen/ops/normal_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4271210Z copying torch/include/ATen/ops/leaky_relu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4278290Z copying torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4279150Z copying torch/include/ATen/ops/cumsum_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4280780Z copying torch/include/ATen/ops/reflection_pad2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4286590Z copying torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4287940Z copying torch/include/ATen/ops/histogram_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4294730Z copying torch/include/ATen/ops/_foreach_acos.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4296080Z copying torch/include/ATen/ops/softshrink_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4297020Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4302130Z copying torch/include/ATen/ops/amin_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4304090Z copying torch/include/ATen/ops/_foreach_log_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4310140Z copying torch/include/ATen/ops/linalg_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4312540Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4318260Z copying torch/include/ATen/ops/linalg_matrix_power.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4319570Z copying torch/include/ATen/ops/avg_pool1d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4320440Z copying torch/include/ATen/ops/unfold_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4325970Z copying torch/include/ATen/ops/_batch_norm_no_update_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4327380Z copying torch/include/ATen/ops/sigmoid_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4329360Z copying torch/include/ATen/ops/clamp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4335400Z copying torch/include/ATen/ops/norm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4336690Z copying torch/include/ATen/ops/trunc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4343240Z copying torch/include/ATen/ops/linalg_qr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4344930Z copying torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4350710Z copying torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4352050Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4353410Z copying torch/include/ATen/ops/avg_pool2d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4357950Z copying torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4360300Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4365180Z copying torch/include/ATen/ops/lt_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4366830Z copying torch/include/ATen/ops/scatter_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4373340Z copying torch/include/ATen/ops/crow_indices.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4374690Z copying torch/include/ATen/ops/to_dense_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4376030Z copying torch/include/ATen/ops/minimum_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4382900Z copying torch/include/ATen/ops/pixel_shuffle_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4390930Z copying torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4392250Z copying torch/include/ATen/ops/view_as_complex_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4399670Z copying torch/include/ATen/ops/_foreach_clamp_min_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4401160Z copying torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4402530Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4407250Z copying torch/include/ATen/ops/special_expit.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4408880Z copying torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4414640Z copying torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4415490Z copying torch/include/ATen/ops/lstm_cell_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4417300Z copying torch/include/ATen/ops/binary_cross_entropy_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4422900Z copying torch/include/ATen/ops/elu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4424560Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4431680Z copying torch/include/ATen/ops/rename.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4433180Z copying torch/include/ATen/ops/addbmm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4434620Z copying torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4436110Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4440970Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4445260Z copying torch/include/ATen/ops/xor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4449060Z copying torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4450370Z copying torch/include/ATen/ops/max_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4454710Z copying torch/include/ATen/ops/log2_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4456920Z copying torch/include/ATen/ops/sub_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4462490Z copying torch/include/ATen/ops/view_as_real_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4463820Z copying torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4466020Z copying torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4471370Z copying torch/include/ATen/ops/norm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4474640Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4479450Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4480740Z copying torch/include/ATen/ops/empty_like_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4483740Z copying torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4488740Z copying torch/include/ATen/ops/native_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4491780Z copying torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4493110Z copying torch/include/ATen/ops/_is_zerotensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4498830Z copying torch/include/ATen/ops/_log_softmax_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4500110Z copying torch/include/ATen/ops/col_indices_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4506400Z copying torch/include/ATen/ops/diagonal_scatter_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4507690Z copying torch/include/ATen/ops/index_select_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4513730Z copying torch/include/ATen/ops/gt_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4515250Z copying torch/include/ATen/ops/vander.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4516760Z copying torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4522350Z copying torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4523080Z copying torch/include/ATen/ops/_unsafe_masked_index_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4529100Z copying torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4530890Z copying torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4536460Z copying torch/include/ATen/ops/signbit_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4537810Z copying torch/include/ATen/ops/_foreach_add_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4539170Z copying torch/include/ATen/ops/add_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4545710Z copying torch/include/ATen/ops/_addmm_activation_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4547070Z copying torch/include/ATen/ops/maximum_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4554920Z copying torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4560160Z copying torch/include/ATen/ops/elu_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4561510Z copying torch/include/ATen/ops/quantized_max_pool2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4563240Z copying torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4568080Z copying torch/include/ATen/ops/tril_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4569470Z copying torch/include/ATen/ops/special_bessel_j0_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4575660Z copying torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4577330Z copying torch/include/ATen/ops/_test_optional_floatlist_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4584150Z copying torch/include/ATen/ops/_lazy_clone_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4585330Z copying torch/include/ATen/ops/silu_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4586800Z copying torch/include/ATen/ops/_slow_conv2d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4591120Z copying torch/include/ATen/ops/avg_pool2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4592860Z copying torch/include/ATen/ops/result_type_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4598900Z copying torch/include/ATen/ops/lcm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4600300Z copying torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4606050Z copying torch/include/ATen/ops/q_per_channel_zero_points_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4608500Z copying torch/include/ATen/ops/special_softmax_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4613910Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4615260Z copying torch/include/ATen/ops/_make_dep_token_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4616970Z copying torch/include/ATen/ops/poisson_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4621960Z copying torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4623420Z copying torch/include/ATen/ops/_pad_packed_sequence_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4626800Z copying torch/include/ATen/ops/fft_irfft.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4631870Z copying torch/include/ATen/ops/softshrink_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4635180Z copying torch/include/ATen/ops/sum_to_size_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4636510Z copying torch/include/ATen/ops/transpose_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4641660Z copying torch/include/ATen/ops/trace_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4643730Z copying torch/include/ATen/ops/fft_rfft.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4649720Z copying torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4651300Z copying torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4652660Z copying torch/include/ATen/ops/one_hot.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4659560Z copying torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4660900Z copying torch/include/ATen/ops/_to_sparse_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4667150Z copying torch/include/ATen/ops/atleast_2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4668650Z copying torch/include/ATen/ops/argmin_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4669540Z copying torch/include/ATen/ops/_nested_from_padded_tensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4675110Z copying torch/include/ATen/ops/randint.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4676760Z copying torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4682830Z copying torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4684210Z copying torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4689870Z copying torch/include/ATen/ops/smooth_l1_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4691430Z copying torch/include/ATen/ops/broadcast_tensors_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4692750Z copying torch/include/ATen/ops/mkldnn_max_pool2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4700120Z copying torch/include/ATen/ops/sym_constrain_range.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4701670Z copying torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4708030Z copying torch/include/ATen/ops/fft_fftshift_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4709320Z copying torch/include/ATen/ops/glu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4715960Z copying torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4717280Z copying torch/include/ATen/ops/diag.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4718300Z copying torch/include/ATen/ops/mse_loss_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4722790Z copying torch/include/ATen/ops/gather_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4724850Z copying torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4730360Z copying torch/include/ATen/ops/median.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4731790Z copying torch/include/ATen/ops/rnn_relu_cell_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4733650Z copying torch/include/ATen/ops/cummin_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4742500Z copying torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4746490Z copying torch/include/ATen/ops/cummax_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4747880Z copying torch/include/ATen/ops/native_layer_norm_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4753730Z copying torch/include/ATen/ops/view_as_complex_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4755040Z copying torch/include/ATen/ops/igammac_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4755970Z copying torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4761480Z copying torch/include/ATen/ops/linalg_qr_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4763160Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4769420Z copying torch/include/ATen/ops/celu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4771300Z copying torch/include/ATen/ops/_functional_assert_scalar_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4777670Z copying torch/include/ATen/ops/addr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4778800Z copying torch/include/ATen/ops/where.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4780110Z copying torch/include/ATen/ops/empty_strided_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4785760Z copying torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4786720Z copying torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4793680Z copying torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4795130Z copying torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4801460Z copying torch/include/ATen/ops/embedding.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4803060Z copying torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4804590Z copying torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4809070Z copying torch/include/ATen/ops/sym_size_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4810720Z copying torch/include/ATen/ops/fill_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4817540Z copying torch/include/ATen/ops/relu6.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4819070Z copying torch/include/ATen/ops/_coalesce.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4820440Z copying torch/include/ATen/ops/bitwise_right_shift_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4825420Z copying torch/include/ATen/ops/nextafter_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4826880Z copying torch/include/ATen/ops/reflection_pad3d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4833270Z copying torch/include/ATen/ops/nonzero_static_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4834740Z copying torch/include/ATen/ops/_sobol_engine_initialize_state.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4836050Z copying torch/include/ATen/ops/range_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4843770Z copying torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4845250Z copying torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4851650Z copying torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4852440Z copying torch/include/ATen/ops/bmm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4859930Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4861300Z copying torch/include/ATen/ops/_add_relu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4862160Z copying torch/include/ATen/ops/triu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4867430Z copying torch/include/ATen/ops/negative.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4868580Z copying torch/include/ATen/ops/linalg_lstsq_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4875790Z copying torch/include/ATen/ops/empty_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4877090Z copying torch/include/ATen/ops/argmax_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4878340Z copying torch/include/ATen/ops/_to_cpu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4884830Z copying torch/include/ATen/ops/native_group_norm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4892280Z copying torch/include/ATen/ops/upsample_bicubic2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4893580Z copying torch/include/ATen/ops/arcsinh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4894890Z copying torch/include/ATen/ops/q_per_channel_scales.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4899710Z copying torch/include/ATen/ops/tanh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4901360Z copying torch/include/ATen/ops/_test_optional_intlist_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4902870Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4910130Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4911590Z copying torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4917940Z copying torch/include/ATen/ops/pdist_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4919270Z copying torch/include/ATen/ops/_test_string_default.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4926010Z copying torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4927330Z copying torch/include/ATen/ops/narrow_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4928690Z copying torch/include/ATen/ops/_sparse_semi_structured_tile.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4933660Z copying torch/include/ATen/ops/argmax.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4935090Z copying torch/include/ATen/ops/_fused_sdp_choice_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4941840Z copying torch/include/ATen/ops/is_signed_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4943290Z copying torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4944590Z copying torch/include/ATen/ops/_test_optional_intlist.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4949720Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4951440Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4958250Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4959570Z copying torch/include/ATen/ops/_weight_norm_interface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4960350Z copying torch/include/ATen/ops/atanh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4965790Z copying torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4967140Z copying torch/include/ATen/ops/var_mean_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4974470Z copying torch/include/ATen/ops/polar_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4975840Z copying torch/include/ATen/ops/square_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4982300Z copying torch/include/ATen/ops/argsort.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4983850Z copying torch/include/ATen/ops/slice_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4985160Z copying torch/include/ATen/ops/erf_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4990300Z copying torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4991730Z copying torch/include/ATen/ops/linalg_cholesky_ex_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4998480Z copying torch/include/ATen/ops/_sparse_log_softmax_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.4999930Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5001220Z copying torch/include/ATen/ops/norm_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5006290Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5007130Z copying torch/include/ATen/ops/mean.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5015780Z copying torch/include/ATen/ops/_assert_tensor_metadata_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5017260Z copying torch/include/ATen/ops/_sparse_addmm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5018770Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5023630Z copying torch/include/ATen/ops/empty_strided_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5025200Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5032210Z copying torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5033480Z copying torch/include/ATen/ops/chalf.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5034980Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5040440Z copying torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5041860Z copying torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5048650Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5050250Z copying torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5051570Z copying torch/include/ATen/ops/_amp_update_scale_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5056400Z copying torch/include/ATen/ops/hardswish_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5058190Z copying torch/include/ATen/ops/pow_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5063810Z copying torch/include/ATen/ops/frexp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5065420Z copying torch/include/ATen/ops/cholesky_solve.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5066720Z copying torch/include/ATen/ops/_dim_arange_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5071610Z copying torch/include/ATen/ops/median_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5073040Z copying torch/include/ATen/ops/sigmoid.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5079060Z copying torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5081520Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5086910Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5088400Z copying torch/include/ATen/ops/bernoulli_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5089790Z copying torch/include/ATen/ops/_nested_get_values_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5092740Z copying torch/include/ATen/ops/masked_select_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5096140Z copying torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5102080Z copying torch/include/ATen/ops/_foreach_sigmoid.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5103870Z copying torch/include/ATen/ops/logical_and_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5109800Z copying torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5112910Z copying torch/include/ATen/ops/cudnn_is_acceptable_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5118560Z copying torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5119890Z copying torch/include/ATen/ops/conv1d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5126510Z copying torch/include/ATen/ops/lcm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5127900Z copying torch/include/ATen/ops/rrelu_with_noise_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5134340Z copying torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5135790Z copying torch/include/ATen/ops/special_modified_bessel_i0_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5137100Z copying torch/include/ATen/ops/empty_strided_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5141770Z copying torch/include/ATen/ops/_make_dep_token.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5144110Z copying torch/include/ATen/ops/complex_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5149880Z copying torch/include/ATen/ops/max_pool1d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5151340Z copying torch/include/ATen/ops/count_nonzero_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5152250Z copying torch/include/ATen/ops/logaddexp_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5159460Z copying torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5160880Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5166920Z copying torch/include/ATen/ops/adaptive_avg_pool2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5168640Z copying torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5175510Z copying torch/include/ATen/ops/special_modified_bessel_i1_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5176820Z copying torch/include/ATen/ops/nansum_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5178210Z copying torch/include/ATen/ops/cholesky_inverse_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5183640Z copying torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5185060Z copying torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5191770Z copying torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5192930Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5194570Z copying torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5199810Z copying torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5201190Z copying torch/include/ATen/ops/scatter_reduce_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5208410Z copying torch/include/ATen/ops/floor_divide_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5209860Z copying torch/include/ATen/ops/_efficientzerotensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5210770Z copying torch/include/ATen/ops/_softmax_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5215970Z copying torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5218420Z copying torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5223760Z copying torch/include/ATen/ops/polygamma_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5225040Z copying torch/include/ATen/ops/lgamma_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5226710Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5231450Z copying torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5232940Z copying torch/include/ATen/ops/cholesky_inverse.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5239480Z copying torch/include/ATen/ops/max_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5241210Z copying torch/include/ATen/ops/rsqrt_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5247710Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5249010Z copying torch/include/ATen/ops/row_stack_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5250480Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5255690Z copying torch/include/ATen/ops/segment_reduce_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5257430Z copying torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5263220Z copying torch/include/ATen/ops/empty_strided.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5264900Z copying torch/include/ATen/ops/_embedding_bag_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5266420Z copying torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5272900Z copying torch/include/ATen/ops/abs_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5274190Z copying torch/include/ATen/ops/moveaxis_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5284930Z copying torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5285670Z copying torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5287820Z copying torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5289450Z copying torch/include/ATen/ops/conj_physical.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5290830Z copying torch/include/ATen/ops/_foreach_asin_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5296720Z copying torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5297620Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5304170Z copying torch/include/ATen/ops/deg2rad_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5305490Z copying torch/include/ATen/ops/median_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5307080Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5311740Z copying torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5312960Z copying torch/include/ATen/ops/polygamma_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5319910Z copying torch/include/ATen/ops/_linalg_solve_ex_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5321310Z copying torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5327690Z copying torch/include/ATen/ops/batch_norm_stats.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5328550Z copying torch/include/ATen/ops/baddbmm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5330190Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5334880Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5337070Z copying torch/include/ATen/ops/_linalg_solve_ex_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5343070Z copying torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5344750Z copying torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5345890Z copying torch/include/ATen/ops/unfold_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5352450Z copying torch/include/ATen/ops/view_as_complex_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5353850Z copying torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5360180Z copying torch/include/ATen/ops/huber_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5362190Z copying torch/include/ATen/ops/_ctc_loss_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5367890Z copying torch/include/ATen/ops/pin_memory.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5369530Z copying torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5370870Z copying torch/include/ATen/ops/logaddexp2_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5375120Z copying torch/include/ATen/ops/stft.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5376480Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5379730Z copying torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5384710Z copying torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5387810Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5393080Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5394690Z copying torch/include/ATen/ops/linalg_slogdet_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5396720Z copying torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5402760Z copying torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5406650Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5408090Z copying torch/include/ATen/ops/special_ndtri_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5410790Z copying torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5412480Z copying torch/include/ATen/ops/logit_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5415240Z copying torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5416610Z copying torch/include/ATen/ops/nanmean_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5424460Z copying torch/include/ATen/ops/to_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5428180Z copying torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5429700Z copying torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5434350Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5436820Z copying torch/include/ATen/ops/polygamma_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5441790Z copying torch/include/ATen/ops/normal_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5443190Z copying torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5448970Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5451350Z copying torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5455820Z copying torch/include/ATen/ops/add_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5457840Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5459510Z copying torch/include/ATen/ops/special_gammainc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5465130Z copying torch/include/ATen/ops/batch_norm_gather_stats.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5466740Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5473650Z copying torch/include/ATen/ops/sspaddmm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5474950Z copying torch/include/ATen/ops/stack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5481300Z copying torch/include/ATen/ops/isin.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5482950Z copying torch/include/ATen/ops/multi_margin_loss_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5484320Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5489410Z copying torch/include/ATen/ops/svd_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5491200Z copying torch/include/ATen/ops/sparse_bsc_tensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5497420Z copying torch/include/ATen/ops/hspmm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5498720Z copying torch/include/ATen/ops/conj_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5500380Z copying torch/include/ATen/ops/linalg_lu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5506360Z copying torch/include/ATen/ops/addmm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5507830Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5514020Z copying torch/include/ATen/ops/clone_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5515480Z copying torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5522460Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5523930Z copying torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5525370Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5529950Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5531390Z copying torch/include/ATen/ops/linalg_eigvals.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5537670Z copying torch/include/ATen/ops/linalg_vander_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5539180Z copying torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5540400Z copying torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5544780Z copying torch/include/ATen/ops/conv_tbc_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5546200Z copying torch/include/ATen/ops/isposinf_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5552080Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5553960Z copying torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5559910Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5561540Z copying torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5562870Z copying torch/include/ATen/ops/triu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5568790Z copying torch/include/ATen/ops/scatter_add.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5570290Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5576660Z copying torch/include/ATen/ops/miopen_batch_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5578420Z copying torch/include/ATen/ops/fill_diagonal_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5584470Z copying torch/include/ATen/ops/special_digamma_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5586090Z copying torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5587460Z copying torch/include/ATen/ops/_test_serialization_subcmul.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5592550Z copying torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5593960Z copying torch/include/ATen/ops/_nested_get_values.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5601300Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5602660Z copying torch/include/ATen/ops/neg_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5609410Z copying torch/include/ATen/ops/linalg_tensorinv_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5611040Z copying torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5612320Z copying torch/include/ATen/ops/sparse_dim.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5617190Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5618250Z copying torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5619650Z copying torch/include/ATen/ops/linalg_matrix_exp_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5624800Z copying torch/include/ATen/ops/_copy_from_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5626710Z copying torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5632780Z copying torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5634430Z copying torch/include/ATen/ops/linalg_vector_norm_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5635920Z copying torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5642230Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5643890Z copying torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5650150Z copying torch/include/ATen/ops/dequantize_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5651480Z copying torch/include/ATen/ops/erfinv_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5657780Z copying torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5659120Z copying torch/include/ATen/ops/sign_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5660570Z copying torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5665440Z copying torch/include/ATen/ops/_dimV_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5667360Z copying torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5673940Z copying torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5674880Z copying torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5676650Z copying torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5681410Z copying torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5683160Z copying torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5689160Z copying torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5690660Z copying torch/include/ATen/ops/_prelu_kernel_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5697280Z copying torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5698210Z copying torch/include/ATen/ops/relu6_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5699810Z copying torch/include/ATen/ops/special_modified_bessel_k1_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5704940Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5706810Z copying torch/include/ATen/ops/expm1_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5712580Z copying torch/include/ATen/ops/kron.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5714600Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5722780Z copying torch/include/ATen/ops/cat_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5724240Z copying torch/include/ATen/ops/_linalg_check_errors_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5730610Z copying torch/include/ATen/ops/triplet_margin_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5731960Z copying torch/include/ATen/ops/tril.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5737480Z copying torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5739120Z copying torch/include/ATen/ops/fft_rfft_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5745310Z copying torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5747220Z copying torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5752800Z copying torch/include/ATen/ops/_remove_batch_dim_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5754220Z copying torch/include/ATen/ops/linalg_cholesky_ex_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5755800Z copying torch/include/ATen/ops/quantized_rnn_relu_cell.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5762740Z copying torch/include/ATen/ops/silu_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5764170Z copying torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5770570Z copying torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5772150Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5778330Z copying torch/include/ATen/ops/_to_sparse_semi_structured_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5779190Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5780640Z copying torch/include/ATen/ops/sym_stride_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5785680Z copying torch/include/ATen/ops/_make_dual_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5787380Z copying torch/include/ATen/ops/hardswish_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5794280Z copying torch/include/ATen/ops/elu_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5795830Z copying torch/include/ATen/ops/miopen_batch_norm_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5797330Z copying torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5804460Z copying torch/include/ATen/ops/abs_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5805630Z copying torch/include/ATen/ops/conv_transpose1d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5807110Z copying torch/include/ATen/ops/isneginf_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5809800Z copying torch/include/ATen/ops/adaptive_max_pool3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5812300Z copying torch/include/ATen/ops/poisson_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5818060Z copying torch/include/ATen/ops/embedding_renorm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5819150Z copying torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5821070Z copying torch/include/ATen/ops/max_pool2d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5823280Z copying torch/include/ATen/ops/minimum_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5828290Z copying torch/include/ATen/ops/log_sigmoid_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5831370Z copying torch/include/ATen/ops/_sobol_engine_ff.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5837420Z copying torch/include/ATen/ops/native_batch_norm_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5839890Z copying torch/include/ATen/ops/block_diag_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5845040Z copying torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5846680Z copying torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5852870Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5854660Z copying torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5861460Z copying torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5862870Z copying torch/include/ATen/ops/acosh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5868170Z copying torch/include/ATen/ops/roll_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5876350Z copying torch/include/ATen/ops/_copy_from_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5877630Z copying torch/include/ATen/ops/_foreach_log2.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5880010Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5885530Z copying torch/include/ATen/ops/linear_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5892840Z copying torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5902110Z copying torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5902930Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5904550Z copying torch/include/ATen/ops/native_batch_norm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5911060Z copying torch/include/ATen/ops/digamma_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5918220Z copying torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5920040Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5920690Z copying torch/include/ATen/ops/native_dropout_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5922970Z copying torch/include/ATen/ops/conj_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5927570Z copying torch/include/ATen/ops/native_dropout.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5931270Z copying torch/include/ATen/ops/_unsafe_index.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5934880Z copying torch/include/ATen/ops/cosh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5936250Z copying torch/include/ATen/ops/_nested_get_jagged_dummy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5940520Z copying torch/include/ATen/ops/record_stream_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5943550Z copying torch/include/ATen/ops/cudnn_convolution_transpose.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5947940Z copying torch/include/ATen/ops/_unique2.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5949700Z copying torch/include/ATen/ops/special_i1e_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5952570Z copying torch/include/ATen/ops/_foreach_log2_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5957990Z copying torch/include/ATen/ops/native_dropout_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5961110Z copying torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5965880Z copying torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5967200Z copying torch/include/ATen/ops/_to_dense_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5970160Z copying torch/include/ATen/ops/empty_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5974830Z copying torch/include/ATen/ops/_test_parallel_materialize_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5978410Z copying torch/include/ATen/ops/bernoulli.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5979850Z copying torch/include/ATen/ops/_pad_circular_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5984510Z copying torch/include/ATen/ops/diagonal_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5987640Z copying torch/include/ATen/ops/index_select_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5992510Z copying torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5993760Z copying torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.5996890Z copying torch/include/ATen/ops/size_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6001200Z copying torch/include/ATen/ops/_log_softmax_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6004780Z copying torch/include/ATen/ops/replication_pad3d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6008270Z copying torch/include/ATen/ops/special_psi.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6009830Z copying torch/include/ATen/ops/_log_softmax_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6014440Z copying torch/include/ATen/ops/addcmul.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6016500Z copying torch/include/ATen/ops/sigmoid_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6021780Z copying torch/include/ATen/ops/select_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6023180Z copying torch/include/ATen/ops/special_multigammaln_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6028880Z copying torch/include/ATen/ops/exp2_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6030700Z copying torch/include/ATen/ops/_foreach_addcmul.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6036400Z copying torch/include/ATen/ops/addmv_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6037910Z copying torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6038660Z copying torch/include/ATen/ops/type_as_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6045720Z copying torch/include/ATen/ops/linalg_tensorsolve_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6047130Z copying torch/include/ATen/ops/range_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6055330Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6061030Z copying torch/include/ATen/ops/glu_backward_jvp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6062120Z copying torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6063720Z copying torch/include/ATen/ops/upsample_nearest1d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6068900Z copying torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6070270Z copying torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6077260Z copying torch/include/ATen/ops/bincount.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6078810Z copying torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6084730Z copying torch/include/ATen/ops/hann_window_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6086210Z copying torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6087680Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6091360Z copying torch/include/ATen/ops/elu_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6093790Z copying torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6098160Z copying torch/include/ATen/ops/cummaxmin_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6100210Z copying torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6102480Z copying torch/include/ATen/ops/affine_grid_generator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6108030Z copying torch/include/ATen/ops/logical_and_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6111690Z copying torch/include/ATen/ops/split_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6114060Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6119240Z copying torch/include/ATen/ops/native_channel_shuffle_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6122550Z copying torch/include/ATen/ops/greater_equal_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6125970Z copying torch/include/ATen/ops/imag.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6132480Z copying torch/include/ATen/ops/argmin_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6134080Z copying torch/include/ATen/ops/special_i0e_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6140190Z copying torch/include/ATen/ops/max_unpool3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6141650Z copying torch/include/ATen/ops/erf.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6143350Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6148860Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6150500Z copying torch/include/ATen/ops/matrix_H.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6154040Z copying torch/include/ATen/ops/transpose_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6158140Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6159600Z copying torch/include/ATen/ops/fill_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6164030Z copying torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6167630Z copying torch/include/ATen/ops/copysign_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6170940Z copying torch/include/ATen/ops/amin_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6172420Z copying torch/include/ATen/ops/rms_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6176850Z copying torch/include/ATen/ops/asin_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6179640Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6184840Z copying torch/include/ATen/ops/fliplr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6186340Z copying torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6192870Z copying torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6194800Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6201020Z copying torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6202340Z copying torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6203730Z copying torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6207470Z copying torch/include/ATen/ops/sparse_sampled_addmm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6208660Z copying torch/include/ATen/ops/log10.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6216100Z copying torch/include/ATen/ops/aminmax_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6223880Z copying torch/include/ATen/ops/quantized_max_pool2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6224970Z copying torch/include/ATen/ops/masked_scatter_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6226180Z copying torch/include/ATen/ops/i0_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6236190Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6237310Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6238360Z copying torch/include/ATen/ops/log_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6241140Z copying torch/include/ATen/ops/scatter_add_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6246530Z copying torch/include/ATen/ops/_reshape_alias_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6247710Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6248820Z copying torch/include/ATen/ops/lcm_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6255650Z copying torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6256820Z copying torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6260920Z copying torch/include/ATen/ops/softplus_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6265090Z copying torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6268670Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6269800Z copying torch/include/ATen/ops/hardshrink_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6274300Z copying torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6276630Z copying torch/include/ATen/ops/conj_physical_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6282280Z copying torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6283420Z copying torch/include/ATen/ops/erfinv.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6289720Z copying torch/include/ATen/ops/avg_pool1d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6291750Z copying torch/include/ATen/ops/_gather_sparse_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6297780Z copying torch/include/ATen/ops/addbmm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6298890Z copying torch/include/ATen/ops/upsample_trilinear3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6300280Z copying torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6305430Z copying torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6306510Z copying torch/include/ATen/ops/matmul_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6312420Z copying torch/include/ATen/ops/coalesce.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6314370Z copying torch/include/ATen/ops/_foreach_log10_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6320060Z copying torch/include/ATen/ops/_lu_with_info_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6322320Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6323340Z copying torch/include/ATen/ops/expm1_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6324560Z copying torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6334830Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6338360Z copying torch/include/ATen/ops/_weight_norm_interface_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6342780Z copying torch/include/ATen/ops/scatter_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6343860Z copying torch/include/ATen/ops/ne_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6347550Z copying torch/include/ATen/ops/addcmul_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6351120Z copying torch/include/ATen/ops/special_logsumexp_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6355880Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6356930Z copying torch/include/ATen/ops/to_sparse_csr_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6360370Z copying torch/include/ATen/ops/_foreach_round.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6364860Z copying torch/include/ATen/ops/floor_divide_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6368130Z copying torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6369310Z copying torch/include/ATen/ops/margin_ranking_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6374690Z copying torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6377180Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6386160Z copying torch/include/ATen/ops/triangular_solve_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6388900Z copying torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6394080Z copying torch/include/ATen/ops/dstack_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6395480Z copying torch/include/ATen/ops/log_sigmoid_forward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6396670Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6401500Z copying torch/include/ATen/ops/special_xlog1py_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6402920Z copying torch/include/ATen/ops/maximum_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6406380Z copying torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6411210Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6414820Z copying torch/include/ATen/ops/contiguous.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6417860Z copying torch/include/ATen/ops/view_as.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6419140Z copying torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6423560Z copying torch/include/ATen/ops/group_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6424510Z copying torch/include/ATen/ops/_fused_dropout_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6431240Z copying torch/include/ATen/ops/sgn_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6432270Z copying torch/include/ATen/ops/max_pool2d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6438930Z copying torch/include/ATen/ops/multiply_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6440280Z copying torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6447220Z copying torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6448350Z copying torch/include/ATen/ops/cudnn_affine_grid_generator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6454210Z copying torch/include/ATen/ops/is_signed_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6455430Z copying torch/include/ATen/ops/special_ndtri.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6456800Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6462180Z copying torch/include/ATen/ops/lt_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6463990Z copying torch/include/ATen/ops/requires_grad_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6470090Z copying torch/include/ATen/ops/hypot_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6471260Z copying torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6472440Z copying torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6477920Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6479030Z copying torch/include/ATen/ops/round_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6485230Z copying torch/include/ATen/ops/reflection_pad1d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6486910Z copying torch/include/ATen/ops/norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6492670Z copying torch/include/ATen/ops/_prelu_kernel_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6493950Z copying torch/include/ATen/ops/nonzero_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6495880Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6502150Z copying torch/include/ATen/ops/batch_norm_backward_reduce_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6503200Z copying torch/include/ATen/ops/fmin_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6509270Z copying torch/include/ATen/ops/index_copy_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6510350Z copying torch/include/ATen/ops/rand.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6517410Z copying torch/include/ATen/ops/searchsorted_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6518550Z copying torch/include/ATen/ops/prod_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6519780Z copying torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6524420Z copying torch/include/ATen/ops/q_per_channel_scales_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6525650Z copying torch/include/ATen/ops/special_softmax_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6531970Z copying torch/include/ATen/ops/erfc_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6533360Z copying torch/include/ATen/ops/i0_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6538240Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6542060Z copying torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6547450Z copying torch/include/ATen/ops/quantize_per_tensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6554770Z copying torch/include/ATen/ops/_nested_get_values_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6556020Z copying torch/include/ATen/ops/special_hermite_polynomial_he_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6563040Z copying torch/include/ATen/ops/upsample_linear1d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6564230Z copying torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6571100Z copying torch/include/ATen/ops/_cslt_sparse_mm_search.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6572310Z copying torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6573560Z copying torch/include/ATen/ops/_sparse_csr_prod_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6579220Z copying torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6580340Z copying torch/include/ATen/ops/replication_pad3d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6587630Z copying torch/include/ATen/ops/avg_pool3d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6588690Z copying torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6589920Z copying torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6592490Z copying torch/include/ATen/ops/_pin_memory_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6596680Z copying torch/include/ATen/ops/nuclear_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6601490Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6604490Z copying torch/include/ATen/ops/ceil_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6608940Z copying torch/include/ATen/ops/_empty_affine_quantized_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6609980Z copying torch/include/ATen/ops/zero_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6613390Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6617170Z copying torch/include/ATen/ops/gelu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6620690Z copying torch/include/ATen/ops/isnan_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6621860Z copying torch/include/ATen/ops/frac_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6626650Z copying torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6630350Z copying torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6635980Z copying torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6863800Z copying torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6864980Z copying torch/include/ATen/ops/quantized_max_pool2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6865920Z copying torch/include/ATen/ops/replication_pad3d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6866900Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6868010Z copying torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6869030Z copying torch/include/ATen/ops/erf_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6869860Z copying torch/include/ATen/ops/eye_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6870700Z copying torch/include/ATen/ops/argsort_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6871490Z copying torch/include/ATen/ops/column_stack_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6872350Z copying torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6873350Z copying torch/include/ATen/ops/uniform_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6874220Z copying torch/include/ATen/ops/_fw_primal_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6875070Z copying torch/include/ATen/ops/sum_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6875900Z copying torch/include/ATen/ops/asin_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6876830Z copying torch/include/ATen/ops/cross_entropy_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6877710Z copying torch/include/ATen/ops/fft_irfft_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6878600Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6879480Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6880290Z copying torch/include/ATen/ops/permute_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6881240Z copying torch/include/ATen/ops/_cdist_forward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6882140Z copying torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6883020Z copying torch/include/ATen/ops/tanh_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6883810Z copying torch/include/ATen/ops/row_indices.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6884660Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6885640Z copying torch/include/ATen/ops/matrix_exp_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6886530Z copying torch/include/ATen/ops/quantize_per_channel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6887520Z copying torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6888600Z copying torch/include/ATen/ops/slow_conv_dilated2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6889430Z copying torch/include/ATen/ops/histogram.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6890280Z copying torch/include/ATen/ops/_conv_depthwise2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6891240Z copying torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6892170Z copying torch/include/ATen/ops/as_strided_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6893000Z copying torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6893950Z copying torch/include/ATen/ops/special_xlog1py_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6894880Z copying torch/include/ATen/ops/_functional_assert_async_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6895740Z copying torch/include/ATen/ops/amax_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6896510Z copying torch/include/ATen/ops/retains_grad_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6897280Z copying torch/include/ATen/ops/mean_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6898190Z copying torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6899140Z copying torch/include/ATen/ops/smooth_l1_loss_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6900110Z copying torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6901210Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6902250Z copying torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6903290Z copying torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6904300Z copying torch/include/ATen/ops/view_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6905140Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6906140Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6907050Z copying torch/include/ATen/ops/numpy_T_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6907990Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6908930Z copying torch/include/ATen/ops/fft_rfftfreq_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6909850Z copying torch/include/ATen/ops/cauchy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6910870Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6911900Z copying torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6912810Z copying torch/include/ATen/ops/unflatten_dense_tensors_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6913820Z copying torch/include/ATen/ops/atanh_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6914720Z copying torch/include/ATen/ops/miopen_convolution_add_relu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6915620Z copying torch/include/ATen/ops/native_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6916590Z copying torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6917560Z copying torch/include/ATen/ops/_masked_softmax_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6918440Z copying torch/include/ATen/ops/floor_divide_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6919310Z copying torch/include/ATen/ops/_foreach_expm1.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6920150Z copying torch/include/ATen/ops/fft_fftshift.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6921080Z copying torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6922130Z copying torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6923180Z copying torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6924300Z copying torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6925400Z copying torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6926590Z copying torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6927570Z copying torch/include/ATen/ops/_cast_Short_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6928440Z copying torch/include/ATen/ops/linspace_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6929300Z copying torch/include/ATen/ops/logit_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6930140Z copying torch/include/ATen/ops/remainder_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6937690Z copying torch/include/ATen/ops/bilinear.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6938710Z copying torch/include/ATen/ops/reflection_pad2d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6939610Z copying torch/include/ATen/ops/_sparse_softmax_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6940450Z copying torch/include/ATen/ops/_foreach_asin.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6941390Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6942360Z copying torch/include/ATen/ops/split_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6943340Z copying torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6944300Z copying torch/include/ATen/ops/any_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6945330Z copying torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6946310Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6949860Z copying torch/include/ATen/ops/softplus_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6950840Z copying torch/include/ATen/ops/softmax_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6952420Z copying torch/include/ATen/ops/ccol_indices_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6959140Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6960180Z copying torch/include/ATen/ops/_fft_r2c.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6971600Z copying torch/include/ATen/ops/outer_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6976970Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6982650Z copying torch/include/ATen/ops/hypot_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6983880Z copying torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6984970Z copying torch/include/ATen/ops/adjoint.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6986970Z copying torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6987950Z copying torch/include/ATen/ops/flip_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6988830Z copying torch/include/ATen/ops/flipud.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6990450Z copying torch/include/ATen/ops/argmin_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6991480Z copying torch/include/ATen/ops/_foreach_exp_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6992780Z copying torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6994080Z copying torch/include/ATen/ops/addbmm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6995410Z copying torch/include/ATen/ops/masked_fill_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6996630Z copying torch/include/ATen/ops/exp_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6998510Z copying torch/include/ATen/ops/_ctc_loss_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.6999410Z copying torch/include/ATen/ops/flipud_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7005780Z copying torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7006890Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7013690Z copying torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7014820Z copying torch/include/ATen/ops/_dimV_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7016240Z copying torch/include/ATen/ops/reflection_pad2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7021180Z copying torch/include/ATen/ops/mvlgamma_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7022310Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7028460Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7030260Z copying torch/include/ATen/ops/_batch_norm_with_update_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7035760Z copying torch/include/ATen/ops/log_normal_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7036990Z copying torch/include/ATen/ops/_sparse_sum_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7038790Z copying torch/include/ATen/ops/_aminmax_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7044990Z copying torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7046090Z copying torch/include/ATen/ops/miopen_convolution_transpose_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7053780Z copying torch/include/ATen/ops/miopen_rnn_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7062240Z copying torch/include/ATen/ops/normal_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7063220Z copying torch/include/ATen/ops/dot.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7065240Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7069850Z copying torch/include/ATen/ops/view_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7071120Z copying torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7072230Z copying torch/include/ATen/ops/angle_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7080160Z copying torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7081340Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7087170Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7088180Z copying torch/include/ATen/ops/_make_dual_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7094680Z copying torch/include/ATen/ops/_rowwise_prune_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7095760Z copying torch/include/ATen/ops/special_erfcx_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7097100Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7103030Z copying torch/include/ATen/ops/cosine_embedding_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7105050Z copying torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7110950Z copying torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7112230Z copying torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7113410Z copying torch/include/ATen/ops/_unsafe_view.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7118580Z copying torch/include/ATen/ops/_conj_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7120040Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7126210Z copying torch/include/ATen/ops/special_log_ndtr_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7127330Z copying torch/include/ATen/ops/asinh_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7133930Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7135180Z copying torch/include/ATen/ops/cumulative_trapezoid_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7136460Z copying torch/include/ATen/ops/grid_sampler_2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7141970Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7144170Z copying torch/include/ATen/ops/_fused_sgd_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7147190Z copying torch/include/ATen/ops/_fused_adam_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7149550Z copying torch/include/ATen/ops/mish_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7155400Z copying torch/include/ATen/ops/can_cast_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7160670Z copying torch/include/ATen/ops/ge_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7161810Z copying torch/include/ATen/ops/unique_consecutive.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7164120Z copying torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7168450Z copying torch/include/ATen/ops/max.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7176460Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7181890Z copying torch/include/ATen/ops/_euclidean_dist_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7187180Z copying torch/include/ATen/ops/avg_pool3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7188070Z copying torch/include/ATen/ops/logical_and_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7191740Z copying torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7192820Z copying torch/include/ATen/ops/as_strided_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7198800Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7200120Z copying torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7206520Z copying torch/include/ATen/ops/sym_constrain_range_for_size.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7207510Z copying torch/include/ATen/ops/soft_margin_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7208640Z copying torch/include/ATen/ops/isinf.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7214630Z copying torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7221760Z copying torch/include/ATen/ops/clamp_max_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7222950Z copying torch/include/ATen/ops/mkldnn_max_pool2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7229590Z copying torch/include/ATen/ops/_foreach_rsqrt_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7230720Z copying torch/include/ATen/ops/linear_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7232130Z copying torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7239070Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7240320Z copying torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7246330Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7247500Z copying torch/include/ATen/ops/exp_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7254350Z copying torch/include/ATen/ops/upsample_bicubic2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7255470Z copying torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7256760Z copying torch/include/ATen/ops/select_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7262130Z copying torch/include/ATen/ops/miopen_convolution_transpose_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7263240Z copying torch/include/ATen/ops/zeros_like_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7270110Z copying torch/include/ATen/ops/triangular_solve_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7271200Z copying torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7278520Z copying torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7280000Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7281330Z copying torch/include/ATen/ops/_foreach_sinh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7286440Z copying torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7287600Z copying torch/include/ATen/ops/_to_sparse_semi_structured.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7293680Z copying torch/include/ATen/ops/_foreach_log2_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7294810Z copying torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7295970Z copying torch/include/ATen/ops/logspace_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7302680Z copying torch/include/ATen/ops/softshrink_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7303840Z copying torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7310250Z copying torch/include/ATen/ops/cholesky.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7311200Z copying torch/include/ATen/ops/_masked_scale_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7317840Z copying torch/include/ATen/ops/fft_ihfftn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7318950Z copying torch/include/ATen/ops/or_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7320700Z copying torch/include/ATen/ops/sparse_coo_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7325730Z copying torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7326850Z copying torch/include/ATen/ops/upsample_nearest3d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7333020Z copying torch/include/ATen/ops/max_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7334390Z copying torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7335650Z copying torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7342610Z copying torch/include/ATen/ops/clamp_min.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7343840Z copying torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7351270Z copying torch/include/ATen/ops/repeat_interleave.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7352330Z copying torch/include/ATen/ops/upsample_nearest2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7357480Z copying torch/include/ATen/ops/item_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7358890Z copying torch/include/ATen/ops/cudnn_convolution_relu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7360130Z copying torch/include/ATen/ops/nextafter_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7365800Z copying torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7366860Z copying torch/include/ATen/ops/fft_fft2_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7373350Z copying torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7375750Z copying torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7381230Z copying torch/include/ATen/ops/mkldnn_convolution.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7384030Z copying torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7388640Z copying torch/include/ATen/ops/_fft_r2c_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7389750Z copying torch/include/ATen/ops/glu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7393030Z copying torch/include/ATen/ops/_test_optional_filled_intlist_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7398730Z copying torch/include/ATen/ops/cat_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7401990Z copying torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7406060Z copying torch/include/ATen/ops/_test_warn_in_autograd_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7407150Z copying torch/include/ATen/ops/_coalesced_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7409890Z copying torch/include/ATen/ops/cudnn_convolution_relu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7414450Z copying torch/include/ATen/ops/upsample_nearest2d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7415520Z copying torch/include/ATen/ops/special_gammaln.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7417930Z copying torch/include/ATen/ops/_ctc_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7423920Z copying torch/include/ATen/ops/fill_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7427820Z copying torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7431700Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7432920Z copying torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7437450Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7440380Z copying torch/include/ATen/ops/sparse_bsc_tensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7444860Z copying torch/include/ATen/ops/gcd_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7445840Z copying torch/include/ATen/ops/index_add_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7449970Z copying torch/include/ATen/ops/logit_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7454680Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7457590Z copying torch/include/ATen/ops/fft_hfftn_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7459310Z copying torch/include/ATen/ops/_flash_attention_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7464010Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7469090Z copying torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7471440Z copying torch/include/ATen/ops/_foreach_trunc_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7472780Z copying torch/include/ATen/ops/arccos_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7479160Z copying torch/include/ATen/ops/unfold_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7480980Z copying torch/include/ATen/ops/conv_tbc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7487170Z copying torch/include/ATen/ops/_foreach_frac_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7488230Z copying torch/include/ATen/ops/new_empty_strided_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7489930Z copying torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7495310Z copying torch/include/ATen/ops/sparse_mask.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7496700Z copying torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7502430Z copying torch/include/ATen/ops/atanh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7504610Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7509760Z copying torch/include/ATen/ops/exponential_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7510880Z copying torch/include/ATen/ops/_sparse_semi_structured_apply.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7513300Z copying torch/include/ATen/ops/lift_fresh_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7518880Z copying torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7519940Z copying torch/include/ATen/ops/_foreach_sign_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7527130Z copying torch/include/ATen/ops/adjoint_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7528120Z copying torch/include/ATen/ops/addcdiv_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7535330Z copying torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7536500Z copying torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7537850Z copying torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7543790Z copying torch/include/ATen/ops/mish_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7544730Z copying torch/include/ATen/ops/full.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7549100Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7551570Z copying torch/include/ATen/ops/view_as_real_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7559280Z copying torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7560500Z copying torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7566600Z copying torch/include/ATen/ops/linear_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7568740Z copying torch/include/ATen/ops/addmm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7575100Z copying torch/include/ATen/ops/reshape_as.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7576230Z copying torch/include/ATen/ops/upsample_nearest1d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7577480Z copying torch/include/ATen/ops/prod_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7582400Z copying torch/include/ATen/ops/abs_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7585320Z copying torch/include/ATen/ops/lift_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7590190Z copying torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7591340Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7593500Z copying torch/include/ATen/ops/erfc_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7598790Z copying torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7599920Z copying torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7603000Z copying torch/include/ATen/ops/_linalg_slogdet_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7607860Z copying torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7612410Z copying torch/include/ATen/ops/pad_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7616270Z copying torch/include/ATen/ops/signbit_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7617460Z copying torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7622290Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7624720Z copying torch/include/ATen/ops/convolution_backward_overrideable_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7630350Z copying torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7631420Z copying torch/include/ATen/ops/clamp_max_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7632540Z copying torch/include/ATen/ops/sort_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7638930Z copying torch/include/ATen/ops/triu_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7640000Z copying torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7646720Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7647960Z copying torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7654080Z copying torch/include/ATen/ops/special_i0.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7655300Z copying torch/include/ATen/ops/atleast_3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7657110Z copying torch/include/ATen/ops/_nested_select_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7663640Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7664820Z copying torch/include/ATen/ops/special_airy_ai_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7672210Z copying torch/include/ATen/ops/addmm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7673260Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7674380Z copying torch/include/ATen/ops/special_gammaincc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7679490Z copying torch/include/ATen/ops/mish_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7681400Z copying torch/include/ATen/ops/min_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7687070Z copying torch/include/ATen/ops/acosh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7688130Z copying torch/include/ATen/ops/_pad_enum_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7689410Z copying torch/include/ATen/ops/inverse_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7694630Z copying torch/include/ATen/ops/_safe_softmax_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7695560Z copying torch/include/ATen/ops/mm_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7702200Z copying torch/include/ATen/ops/broadcast_tensors_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7703650Z copying torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7710250Z copying torch/include/ATen/ops/zero_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7711370Z copying torch/include/ATen/ops/_foreach_tanh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7712770Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7719810Z copying torch/include/ATen/ops/reflection_pad1d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7726340Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7727590Z copying torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7732420Z copying torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7734940Z copying torch/include/ATen/ops/renorm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7736260Z copying torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7741150Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7743570Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7754400Z copying torch/include/ATen/ops/conv_depthwise3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7755410Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7756300Z copying torch/include/ATen/ops/_foreach_reciprocal_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7758540Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7759850Z copying torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7766400Z copying torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7767410Z copying torch/include/ATen/ops/rsub_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7774470Z copying torch/include/ATen/ops/fractional_max_pool3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7775650Z copying torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7776720Z copying torch/include/ATen/ops/isneginf_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7783540Z copying torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7784610Z copying torch/include/ATen/ops/cat.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7791480Z copying torch/include/ATen/ops/_thnn_fused_gru_cell.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7792490Z copying torch/include/ATen/ops/_cudnn_rnn_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7793690Z copying torch/include/ATen/ops/rand_like_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7799590Z copying torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7800980Z copying torch/include/ATen/ops/trapezoid_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7808560Z copying torch/include/ATen/ops/relu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7809840Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7811670Z copying torch/include/ATen/ops/_nested_get_jagged_dummy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7816070Z copying torch/include/ATen/ops/clamp_max_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7818470Z copying torch/include/ATen/ops/_unpack_dual_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7823660Z copying torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7825550Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7827340Z copying torch/include/ATen/ops/var_mean_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7831130Z copying torch/include/ATen/ops/polar_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7832860Z copying torch/include/ATen/ops/narrow_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7836930Z copying torch/include/ATen/ops/vstack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7840350Z copying torch/include/ATen/ops/convolution_overrideable_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7845570Z copying torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7847700Z copying torch/include/ATen/ops/transpose_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7848960Z copying torch/include/ATen/ops/threshold_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7855360Z copying torch/include/ATen/ops/tanh_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7856370Z copying torch/include/ATen/ops/bucketize_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7863450Z copying torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7864660Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7871760Z copying torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7872990Z copying torch/include/ATen/ops/_cdist_forward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7874020Z copying torch/include/ATen/ops/view_as_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7879050Z copying torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7886720Z copying torch/include/ATen/ops/log_sigmoid_forward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7887820Z copying torch/include/ATen/ops/_cudnn_ctc_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7889250Z copying torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7896150Z copying torch/include/ATen/ops/view_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7897310Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7903570Z copying torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7904610Z copying torch/include/ATen/ops/eye_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7911800Z copying torch/include/ATen/ops/exp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7913070Z copying torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7914290Z copying torch/include/ATen/ops/expm1_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7916800Z copying torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7920540Z copying torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7921820Z copying torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7923070Z copying torch/include/ATen/ops/rsqrt_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7929220Z copying torch/include/ATen/ops/triu_indices_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7930340Z copying torch/include/ATen/ops/convolution_overrideable.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7938450Z copying torch/include/ATen/ops/diag_embed_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7939810Z copying torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7945080Z copying torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7946170Z copying torch/include/ATen/ops/lift_fresh_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7952210Z copying torch/include/ATen/ops/atanh_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7954130Z copying torch/include/ATen/ops/reciprocal_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7959800Z copying torch/include/ATen/ops/im2col_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7961690Z copying torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7963160Z copying torch/include/ATen/ops/_nested_view_from_buffer_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7968960Z copying torch/include/ATen/ops/sum_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7970440Z copying torch/include/ATen/ops/fft_ifft_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7976980Z copying torch/include/ATen/ops/combinations.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7978460Z copying torch/include/ATen/ops/_to_sparse_csr_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7985290Z copying torch/include/ATen/ops/_fft_r2c_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7986690Z copying torch/include/ATen/ops/hardtanh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7988040Z copying torch/include/ATen/ops/promote_types.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7994440Z copying torch/include/ATen/ops/cross_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.7995860Z copying torch/include/ATen/ops/nansum_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8002460Z copying torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8003780Z copying torch/include/ATen/ops/log1p_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8005110Z copying torch/include/ATen/ops/_foreach_sub.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8010320Z copying torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8011650Z copying torch/include/ATen/ops/_cast_Int_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8018870Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8020210Z copying torch/include/ATen/ops/lshift_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8021810Z copying torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8026730Z copying torch/include/ATen/ops/negative_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8028000Z copying torch/include/ATen/ops/_cast_Byte.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8034780Z copying torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8036150Z copying torch/include/ATen/ops/logaddexp2_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8036910Z copying torch/include/ATen/ops/mish_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8042660Z copying torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8043840Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8050670Z copying torch/include/ATen/ops/linalg_cross_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8053450Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8058650Z copying torch/include/ATen/ops/view_as_complex_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8060370Z copying torch/include/ATen/ops/cos.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8062140Z copying torch/include/ATen/ops/bernoulli_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8068520Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8069900Z copying torch/include/ATen/ops/rrelu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8076130Z copying torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8077650Z copying torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8083570Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8084310Z copying torch/include/ATen/ops/to_sparse_csr_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8085810Z copying torch/include/ATen/ops/median_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8090800Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8092310Z copying torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8098630Z copying torch/include/ATen/ops/uniform_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8100400Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8106720Z copying torch/include/ATen/ops/linalg_diagonal_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8111620Z copying torch/include/ATen/ops/index_reduce_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8112060Z copying torch/include/ATen/ops/_foobar_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8115700Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8117070Z copying torch/include/ATen/ops/randn_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8124140Z copying torch/include/ATen/ops/logical_or_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8125570Z copying torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8131390Z copying torch/include/ATen/ops/neg.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8132920Z copying torch/include/ATen/ops/igamma_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8134460Z copying torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8139250Z copying torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8140870Z copying torch/include/ATen/ops/norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8147100Z copying torch/include/ATen/ops/trace_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8148000Z copying torch/include/ATen/ops/log_sigmoid.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8149530Z copying torch/include/ATen/ops/linalg_ldl_factor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8154660Z copying torch/include/ATen/ops/eq_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8156280Z copying torch/include/ATen/ops/put_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8162570Z copying torch/include/ATen/ops/hinge_embedding_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8164470Z copying torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8170680Z copying torch/include/ATen/ops/softshrink_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8172070Z copying torch/include/ATen/ops/native_dropout_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8173470Z copying torch/include/ATen/ops/argmin_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8177490Z copying torch/include/ATen/ops/vstack_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8179440Z copying torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8186090Z copying torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8187060Z copying torch/include/ATen/ops/can_cast_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8193400Z copying torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8195480Z copying torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8196880Z copying torch/include/ATen/ops/topk_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8202620Z copying torch/include/ATen/ops/_foreach_tan_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8203640Z copying torch/include/ATen/ops/expm1_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8210200Z copying torch/include/ATen/ops/_nested_get_values_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8211610Z copying torch/include/ATen/ops/_masked_softmax_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8213020Z copying torch/include/ATen/ops/_foreach_lerp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8219870Z copying torch/include/ATen/ops/matmul_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8225740Z copying torch/include/ATen/ops/special_zeta_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8227180Z copying torch/include/ATen/ops/huber_loss_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8234020Z copying torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8235340Z copying torch/include/ATen/ops/conv_transpose2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8236740Z copying torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8242180Z copying torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8243600Z copying torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8248910Z copying torch/include/ATen/ops/signbit_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8251430Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8253050Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8257630Z copying torch/include/ATen/ops/logsumexp_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8259270Z copying torch/include/ATen/ops/_foreach_neg_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8265760Z copying torch/include/ATen/ops/_embedding_bag_forward_only_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8267050Z copying torch/include/ATen/ops/_log_softmax_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8273440Z copying torch/include/ATen/ops/neg_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8274780Z copying torch/include/ATen/ops/take_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8276140Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8281200Z copying torch/include/ATen/ops/i0_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8283030Z copying torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8289230Z copying torch/include/ATen/ops/special_gammainc_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8290820Z copying torch/include/ATen/ops/squeeze_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8297390Z copying torch/include/ATen/ops/_sparse_broadcast_to.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8298330Z copying torch/include/ATen/ops/hardtanh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8300010Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8305080Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8306660Z copying torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8312370Z copying torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8314120Z copying torch/include/ATen/ops/_reshape_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8315940Z copying torch/include/ATen/ops/index_reduce_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8320360Z copying torch/include/ATen/ops/diagonal_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8321400Z copying torch/include/ATen/ops/dsplit.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8323250Z copying torch/include/ATen/ops/gather_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8328480Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8329800Z copying torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8335310Z copying torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8337010Z copying torch/include/ATen/ops/_debug_has_internal_overlap_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8343950Z copying torch/include/ATen/ops/_assert_scalar_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8345230Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8346620Z copying torch/include/ATen/ops/_unique.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8351210Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8353630Z copying torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8360000Z copying torch/include/ATen/ops/silu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8361180Z copying torch/include/ATen/ops/resize_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8367970Z copying torch/include/ATen/ops/range_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8369300Z copying torch/include/ATen/ops/max_pool1d_with_indices.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8370460Z copying torch/include/ATen/ops/replication_pad1d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8375100Z copying torch/include/ATen/ops/int_repr_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8376530Z copying torch/include/ATen/ops/upsample_linear1d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8382730Z copying torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8385680Z copying torch/include/ATen/ops/hardsigmoid_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8391970Z copying torch/include/ATen/ops/_lstm_mps_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8393240Z copying torch/include/ATen/ops/mul_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8400250Z copying torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8401730Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8407560Z copying torch/include/ATen/ops/cos_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8408980Z copying torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8410380Z copying torch/include/ATen/ops/exp2_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8415870Z copying torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8417330Z copying torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8420190Z copying torch/include/ATen/ops/coalesce_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8425260Z copying torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8427510Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8428980Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8434830Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8436560Z copying torch/include/ATen/ops/add_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8442840Z copying torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8444320Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8450890Z copying torch/include/ATen/ops/bmm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8452310Z copying torch/include/ATen/ops/to_mkldnn_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8453760Z copying torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8459010Z copying torch/include/ATen/ops/special_bessel_y0_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8459990Z copying torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8466570Z copying torch/include/ATen/ops/real_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8467990Z copying torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8469490Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8476020Z copying torch/include/ATen/ops/max_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8477540Z copying torch/include/ATen/ops/_reshape_alias_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8483880Z copying torch/include/ATen/ops/col_indices_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8485250Z copying torch/include/ATen/ops/logcumsumexp_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8492280Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8493600Z copying torch/include/ATen/ops/fmod_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8494550Z copying torch/include/ATen/ops/_foreach_clamp_max_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8500210Z copying torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8501460Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8508260Z copying torch/include/ATen/ops/_foreach_max_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8509830Z copying torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8510840Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8516510Z copying torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8517960Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8519310Z copying torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8525030Z copying torch/include/ATen/ops/copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8526660Z copying torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8532990Z copying torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8534590Z copying torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8540440Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8542100Z copying torch/include/ATen/ops/linalg_solve_triangular_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8542950Z copying torch/include/ATen/ops/max_unpool2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8548860Z copying torch/include/ATen/ops/bitwise_xor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8550480Z copying torch/include/ATen/ops/feature_alpha_dropout_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8557090Z copying torch/include/ATen/ops/_empty_affine_quantized_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8565510Z copying torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8566810Z copying torch/include/ATen/ops/_standard_gamma.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8568230Z copying torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8573570Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8574930Z copying torch/include/ATen/ops/batch_norm_update_stats_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8581090Z copying torch/include/ATen/ops/special_i1e_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8582450Z copying torch/include/ATen/ops/baddbmm_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8583800Z copying torch/include/ATen/ops/cummax_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8590100Z copying torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8591500Z copying torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8598240Z copying torch/include/ATen/ops/norm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8599640Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8601030Z copying torch/include/ATen/ops/concat_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8605830Z copying torch/include/ATen/ops/uniform_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8606750Z copying torch/include/ATen/ops/gcd_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8614040Z copying torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8818350Z copying torch/include/ATen/ops/new_zeros_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8819700Z copying torch/include/ATen/ops/sigmoid_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8821280Z copying torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8822610Z copying torch/include/ATen/ops/_cast_Int_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8824070Z copying torch/include/ATen/ops/_unsafe_index_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8824900Z copying torch/include/ATen/ops/lerp_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8826880Z copying torch/include/ATen/ops/_foreach_add.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8833390Z copying torch/include/ATen/ops/unfold_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8834140Z copying torch/include/ATen/ops/max_pool1d_with_indices_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8834660Z copying torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8835050Z copying torch/include/ATen/ops/masked_fill.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8835490Z copying torch/include/ATen/ops/_log_softmax_backward_data.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8836030Z copying torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8836470Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8836930Z copying torch/include/ATen/ops/unflatten_dense_tensors.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8838270Z copying torch/include/ATen/ops/new_ones_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8839570Z copying torch/include/ATen/ops/addcdiv.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8840970Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8841880Z copying torch/include/ATen/ops/_to_sparse_bsr_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8843480Z copying torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8844760Z copying torch/include/ATen/ops/ravel_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8846050Z copying torch/include/ATen/ops/_foreach_addcdiv.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8847490Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8848490Z copying torch/include/ATen/ops/linalg_pinv_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8917250Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8918750Z copying torch/include/ATen/ops/view_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8920310Z copying torch/include/ATen/ops/max_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8921620Z copying torch/include/ATen/ops/msort_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8922970Z copying torch/include/ATen/ops/q_per_channel_scales_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8924400Z copying torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8925710Z copying torch/include/ATen/ops/random_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8927180Z copying torch/include/ATen/ops/scatter_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8928620Z copying torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8929940Z copying torch/include/ATen/ops/linalg_cross_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8931390Z copying torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8932070Z copying torch/include/ATen/ops/mkldnn_linear.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8933710Z copying torch/include/ATen/ops/index_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8935100Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8936540Z copying torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8937940Z copying torch/include/ATen/ops/lerp_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8939450Z copying torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8940520Z copying torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8942220Z copying torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8943710Z copying torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8945050Z copying torch/include/ATen/ops/_add_relu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8945970Z copying torch/include/ATen/ops/fft_ihfft2_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8947810Z copying torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8949120Z copying torch/include/ATen/ops/sin_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8950460Z copying torch/include/ATen/ops/hardsigmoid_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8951800Z copying torch/include/ATen/ops/fmin_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8953140Z copying torch/include/ATen/ops/hardshrink_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8954900Z copying torch/include/ATen/ops/hsplit.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8956370Z copying torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8957810Z copying torch/include/ATen/ops/signbit_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8959450Z copying torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8960990Z copying torch/include/ATen/ops/hardtanh_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8962110Z copying torch/include/ATen/ops/special_modified_bessel_i0_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8964010Z copying torch/include/ATen/ops/_mps_convolution_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8965330Z copying torch/include/ATen/ops/repeat_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8966620Z copying torch/include/ATen/ops/_reshape_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8968100Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8969840Z copying torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8970750Z copying torch/include/ATen/ops/less_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8972550Z copying torch/include/ATen/ops/one_hot_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8973960Z copying torch/include/ATen/ops/gcd_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8975310Z copying torch/include/ATen/ops/_fft_c2c_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8976830Z copying torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8977690Z copying torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8979230Z copying torch/include/ATen/ops/_foreach_log1p.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8980590Z copying torch/include/ATen/ops/cauchy_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8981950Z copying torch/include/ATen/ops/rsqrt_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8983340Z copying torch/include/ATen/ops/_foreach_trunc_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8984560Z copying torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8985830Z copying torch/include/ATen/ops/expand_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8987290Z copying torch/include/ATen/ops/mps_convolution_transpose_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8988730Z copying torch/include/ATen/ops/linalg_matrix_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8990180Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8991670Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8993030Z copying torch/include/ATen/ops/mul_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8994410Z copying torch/include/ATen/ops/miopen_batch_norm_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8995810Z copying torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8997170Z copying torch/include/ATen/ops/unfold_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8998120Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.8999500Z copying torch/include/ATen/ops/linalg_svd_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9001110Z copying torch/include/ATen/ops/bitwise_and_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9002530Z copying torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9004000Z copying torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9004810Z copying torch/include/ATen/ops/fft_fft2.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9006600Z copying torch/include/ATen/ops/var_mean_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9007570Z copying torch/include/ATen/ops/normal_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9009260Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9010600Z copying torch/include/ATen/ops/max_pool2d_with_indices_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9012130Z copying torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9013420Z copying torch/include/ATen/ops/fft_ifft2.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9014790Z copying torch/include/ATen/ops/argmax_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9015700Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9017210Z copying torch/include/ATen/ops/adaptive_max_pool3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9018790Z copying torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9019660Z copying torch/include/ATen/ops/amax_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9021420Z copying torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9022960Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9023860Z copying torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9025400Z copying torch/include/ATen/ops/_unsafe_view_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9026810Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9028380Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9029280Z copying torch/include/ATen/ops/_compute_linear_combination_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9030880Z copying torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9032260Z copying torch/include/ATen/ops/masked_fill_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9033570Z copying torch/include/ATen/ops/polygamma_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9034890Z copying torch/include/ATen/ops/l1_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9036360Z copying torch/include/ATen/ops/trace_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9037870Z copying torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9038810Z copying torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9040240Z copying torch/include/ATen/ops/sort.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9041640Z copying torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9042980Z copying torch/include/ATen/ops/mish_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9044270Z copying torch/include/ATen/ops/is_set_to.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9046380Z copying torch/include/ATen/ops/unflatten_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9048270Z copying torch/include/ATen/ops/_fused_adam_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9054670Z copying torch/include/ATen/ops/_dirichlet_grad_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9056290Z copying torch/include/ATen/ops/einsum_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9062250Z copying torch/include/ATen/ops/nan_to_num.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9064070Z copying torch/include/ATen/ops/q_zero_point_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9070730Z copying torch/include/ATen/ops/as_strided_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9072060Z copying torch/include/ATen/ops/t_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9073390Z copying torch/include/ATen/ops/logical_and_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9078650Z copying torch/include/ATen/ops/split_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9080080Z copying torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9086490Z copying torch/include/ATen/ops/_addmm_activation_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9087920Z copying torch/include/ATen/ops/lerp_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9095020Z copying torch/include/ATen/ops/nansum_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9096010Z copying torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9097460Z copying torch/include/ATen/ops/_fft_c2r_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9102720Z copying torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9104200Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9110560Z copying torch/include/ATen/ops/cosine_similarity_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9111940Z copying torch/include/ATen/ops/fix_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9118610Z copying torch/include/ATen/ops/_reshape_alias_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9119990Z copying torch/include/ATen/ops/flatten_dense_tensors_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9120950Z copying torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9126420Z copying torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9127800Z copying torch/include/ATen/ops/igamma_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9134840Z copying torch/include/ATen/ops/poisson_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9136210Z copying torch/include/ATen/ops/full_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9137620Z copying torch/include/ATen/ops/convolution_backward_overrideable_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9142930Z copying torch/include/ATen/ops/_conj_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9144410Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9150330Z copying torch/include/ATen/ops/linalg_eig_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9151590Z copying torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9153130Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9158200Z copying torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9159620Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9166180Z copying torch/include/ATen/ops/expm1_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9167690Z copying torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9174100Z copying torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9175350Z copying torch/include/ATen/ops/sinh_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9176890Z copying torch/include/ATen/ops/upsample_linear1d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9181970Z copying torch/include/ATen/ops/baddbmm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9183400Z copying torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9190100Z copying torch/include/ATen/ops/group_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9191560Z copying torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9192750Z copying torch/include/ATen/ops/_autocast_to_full_precision_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9199050Z copying torch/include/ATen/ops/exp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9200680Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9207170Z copying torch/include/ATen/ops/upsample_bilinear2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9212310Z copying torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9214800Z copying torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9216590Z copying torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9218190Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9222600Z copying torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9231140Z copying torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9232300Z copying torch/include/ATen/ops/clamp_max_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9233810Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9239260Z copying torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9240590Z copying torch/include/ATen/ops/arange.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9247360Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9248260Z copying torch/include/ATen/ops/hardshrink.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9250010Z copying torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9255330Z copying torch/include/ATen/ops/special_round_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9256720Z copying torch/include/ATen/ops/_reshape_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9263110Z copying torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9264530Z copying torch/include/ATen/ops/index_fill.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9270720Z copying torch/include/ATen/ops/ceil_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9272180Z copying torch/include/ATen/ops/convolution_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9273520Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9279240Z copying torch/include/ATen/ops/linalg_diagonal_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9280580Z copying torch/include/ATen/ops/nonzero_numpy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9286700Z copying torch/include/ATen/ops/_index_put_impl_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9288420Z copying torch/include/ATen/ops/istft.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9294290Z copying torch/include/ATen/ops/_foreach_erfc_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9295760Z copying torch/include/ATen/ops/logit_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9296690Z copying torch/include/ATen/ops/chain_matmul_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9301460Z copying torch/include/ATen/ops/_conj_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9304510Z copying torch/include/ATen/ops/softplus_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9310230Z copying torch/include/ATen/ops/_foreach_addcmul_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9311550Z copying torch/include/ATen/ops/slice_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9313270Z copying torch/include/ATen/ops/_compute_linear_combination.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9319010Z copying torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9320320Z copying torch/include/ATen/ops/_nnz_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9326790Z copying torch/include/ATen/ops/cummaxmin_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9328080Z copying torch/include/ATen/ops/fft_rfft2.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9334600Z copying torch/include/ATen/ops/_stack_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9336100Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9336860Z copying torch/include/ATen/ops/cartesian_prod_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9342460Z copying torch/include/ATen/ops/_test_optional_filled_intlist.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9343830Z copying torch/include/ATen/ops/huber_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9350440Z copying torch/include/ATen/ops/index_select_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9351880Z copying torch/include/ATen/ops/grid_sampler_3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9353240Z copying torch/include/ATen/ops/view_as_real_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9358550Z copying torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9359430Z copying torch/include/ATen/ops/index_add_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9367100Z copying torch/include/ATen/ops/_to_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9368400Z copying torch/include/ATen/ops/max_unpool3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9374890Z copying torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9376490Z copying torch/include/ATen/ops/native_batch_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9377960Z copying torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9382920Z copying torch/include/ATen/ops/_fw_primal_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9384400Z copying torch/include/ATen/ops/isnan_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9390700Z copying torch/include/ATen/ops/full_like_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9392850Z copying torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9398950Z copying torch/include/ATen/ops/fmax_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9400050Z copying torch/include/ATen/ops/randint_like.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9406770Z copying torch/include/ATen/ops/_neg_view_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9407890Z copying torch/include/ATen/ops/lshift_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9414510Z copying torch/include/ATen/ops/unfold_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9415990Z copying torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9417270Z copying torch/include/ATen/ops/istft_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9422140Z copying torch/include/ATen/ops/_unique_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9423440Z copying torch/include/ATen/ops/fmin_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9430560Z copying torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9432110Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9438530Z copying torch/include/ATen/ops/rsqrt_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9439980Z copying torch/include/ATen/ops/searchsorted_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9441300Z copying torch/include/ATen/ops/ones_like_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9445920Z copying torch/include/ATen/ops/tanh_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9447270Z copying torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9454260Z copying torch/include/ATen/ops/_softmax_backward_data.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9455350Z copying torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9456900Z copying torch/include/ATen/ops/_to_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9462260Z copying torch/include/ATen/ops/sinh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9463680Z copying torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9469790Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9471400Z copying torch/include/ATen/ops/unsafe_split_with_sizes_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9478070Z copying torch/include/ATen/ops/geometric_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9479470Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9480250Z copying torch/include/ATen/ops/erf_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9485970Z copying torch/include/ATen/ops/align_as_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9487220Z copying torch/include/ATen/ops/zero.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9494160Z copying torch/include/ATen/ops/xlogy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9495580Z copying torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9496650Z copying torch/include/ATen/ops/mT.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9501790Z copying torch/include/ATen/ops/uniform_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9503180Z copying torch/include/ATen/ops/embedding_dense_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9509930Z copying torch/include/ATen/ops/orgqr_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9510980Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9512370Z copying torch/include/ATen/ops/cumprod_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9519540Z copying torch/include/ATen/ops/range_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9521000Z copying torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9526880Z copying torch/include/ATen/ops/_adaptive_avg_pool3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9528670Z copying torch/include/ATen/ops/_masked_softmax_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9534300Z copying torch/include/ATen/ops/linalg_ldl_solve.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9535990Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9537540Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9542150Z copying torch/include/ATen/ops/slice_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9544320Z copying torch/include/ATen/ops/random_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9551090Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9552980Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9558590Z copying torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9559500Z copying torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9566770Z copying torch/include/ATen/ops/floor_divide_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9568200Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9575160Z copying torch/include/ATen/ops/_linalg_det_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9576450Z copying torch/include/ATen/ops/sin_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9577740Z copying torch/include/ATen/ops/can_cast.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9583160Z copying torch/include/ATen/ops/cumsum_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9584290Z copying torch/include/ATen/ops/atanh_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9590390Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9592050Z copying torch/include/ATen/ops/kl_div_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9593680Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9598430Z copying torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9599800Z copying torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9606180Z copying torch/include/ATen/ops/linalg_vector_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9607530Z copying torch/include/ATen/ops/embedding_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9613900Z copying torch/include/ATen/ops/igamma_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9615460Z copying torch/include/ATen/ops/sparse_bsc_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9616800Z copying torch/include/ATen/ops/special_i0e_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9622230Z copying torch/include/ATen/ops/is_floating_point.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9623560Z copying torch/include/ATen/ops/fft_fft2_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9629480Z copying torch/include/ATen/ops/xlogy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9631400Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9638300Z copying torch/include/ATen/ops/ceil_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9639700Z copying torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9640980Z copying torch/include/ATen/ops/masked_scatter_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9641800Z copying torch/include/ATen/ops/ge_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9645740Z copying torch/include/ATen/ops/_test_check_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9647300Z copying torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9651400Z copying torch/include/ATen/ops/squeeze.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9654550Z copying torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9655960Z copying torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9660760Z copying torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9663500Z copying torch/include/ATen/ops/permute_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9668650Z copying torch/include/ATen/ops/is_distributed_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9670010Z copying torch/include/ATen/ops/_histogramdd_bin_edges.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9673740Z copying torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9677660Z copying torch/include/ATen/ops/relu6_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9681080Z copying torch/include/ATen/ops/sigmoid_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9682570Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9687510Z copying torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9689580Z copying torch/include/ATen/ops/fft_hfft2_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9695620Z copying torch/include/ATen/ops/rad2deg_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9697040Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9702920Z copying torch/include/ATen/ops/leaky_relu_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9705660Z copying torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9711320Z copying torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9712220Z copying torch/include/ATen/ops/silu_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9718540Z copying torch/include/ATen/ops/linalg_solve.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9719710Z copying torch/include/ATen/ops/special_zeta_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9722560Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9727950Z copying torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9731890Z copying torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9735190Z copying torch/include/ATen/ops/_foreach_sigmoid_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9736470Z copying torch/include/ATen/ops/lshift.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9740420Z copying torch/include/ATen/ops/outer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9744150Z copying torch/include/ATen/ops/bilinear_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9752020Z copying torch/include/ATen/ops/rms_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9752630Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9754090Z copying torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9755720Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9761850Z copying torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9763380Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9980700Z copying torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9982100Z copying torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9990010Z copying torch/include/ATen/ops/stft_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9996650Z copying torch/include/ATen/ops/linalg_lu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:06.9997920Z copying torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0008490Z copying torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0009840Z copying torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0011150Z copying torch/include/ATen/ops/_linalg_det.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0020670Z copying torch/include/ATen/ops/cholesky_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0030450Z copying torch/include/ATen/ops/asin_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0037820Z copying torch/include/ATen/ops/from_file_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0043620Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0050290Z copying torch/include/ATen/ops/_test_serialization_subcmul_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0059910Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0067070Z copying torch/include/ATen/ops/_assert_async_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0068440Z copying torch/include/ATen/ops/nansum_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0069920Z copying torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0070940Z copying torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0072520Z copying torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0074000Z copying torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0074790Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0076150Z copying torch/include/ATen/ops/norm_except_dim.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0077700Z copying torch/include/ATen/ops/fft_irfft2_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0078540Z copying torch/include/ATen/ops/_make_dual_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0080090Z copying torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0081390Z copying torch/include/ATen/ops/linalg_solve_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0082850Z copying torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0083650Z copying torch/include/ATen/ops/log1p_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0085170Z copying torch/include/ATen/ops/view_as_complex_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0086480Z copying torch/include/ATen/ops/repeat_interleave_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0087760Z copying torch/include/ATen/ops/is_complex.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0089180Z copying torch/include/ATen/ops/softplus_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0090630Z copying torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0092050Z copying torch/include/ATen/ops/_weight_int4pack_mm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0093290Z copying torch/include/ATen/ops/_version.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0145950Z copying torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0151180Z copying torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0152530Z copying torch/include/ATen/ops/softplus_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0153990Z copying torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0163840Z copying torch/include/ATen/ops/scatter_add_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0165120Z copying torch/include/ATen/ops/tril_indices_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0166590Z copying torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0167880Z copying torch/include/ATen/ops/clip_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0169210Z copying torch/include/ATen/ops/matmul_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0170520Z copying torch/include/ATen/ops/linalg_solve_ex.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0171970Z copying torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0172920Z copying torch/include/ATen/ops/_mkldnn_transpose_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0174640Z copying torch/include/ATen/ops/special_ndtri_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0175440Z copying torch/include/ATen/ops/tensor_split_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0177050Z copying torch/include/ATen/ops/align_to_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0178660Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0179560Z copying torch/include/ATen/ops/convolution_backward_overrideable.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0181250Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0182480Z copying torch/include/ATen/ops/geometric.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0219500Z copying torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0220340Z copying torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0221790Z copying torch/include/ATen/ops/i0_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0223110Z copying torch/include/ATen/ops/hardshrink_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0224470Z copying torch/include/ATen/ops/requires_grad.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0225740Z copying torch/include/ATen/ops/elu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0226620Z copying torch/include/ATen/ops/threshold_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0228280Z copying torch/include/ATen/ops/special_entr_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0229800Z copying torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0230530Z copying torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0231930Z copying torch/include/ATen/ops/bitwise_xor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0233250Z copying torch/include/ATen/ops/special_xlogy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0234600Z copying torch/include/ATen/ops/acos_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0266770Z copying torch/include/ATen/ops/cumprod_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0268060Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0269370Z copying torch/include/ATen/ops/lgamma_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0270740Z copying torch/include/ATen/ops/_amp_update_scale_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0272080Z copying torch/include/ATen/ops/expm1_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0273620Z copying torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0290500Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0296590Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0297930Z copying torch/include/ATen/ops/_index_put_impl_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0306510Z copying torch/include/ATen/ops/unfold_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0314310Z copying torch/include/ATen/ops/reflection_pad3d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0315710Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0317070Z copying torch/include/ATen/ops/addbmm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0317860Z copying torch/include/ATen/ops/matrix_power_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0319420Z copying torch/include/ATen/ops/upsample_nearest1d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0320770Z copying torch/include/ATen/ops/matmul_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0336740Z copying torch/include/ATen/ops/max_pool3d_with_indices_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0338050Z copying torch/include/ATen/ops/_lstm_mps_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0339510Z copying torch/include/ATen/ops/_softmax_backward_data_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0340860Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0341750Z copying torch/include/ATen/ops/mps_convolution_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0343500Z copying torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0360510Z copying torch/include/ATen/ops/_coalesce_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0361970Z copying torch/include/ATen/ops/special_exp2_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0363070Z copying torch/include/ATen/ops/special_erfcx_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0364760Z copying torch/include/ATen/ops/min_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0366260Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0367340Z copying torch/include/ATen/ops/logit_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0383190Z copying torch/include/ATen/ops/scalar_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0393540Z copying torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0394940Z copying torch/include/ATen/ops/_cholesky_solve_helper_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0403110Z copying torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0404500Z copying torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0405420Z copying torch/include/ATen/ops/special_legendre_polynomial_p_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0406950Z copying torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0408330Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0409620Z copying torch/include/ATen/ops/_softmax_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0411010Z copying torch/include/ATen/ops/_foreach_reciprocal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0411940Z copying torch/include/ATen/ops/softplus_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0413490Z copying torch/include/ATen/ops/is_inference_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0414760Z copying torch/include/ATen/ops/any_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0415890Z copying torch/include/ATen/ops/digamma_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0417240Z copying torch/include/ATen/ops/abs_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0418800Z copying torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0419970Z copying torch/include/ATen/ops/elu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0456340Z copying torch/include/ATen/ops/mH_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0457840Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0459130Z copying torch/include/ATen/ops/linalg_cross.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0459940Z copying torch/include/ATen/ops/inner.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0461580Z copying torch/include/ATen/ops/nanmedian_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0473580Z copying torch/include/ATen/ops/fractional_max_pool2d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0474970Z copying torch/include/ATen/ops/kthvalue_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0476080Z copying torch/include/ATen/ops/conj.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0477390Z copying torch/include/ATen/ops/native_group_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0478800Z copying torch/include/ATen/ops/mkldnn_linear_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0480110Z copying torch/include/ATen/ops/select_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0496780Z copying torch/include/ATen/ops/special_log_softmax_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0498100Z copying torch/include/ATen/ops/reshape_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0506540Z copying torch/include/ATen/ops/addcmul_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0513710Z copying torch/include/ATen/ops/atan_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0520570Z copying torch/include/ATen/ops/_test_serialization_subcmul_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0526990Z copying torch/include/ATen/ops/_scaled_mm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0528300Z copying torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0529610Z copying torch/include/ATen/ops/neg_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0531020Z copying torch/include/ATen/ops/_weight_int4pack_mm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0543780Z copying torch/include/ATen/ops/addmm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0545140Z copying torch/include/ATen/ops/hardshrink_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0546000Z copying torch/include/ATen/ops/softmax_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0547710Z copying torch/include/ATen/ops/silu_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0549140Z copying torch/include/ATen/ops/copy_sparse_to_sparse_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0567540Z copying torch/include/ATen/ops/mse_loss_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0569040Z copying torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0570180Z copying torch/include/ATen/ops/vander_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0571640Z copying torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0572430Z copying torch/include/ATen/ops/cumprod_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0573780Z copying torch/include/ATen/ops/_upsample_nearest_exact3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0575380Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0576400Z copying torch/include/ATen/ops/matrix_H_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0577870Z copying torch/include/ATen/ops/_resize_output.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0579980Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0580760Z copying torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0582340Z copying torch/include/ATen/ops/linalg_cond.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0583750Z copying torch/include/ATen/ops/special_polygamma.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0584770Z copying torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0586440Z copying torch/include/ATen/ops/replication_pad2d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0621840Z copying torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0630900Z copying torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0634010Z copying torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0639750Z copying torch/include/ATen/ops/smm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0641350Z copying torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0642700Z copying torch/include/ATen/ops/_addmm_activation.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0658750Z copying torch/include/ATen/ops/ormqr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0660280Z copying torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0661780Z copying torch/include/ATen/ops/floor_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0663170Z copying torch/include/ATen/ops/sin.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0664620Z copying torch/include/ATen/ops/_spdiags_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0666320Z copying torch/include/ATen/ops/float_power_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0667830Z copying torch/include/ATen/ops/imag_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0669290Z copying torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0670430Z copying torch/include/ATen/ops/_foreach_pow_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0671880Z copying torch/include/ATen/ops/sinh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0673400Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0698150Z copying torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0699550Z copying torch/include/ATen/ops/crow_indices_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0706910Z copying torch/include/ATen/ops/fft_ifftn_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0708610Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0709920Z copying torch/include/ATen/ops/sum_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0711290Z copying torch/include/ATen/ops/exp2_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0712840Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0714310Z copying torch/include/ATen/ops/_assert_scalar_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0715720Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0733680Z copying torch/include/ATen/ops/view_as_complex_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0735040Z copying torch/include/ATen/ops/_log_softmax_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0736380Z copying torch/include/ATen/ops/sigmoid_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0737460Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0739020Z copying torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0740340Z copying torch/include/ATen/ops/empty_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0741750Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0763940Z copying torch/include/ATen/ops/is_neg_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0769760Z copying torch/include/ATen/ops/floor_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0771130Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0772460Z copying torch/include/ATen/ops/prelu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0773880Z copying torch/include/ATen/ops/take_along_dim.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0783820Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0785280Z copying torch/include/ATen/ops/glu_backward_jvp_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0786840Z copying torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0787600Z copying torch/include/ATen/ops/_unsafe_index_put_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0789230Z copying torch/include/ATen/ops/softshrink_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0790590Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0791960Z copying torch/include/ATen/ops/_cudnn_rnn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0793850Z copying torch/include/ATen/ops/replication_pad1d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0795230Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0796530Z copying torch/include/ATen/ops/_linalg_det_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0798020Z copying torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0798850Z copying torch/include/ATen/ops/_cdist_forward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0800460Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0801950Z copying torch/include/ATen/ops/reflection_pad3d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0803320Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0804360Z copying torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0805730Z copying torch/include/ATen/ops/_cdist_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0807060Z copying torch/include/ATen/ops/multi_margin_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0847960Z copying torch/include/ATen/ops/_foreach_add_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0849350Z copying torch/include/ATen/ops/group_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0850610Z copying torch/include/ATen/ops/special_erfcx_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0851970Z copying torch/include/ATen/ops/_foreach_minimum_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0853390Z copying torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0854780Z copying torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0856210Z copying torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0857000Z copying torch/include/ATen/ops/_coalesced.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0858800Z copying torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0859720Z copying torch/include/ATen/ops/_nested_get_ragged_idx.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0861470Z copying torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0862740Z copying torch/include/ATen/ops/conv2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0864230Z copying torch/include/ATen/ops/special_logsumexp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0893480Z copying torch/include/ATen/ops/linalg_eigvalsh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0894880Z copying torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0907690Z copying torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0909010Z copying torch/include/ATen/ops/dsplit_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0910440Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0911380Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0912800Z copying torch/include/ATen/ops/igammac.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0914230Z copying torch/include/ATen/ops/_efficientzerotensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0915520Z copying torch/include/ATen/ops/arange_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0916560Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0918010Z copying torch/include/ATen/ops/clamp_min_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0939950Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0947390Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0948640Z copying torch/include/ATen/ops/celu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0950020Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0951470Z copying torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0952260Z copying torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0953820Z copying torch/include/ATen/ops/_foreach_addcdiv_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0970380Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0971910Z copying torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0980470Z copying torch/include/ATen/ops/_chunk_cat_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0981920Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0983230Z copying torch/include/ATen/ops/fmin_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0984650Z copying torch/include/ATen/ops/upsample_nearest2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.0986000Z copying torch/include/ATen/ops/fft_ifftshift_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1003330Z copying torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1004700Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1006130Z copying torch/include/ATen/ops/softplus_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1007610Z copying torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1008530Z copying torch/include/ATen/ops/index_fill_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1010160Z copying torch/include/ATen/ops/quantized_max_pool3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1025710Z copying torch/include/ATen/ops/logaddexp_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1032200Z copying torch/include/ATen/ops/arange_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1038010Z copying torch/include/ATen/ops/_nnpack_spatial_convolution.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1039420Z copying torch/include/ATen/ops/bitwise_not_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1040480Z copying torch/include/ATen/ops/conv_depthwise3d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1042170Z copying torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1043570Z copying torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1045050Z copying torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1045910Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1047580Z copying torch/include/ATen/ops/_batch_norm_impl_index_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1048970Z copying torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1073320Z copying torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1074380Z copying torch/include/ATen/ops/_foreach_sub_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1075760Z copying torch/include/ATen/ops/sub_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1077170Z copying torch/include/ATen/ops/_to_sparse_semi_structured_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1078480Z copying torch/include/ATen/ops/unbind_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1079970Z copying torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1080730Z copying torch/include/ATen/ops/signbit_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1082260Z copying torch/include/ATen/ops/gelu_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1106730Z copying torch/include/ATen/ops/is_neg_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1108040Z copying torch/include/ATen/ops/numpy_T_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1109060Z copying torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1110520Z copying torch/include/ATen/ops/to_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1111970Z copying torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1112880Z copying torch/include/ATen/ops/replication_pad2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1114390Z copying torch/include/ATen/ops/is_floating_point_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1116260Z copying torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1117330Z copying torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1139050Z copying torch/include/ATen/ops/_nested_tensor_strides.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1140400Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1147090Z copying torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1147940Z copying torch/include/ATen/ops/all_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1156780Z copying torch/include/ATen/ops/tanh_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1158210Z copying torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1159560Z copying torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1160460Z copying torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1161980Z copying torch/include/ATen/ops/masked_select_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1181840Z copying torch/include/ATen/ops/_flash_attention_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1188620Z copying torch/include/ATen/ops/logit_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1190200Z copying torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1191660Z copying torch/include/ATen/ops/chunk_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1192640Z copying torch/include/ATen/ops/_foobar_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1194400Z copying torch/include/ATen/ops/atan2_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1195780Z copying torch/include/ATen/ops/nextafter_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1206910Z copying torch/include/ATen/ops/amin.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1208370Z copying torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1209710Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1211020Z copying torch/include/ATen/ops/_sparse_csr_prod.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1212430Z copying torch/include/ATen/ops/_cholesky_solve_helper_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1213730Z copying torch/include/ATen/ops/frexp_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1215040Z copying torch/include/ATen/ops/alias_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1216470Z copying torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1217370Z copying torch/include/ATen/ops/gru_cell.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1218950Z copying torch/include/ATen/ops/isclose_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1220380Z copying torch/include/ATen/ops/batch_norm_gather_stats_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1221710Z copying torch/include/ATen/ops/gather_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1223040Z copying torch/include/ATen/ops/mkldnn_linear_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1224610Z copying torch/include/ATen/ops/grid_sampler_3d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1225940Z copying torch/include/ATen/ops/diagonal_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1266660Z copying torch/include/ATen/ops/sspaddmm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1268000Z copying torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1269070Z copying torch/include/ATen/ops/_test_string_default_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1270390Z copying torch/include/ATen/ops/_logcumsumexp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1271660Z copying torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1272970Z copying torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1274190Z copying torch/include/ATen/ops/_unique_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1276110Z copying torch/include/ATen/ops/_sobol_engine_draw.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1298320Z copying torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1299410Z copying torch/include/ATen/ops/feature_dropout_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1300660Z copying torch/include/ATen/ops/diagflat_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1301920Z copying torch/include/ATen/ops/_values.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1303850Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1304940Z copying torch/include/ATen/ops/index_add_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1305990Z copying torch/include/ATen/ops/glu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1307270Z copying torch/include/ATen/ops/_wrapped_linear_prepack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1323920Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1325190Z copying torch/include/ATen/ops/combinations_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1326510Z copying torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1327940Z copying torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1329250Z copying torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1330510Z copying torch/include/ATen/ops/swapdims_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1332150Z copying torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1333500Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1354930Z copying torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1355940Z copying torch/include/ATen/ops/isreal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1357320Z copying torch/include/ATen/ops/addcmul_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1359220Z copying torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1360340Z copying torch/include/ATen/ops/cumulative_trapezoid_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1361480Z copying torch/include/ATen/ops/arctan.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1363370Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1364520Z copying torch/include/ATen/ops/_sparse_sum.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1365760Z copying torch/include/ATen/ops/sinh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1367520Z copying torch/include/ATen/ops/reflection_pad1d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1368520Z copying torch/include/ATen/ops/arctanh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1369760Z copying torch/include/ATen/ops/col2im.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1371530Z copying torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1372630Z copying torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1407970Z copying torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1409040Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1416660Z copying torch/include/ATen/ops/upsample_linear1d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1417710Z copying torch/include/ATen/ops/_cudnn_rnn_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1419480Z copying torch/include/ATen/ops/_sparse_semi_structured_mm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1420530Z copying torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1421540Z copying torch/include/ATen/ops/histc_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1440240Z copying torch/include/ATen/ops/unique_dim_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1441370Z copying torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1442640Z copying torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1450200Z copying torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1451370Z copying torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1452490Z copying torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1453720Z copying torch/include/ATen/ops/geometric_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1467450Z copying torch/include/ATen/ops/logit_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1469300Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1470230Z copying torch/include/ATen/ops/mH.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1471380Z copying torch/include/ATen/ops/count_nonzero_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1483260Z copying torch/include/ATen/ops/fmax_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1491380Z copying torch/include/ATen/ops/_nested_view_from_buffer_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1492480Z copying torch/include/ATen/ops/avg_pool3d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1493520Z copying torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1504450Z copying torch/include/ATen/ops/trace_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1505560Z copying torch/include/ATen/ops/_weight_norm_interface_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1507460Z copying torch/include/ATen/ops/addbmm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1518740Z copying torch/include/ATen/ops/empty_strided_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1525760Z copying torch/include/ATen/ops/mv_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1531070Z copying torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1534560Z copying torch/include/ATen/ops/tensor_split.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1542310Z copying torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1556340Z copying torch/include/ATen/ops/var_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1557370Z copying torch/include/ATen/ops/slice_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1559130Z copying torch/include/ATen/ops/feature_alpha_dropout_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1560070Z copying torch/include/ATen/ops/softshrink.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1561190Z copying torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1562370Z copying torch/include/ATen/ops/lgamma.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1564230Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1565500Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1585990Z copying torch/include/ATen/ops/polar_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1591700Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1597570Z copying torch/include/ATen/ops/mean_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1603700Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1609750Z copying torch/include/ATen/ops/_adaptive_avg_pool2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1610770Z copying torch/include/ATen/ops/pow.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1612610Z copying torch/include/ATen/ops/_foreach_zero_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1613420Z copying torch/include/ATen/ops/lt.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1614590Z copying torch/include/ATen/ops/_foreach_cosh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1616480Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1636730Z copying torch/include/ATen/ops/repeat_interleave_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1637730Z copying torch/include/ATen/ops/gelu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1638950Z copying torch/include/ATen/ops/adaptive_max_pool1d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1648120Z copying torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1649090Z copying torch/include/ATen/ops/logical_not.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1655980Z copying torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1657170Z copying torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1658270Z copying torch/include/ATen/ops/max_pool1d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1659500Z copying torch/include/ATen/ops/clamp_max_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1670540Z copying torch/include/ATen/ops/cross_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1671690Z copying torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1680340Z copying torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1681310Z copying torch/include/ATen/ops/unbind_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1682350Z copying torch/include/ATen/ops/frac_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1694800Z copying torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1701090Z copying torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1702670Z copying torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1703650Z copying torch/include/ATen/ops/slice_inverse.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1704880Z copying torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1706320Z copying torch/include/ATen/ops/ravel_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1707330Z copying torch/include/ATen/ops/_nested_select_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1709270Z copying torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1710360Z copying torch/include/ATen/ops/floor_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1730990Z copying torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1740630Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1741780Z copying torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1751020Z copying torch/include/ATen/ops/renorm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1759210Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1765650Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1772050Z copying torch/include/ATen/ops/bernoulli_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1778430Z copying torch/include/ATen/ops/cumsum_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1784660Z copying torch/include/ATen/ops/from_file_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1785670Z copying torch/include/ATen/ops/layer_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1787100Z copying torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1788340Z copying torch/include/ATen/ops/gelu_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1789970Z copying torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1810580Z copying torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1811730Z copying torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1813030Z copying torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1814250Z copying torch/include/ATen/ops/allclose_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1815580Z copying torch/include/ATen/ops/special_bessel_j0.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1817330Z copying torch/include/ATen/ops/tensordot_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1830430Z copying torch/include/ATen/ops/_foreach_tanh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1838300Z copying torch/include/ATen/ops/linalg_ldl_factor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1845550Z copying torch/include/ATen/ops/thnn_conv2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1846840Z copying torch/include/ATen/ops/_reshape_alias_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1854010Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1861210Z copying torch/include/ATen/ops/_embedding_bag_forward_only_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1862200Z copying torch/include/ATen/ops/_lu_with_info.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1863940Z copying torch/include/ATen/ops/bincount_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1865020Z copying torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1876820Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1877890Z copying torch/include/ATen/ops/mm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1888320Z copying torch/include/ATen/ops/digamma_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1896650Z copying torch/include/ATen/ops/positive_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1914090Z copying torch/include/ATen/ops/log10_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1915140Z copying torch/include/ATen/ops/remainder_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1916400Z copying torch/include/ATen/ops/bitwise_not_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1917600Z copying torch/include/ATen/ops/_euclidean_dist.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1918870Z copying torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1920200Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1921540Z copying torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1927110Z copying torch/include/ATen/ops/logical_xor_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1928140Z copying torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1929160Z copying torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1930050Z copying torch/include/ATen/ops/resize_as_sparse.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1930920Z copying torch/include/ATen/ops/col2im_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1931840Z copying torch/include/ATen/ops/clamp_max_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1932700Z copying torch/include/ATen/ops/einsum_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1933520Z copying torch/include/ATen/ops/align_tensors.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1934520Z copying torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1935560Z copying torch/include/ATen/ops/mode_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1936460Z copying torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1937480Z copying torch/include/ATen/ops/rnn_tanh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1938860Z copying torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1939910Z copying torch/include/ATen/ops/is_set_to_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1941360Z copying torch/include/ATen/ops/linalg_householder_product_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1942650Z copying torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1944020Z copying torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1945320Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1946740Z copying torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1948100Z copying torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1949410Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1950780Z copying torch/include/ATen/ops/_cast_Byte_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1952360Z copying torch/include/ATen/ops/dstack_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1953470Z copying torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1954650Z copying torch/include/ATen/ops/sign.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1956330Z copying torch/include/ATen/ops/triu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1957310Z copying torch/include/ATen/ops/is_distributed.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1958590Z copying torch/include/ATen/ops/_sparse_softmax.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1959760Z copying torch/include/ATen/ops/unflatten.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1961630Z copying torch/include/ATen/ops/_segment_reduce_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1962630Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1963730Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1965050Z copying torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.1966400Z copying torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2046560Z copying torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2047760Z copying torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2049010Z copying torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2050800Z copying torch/include/ATen/ops/_nested_get_offsets_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2051840Z copying torch/include/ATen/ops/mm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2053570Z copying torch/include/ATen/ops/gru_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2055460Z copying torch/include/ATen/ops/log2_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2056460Z copying torch/include/ATen/ops/_fused_adam_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2058940Z copying torch/include/ATen/ops/one_hot_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2090330Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2096220Z copying torch/include/ATen/ops/as_strided_scatter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2097380Z copying torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2099040Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2100260Z copying torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2101440Z copying torch/include/ATen/ops/new_zeros_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2102820Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2104130Z copying torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2105520Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2106670Z copying torch/include/ATen/ops/tan_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2107890Z copying torch/include/ATen/ops/lu_solve.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2109430Z copying torch/include/ATen/ops/quantized_batch_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2110570Z copying torch/include/ATen/ops/sgn_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2112250Z copying torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2113430Z copying torch/include/ATen/ops/_test_functorch_fallback_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2114420Z copying torch/include/ATen/ops/_fw_primal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2116330Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2117400Z copying torch/include/ATen/ops/scatter_reduce_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2118640Z copying torch/include/ATen/ops/fft_irfftn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2119810Z copying torch/include/ATen/ops/addmm_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2121710Z copying torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2122770Z copying torch/include/ATen/ops/blackman_window_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2123840Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2125710Z copying torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2126690Z copying torch/include/ATen/ops/quantize_per_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2127810Z copying torch/include/ATen/ops/transpose.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2128980Z copying torch/include/ATen/ops/_fused_sgd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2130710Z copying torch/include/ATen/ops/amin_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2131690Z copying torch/include/ATen/ops/acosh_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2132990Z copying torch/include/ATen/ops/_foreach_rsqrt_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2134220Z copying torch/include/ATen/ops/sum_to_size_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2135930Z copying torch/include/ATen/ops/var_mean_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2136960Z copying torch/include/ATen/ops/histc_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2138770Z copying torch/include/ATen/ops/align_tensors_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2139690Z copying torch/include/ATen/ops/diagonal_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2140800Z copying torch/include/ATen/ops/sym_size_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2142210Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2143480Z copying torch/include/ATen/ops/tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2145250Z copying torch/include/ATen/ops/quantile_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2146350Z copying torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2151380Z copying torch/include/ATen/ops/ge_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2152290Z copying torch/include/ATen/ops/triangular_solve_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2153330Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2154450Z copying torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2155390Z copying torch/include/ATen/ops/amax_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2156390Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2157390Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2158290Z copying torch/include/ATen/ops/fft_ifftn_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2159110Z copying torch/include/ATen/ops/log_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2159960Z copying torch/include/ATen/ops/pow_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2160940Z copying torch/include/ATen/ops/_histogramdd_bin_edges_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2162020Z copying torch/include/ATen/ops/q_scale.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2163860Z copying torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2165080Z copying torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2166160Z copying torch/include/ATen/ops/rot90_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2167270Z copying torch/include/ATen/ops/linalg_eig.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2169110Z copying torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2170160Z copying torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2171340Z copying torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2172680Z copying torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2173910Z copying torch/include/ATen/ops/stride_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2175500Z copying torch/include/ATen/ops/cudnn_is_acceptable.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2176480Z copying torch/include/ATen/ops/special_zeta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2177860Z copying torch/include/ATen/ops/avg_pool2d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2179440Z copying torch/include/ATen/ops/renorm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2180610Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2181830Z copying torch/include/ATen/ops/is_coalesced_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2183700Z copying torch/include/ATen/ops/affine_grid_generator_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2184700Z copying torch/include/ATen/ops/_nested_view_from_buffer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2185810Z copying torch/include/ATen/ops/true_divide_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2187060Z copying torch/include/ATen/ops/_linalg_solve_ex.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2188880Z copying torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2190140Z copying torch/include/ATen/ops/histogram_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2191350Z copying torch/include/ATen/ops/linalg_lu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2192460Z copying torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2340250Z copying torch/include/ATen/ops/poisson_nll_loss_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2341330Z copying torch/include/ATen/ops/unique_dim.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2343160Z copying torch/include/ATen/ops/rshift_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2344340Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2345470Z copying torch/include/ATen/ops/unsafe_split_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2346940Z copying torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2348090Z copying torch/include/ATen/ops/dense_dim_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2349890Z copying torch/include/ATen/ops/bitwise_right_shift_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2350960Z copying torch/include/ATen/ops/masked_fill_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2352140Z copying torch/include/ATen/ops/masked_fill_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2353460Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2355410Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2356470Z copying torch/include/ATen/ops/_cast_Byte_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2357960Z copying torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2359010Z copying torch/include/ATen/ops/any.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2360270Z copying torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2361560Z copying torch/include/ATen/ops/convolution_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2363050Z copying torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2364220Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2365580Z copying torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2366870Z copying torch/include/ATen/ops/_reshape_alias_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2368310Z copying torch/include/ATen/ops/_upsample_nearest_exact2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2369760Z copying torch/include/ATen/ops/nll_loss_forward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2370970Z copying torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2372160Z copying torch/include/ATen/ops/linalg_vector_norm_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2374110Z copying torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2375180Z copying torch/include/ATen/ops/contiguous_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2376260Z copying torch/include/ATen/ops/le_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2377500Z copying torch/include/ATen/ops/convolution_overrideable_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2379170Z copying torch/include/ATen/ops/hardtanh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2380240Z copying torch/include/ATen/ops/elu_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2382150Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2383190Z copying torch/include/ATen/ops/elu_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2384250Z copying torch/include/ATen/ops/angle_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2385540Z copying torch/include/ATen/ops/cross_entropy_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2386860Z copying torch/include/ATen/ops/special_gammaincc_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2388160Z copying torch/include/ATen/ops/subtract_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2389600Z copying torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2390840Z copying torch/include/ATen/ops/poisson_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2392350Z copying torch/include/ATen/ops/floor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2393270Z copying torch/include/ATen/ops/retains_grad.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2394510Z copying torch/include/ATen/ops/sspaddmm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2396330Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2397360Z copying torch/include/ATen/ops/index_reduce_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2398620Z copying torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2399870Z copying torch/include/ATen/ops/scatter_add_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2401130Z copying torch/include/ATen/ops/_copy_from.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2402350Z copying torch/include/ATen/ops/narrow_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2404090Z copying torch/include/ATen/ops/flip_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2409970Z copying torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2410940Z copying torch/include/ATen/ops/logical_not_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2411900Z copying torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2412820Z copying torch/include/ATen/ops/mse_loss_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2413710Z copying torch/include/ATen/ops/fractional_max_pool3d_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2414640Z copying torch/include/ATen/ops/mkldnn_linear_backward_input.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2415560Z copying torch/include/ATen/ops/special_logsumexp_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2416460Z copying torch/include/ATen/ops/adaptive_avg_pool1d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2417430Z copying torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2418540Z copying torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2419540Z copying torch/include/ATen/ops/bitwise_or_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2420500Z copying torch/include/ATen/ops/l1_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2421610Z copying torch/include/ATen/ops/geqrf_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2423520Z copying torch/include/ATen/ops/log2_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2424520Z copying torch/include/ATen/ops/isposinf_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2425500Z copying torch/include/ATen/ops/_masked_scale_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2427140Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2428250Z copying torch/include/ATen/ops/reciprocal_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2429490Z copying torch/include/ATen/ops/lcm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2430840Z copying torch/include/ATen/ops/frexp_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2432210Z copying torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2433690Z copying torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2435070Z copying torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2436220Z copying torch/include/ATen/ops/special_xlog1py_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2437500Z copying torch/include/ATen/ops/exp2_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2438860Z copying torch/include/ATen/ops/mean_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2440720Z copying torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2441970Z copying torch/include/ATen/ops/le_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2442890Z copying torch/include/ATen/ops/conv3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2444570Z copying torch/include/ATen/ops/stack_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2445740Z copying torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2446910Z copying torch/include/ATen/ops/special_erfinv.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2448820Z copying torch/include/ATen/ops/var_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2449750Z copying torch/include/ATen/ops/rsqrt_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2451550Z copying torch/include/ATen/ops/_convolution_double_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2452570Z copying torch/include/ATen/ops/polar.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2453800Z copying torch/include/ATen/ops/_softmax_backward_data_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2455020Z copying torch/include/ATen/ops/_make_dual_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2456760Z copying torch/include/ATen/ops/trunc_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2457710Z copying torch/include/ATen/ops/meshgrid_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2458970Z copying torch/include/ATen/ops/slow_conv_transpose2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2460320Z copying torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2461470Z copying torch/include/ATen/ops/silu_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2463010Z copying torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2464300Z copying torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2465450Z copying torch/include/ATen/ops/special_logit.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2466800Z copying torch/include/ATen/ops/affine_grid_generator_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2468020Z copying torch/include/ATen/ops/full_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2469810Z copying torch/include/ATen/ops/lgamma_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2470910Z copying torch/include/ATen/ops/isneginf_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2472180Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2473390Z copying torch/include/ATen/ops/linalg_inv_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2480500Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2481510Z copying torch/include/ATen/ops/index_put_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2482730Z copying torch/include/ATen/ops/data_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2487600Z copying torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2490160Z copying torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2494790Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2496840Z copying torch/include/ATen/ops/div_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2502770Z copying torch/include/ATen/ops/logaddexp_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2504090Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2505260Z copying torch/include/ATen/ops/permute_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2511720Z copying torch/include/ATen/ops/dense_dim.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2512750Z copying torch/include/ATen/ops/xor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2519260Z copying torch/include/ATen/ops/max_unpool2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2520250Z copying torch/include/ATen/ops/linalg_inv_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2526810Z copying torch/include/ATen/ops/_sparse_sparse_matmul.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2528000Z copying torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2529130Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2535240Z copying torch/include/ATen/ops/ge.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2536460Z copying torch/include/ATen/ops/_foreach_clamp_min.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2542620Z copying torch/include/ATen/ops/index_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2545070Z copying torch/include/ATen/ops/tanh_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2550610Z copying torch/include/ATen/ops/cos_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2551850Z copying torch/include/ATen/ops/grid_sampler_3d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2553880Z copying torch/include/ATen/ops/split.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2557720Z copying torch/include/ATen/ops/div.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2558790Z copying torch/include/ATen/ops/msort_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2563210Z copying torch/include/ATen/ops/refine_names_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2566780Z copying torch/include/ATen/ops/t_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2571880Z copying torch/include/ATen/ops/isneginf_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2574450Z copying torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2575740Z copying torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2581400Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2582530Z copying torch/include/ATen/ops/_sparse_mask_projection_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2589360Z copying torch/include/ATen/ops/complex.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2590510Z copying torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2596900Z copying torch/include/ATen/ops/copy_sparse_to_sparse.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2597950Z copying torch/include/ATen/ops/bmm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2599680Z copying torch/include/ATen/ops/_foreach_log_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2605370Z copying torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2606470Z copying torch/include/ATen/ops/logaddexp2_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2614150Z copying torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2615200Z copying torch/include/ATen/ops/softplus_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2622620Z copying torch/include/ATen/ops/log_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2623750Z copying torch/include/ATen/ops/trapz_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2625110Z copying torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2630170Z copying torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2631570Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2638630Z copying torch/include/ATen/ops/arcsin_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2639890Z copying torch/include/ATen/ops/batch_norm_update_stats.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2641640Z copying torch/include/ATen/ops/exp2.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2646180Z copying torch/include/ATen/ops/cosine_embedding_loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2647330Z copying torch/include/ATen/ops/_sparse_sparse_matmul_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2654300Z copying torch/include/ATen/ops/fractional_max_pool2d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2655470Z copying torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2660690Z copying torch/include/ATen/ops/col_indices_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2661830Z copying torch/include/ATen/ops/lgamma_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2663270Z copying torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2669570Z copying torch/include/ATen/ops/pin_memory_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2670850Z copying torch/include/ATen/ops/_foreach_addcdiv_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2677240Z copying torch/include/ATen/ops/linalg_lu_factor_ex_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2678370Z copying torch/include/ATen/ops/special_bessel_j1_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2679680Z copying torch/include/ATen/ops/div_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2685260Z copying torch/include/ATen/ops/_copy_from_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2686280Z copying torch/include/ATen/ops/_neg_view_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2692970Z copying torch/include/ATen/ops/concat_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2695420Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2701360Z copying torch/include/ATen/ops/histogramdd_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2702390Z copying torch/include/ATen/ops/_native_batch_norm_legit.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2703670Z copying torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2709730Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2711010Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2713390Z copying torch/include/ATen/ops/igamma_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2718040Z copying torch/include/ATen/ops/_nested_get_offsets_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2719420Z copying torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2723230Z copying torch/include/ATen/ops/_standard_gamma_grad.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2727230Z copying torch/include/ATen/ops/zero_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2731120Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2732480Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2737320Z copying torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2740870Z copying torch/include/ATen/ops/_foreach_clamp_max_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2745410Z copying torch/include/ATen/ops/pixel_unshuffle.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2746510Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2750390Z copying torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2754280Z copying torch/include/ATen/ops/logcumsumexp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2757490Z copying torch/include/ATen/ops/leaky_relu_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2759430Z copying torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2763070Z copying torch/include/ATen/ops/to_mkldnn_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2767550Z copying torch/include/ATen/ops/upsample_nearest1d_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2771480Z copying torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2775870Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2777020Z copying torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2780350Z copying torch/include/ATen/ops/_is_any_true_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2784270Z copying torch/include/ATen/ops/linalg_tensorinv.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2788290Z copying torch/include/ATen/ops/random.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2789630Z copying torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2793280Z copying torch/include/ATen/ops/exponential.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2797980Z copying torch/include/ATen/ops/gt_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2801110Z copying torch/include/ATen/ops/linalg_det_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2802070Z copying torch/include/ATen/ops/masked_select_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2807130Z copying torch/include/ATen/ops/xlogy_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2809630Z copying torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2814490Z copying torch/include/ATen/ops/cudnn_convolution_transpose_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2815840Z copying torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2822290Z copying torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2823340Z copying torch/include/ATen/ops/_foreach_sqrt_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2829930Z copying torch/include/ATen/ops/atleast_1d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2830950Z copying torch/include/ATen/ops/isin_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2832220Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2839040Z copying torch/include/ATen/ops/_to_sparse_csr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2840110Z copying torch/include/ATen/ops/sinc_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2846500Z copying torch/include/ATen/ops/dist_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2847420Z copying torch/include/ATen/ops/norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2854380Z copying torch/include/ATen/ops/hardtanh_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2855480Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2856700Z copying torch/include/ATen/ops/copysign_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2861630Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2862820Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2869370Z copying torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2870590Z copying torch/include/ATen/ops/_reshape_alias_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2872010Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2879220Z copying torch/include/ATen/ops/histogramdd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2880330Z copying torch/include/ATen/ops/aminmax_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2887610Z copying torch/include/ATen/ops/index_reduce_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2888770Z copying torch/include/ATen/ops/_nested_get_ragged_idx_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2895330Z copying torch/include/ATen/ops/leaky_relu_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2896340Z copying torch/include/ATen/ops/lshift_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2898100Z copying torch/include/ATen/ops/fft_irfft_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2902070Z copying torch/include/ATen/ops/digamma_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2904280Z copying torch/include/ATen/ops/grid_sampler_3d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2909500Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2910520Z copying torch/include/ATen/ops/_sparse_addmm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2913720Z copying torch/include/ATen/ops/gather_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2918200Z copying torch/include/ATen/ops/_has_same_storage_numel_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2919150Z copying torch/include/ATen/ops/_dimI.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2922660Z copying torch/include/ATen/ops/exponential_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2926960Z copying torch/include/ATen/ops/_weight_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2931370Z copying torch/include/ATen/ops/lu_unpack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2934390Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2935780Z copying torch/include/ATen/ops/_foreach_ceil.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2945810Z copying torch/include/ATen/ops/_convert_weight_to_int4pack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2946540Z copying torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2949370Z copying torch/include/ATen/ops/matmul_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2950670Z copying torch/include/ATen/ops/_print_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2957070Z copying torch/include/ATen/ops/to_dense_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2958550Z copying torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2964450Z copying torch/include/ATen/ops/nanmedian_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2965610Z copying torch/include/ATen/ops/quantize_per_channel_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2967110Z copying torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2972270Z copying torch/include/ATen/ops/replication_pad3d_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2973700Z copying torch/include/ATen/ops/ctc_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2980190Z copying torch/include/ATen/ops/argwhere.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2981590Z copying torch/include/ATen/ops/_foreach_tan.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2982440Z copying torch/include/ATen/ops/asin_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2988590Z copying torch/include/ATen/ops/index_add_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2990000Z copying torch/include/ATen/ops/avg_pool2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2996730Z copying torch/include/ATen/ops/bitwise_or.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.2998190Z copying torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3004840Z copying torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3006090Z copying torch/include/ATen/ops/diff_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3007360Z copying torch/include/ATen/ops/fix.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3012070Z copying torch/include/ATen/ops/_standard_gamma_grad_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3014530Z copying torch/include/ATen/ops/special_expit_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3019230Z copying torch/include/ATen/ops/rsub.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3021430Z copying torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3022380Z copying torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3027980Z copying torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3029320Z copying torch/include/ATen/ops/std.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3036020Z copying torch/include/ATen/ops/_is_all_true_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3037390Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3044160Z copying torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3044980Z copying torch/include/ATen/ops/polygamma_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3046560Z copying torch/include/ATen/ops/index_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3053240Z copying torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3058590Z copying torch/include/ATen/ops/_test_optional_floatlist.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3060400Z copying torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3066390Z copying torch/include/ATen/ops/_embedding_bag_forward_only.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3067730Z copying torch/include/ATen/ops/index_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3069050Z copying torch/include/ATen/ops/aminmax.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3075760Z copying torch/include/ATen/ops/_log_softmax_backward_data_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3077210Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3083910Z copying torch/include/ATen/ops/tril_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3085400Z copying torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3091930Z copying torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3092780Z copying torch/include/ATen/ops/fmod_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3094280Z copying torch/include/ATen/ops/randint_like_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3099410Z copying torch/include/ATen/ops/linalg_norm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3100970Z copying torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3107850Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3109200Z copying torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3110640Z copying torch/include/ATen/ops/special_expm1.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3115900Z copying torch/include/ATen/ops/special_erfinv_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3117250Z copying torch/include/ATen/ops/linalg_ldl_solve_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3123380Z copying torch/include/ATen/ops/linalg_qr_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3124730Z copying torch/include/ATen/ops/pad_sequence.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3131470Z copying torch/include/ATen/ops/hardswish.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3132790Z copying torch/include/ATen/ops/geqrf_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3134270Z copying torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3139190Z copying torch/include/ATen/ops/grid_sampler_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3140530Z copying torch/include/ATen/ops/logit_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3146640Z copying torch/include/ATen/ops/ones_like.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3148250Z copying torch/include/ATen/ops/_test_optional_filled_intlist_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3149640Z copying torch/include/ATen/ops/split_with_sizes_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3154460Z copying torch/include/ATen/ops/_test_warn_in_autograd_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3155780Z copying torch/include/ATen/ops/neg_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3162170Z copying torch/include/ATen/ops/isfinite.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3164010Z copying torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3170170Z copying torch/include/ATen/ops/q_per_channel_axis_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3171530Z copying torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3172930Z copying torch/include/ATen/ops/_batch_norm_no_update.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3177550Z copying torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3178970Z copying torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3185560Z copying torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3187190Z copying torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3194260Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3195080Z copying torch/include/ATen/ops/sparse_coo_tensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3196890Z copying torch/include/ATen/ops/_is_zerotensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3202300Z copying torch/include/ATen/ops/xlogy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3203600Z copying torch/include/ATen/ops/is_conj_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3210140Z copying torch/include/ATen/ops/log10_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3211290Z copying torch/include/ATen/ops/_standard_gamma_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3212760Z copying torch/include/ATen/ops/conv2d_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3220410Z copying torch/include/ATen/ops/dequantize_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3225700Z copying torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3227180Z copying torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3228160Z copying torch/include/ATen/ops/_pin_memory.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3235660Z copying torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3237020Z copying torch/include/ATen/ops/gcd_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3243480Z copying torch/include/ATen/ops/_convolution_mode_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3244790Z copying torch/include/ATen/ops/convolution_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3251440Z copying torch/include/ATen/ops/cosine_similarity_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3252850Z copying torch/include/ATen/ops/_shape_as_tensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3253790Z copying torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3257370Z copying torch/include/ATen/ops/isposinf_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3261130Z copying torch/include/ATen/ops/conv_transpose3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3264670Z copying torch/include/ATen/ops/_nested_tensor_from_mask_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3266060Z copying torch/include/ATen/ops/reflection_pad3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3270540Z copying torch/include/ATen/ops/unflatten_dense_tensors_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3273480Z copying torch/include/ATen/ops/_version_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3277870Z copying torch/include/ATen/ops/_pdist_forward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3279380Z copying torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3282720Z copying torch/include/ATen/ops/empty_like_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3287960Z copying torch/include/ATen/ops/uniform.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3291720Z copying torch/include/ATen/ops/grid_sampler_3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3295330Z copying torch/include/ATen/ops/masked_scatter_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3296600Z copying torch/include/ATen/ops/rshift_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3301070Z copying torch/include/ATen/ops/cumprod_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3304320Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3309300Z copying torch/include/ATen/ops/mse_loss_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3310600Z copying torch/include/ATen/ops/diagonal_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3313890Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3318190Z copying torch/include/ATen/ops/avg_pool2d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3321230Z copying torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3322570Z copying torch/include/ATen/ops/sparse_coo_tensor_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3327280Z copying torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3330290Z copying torch/include/ATen/ops/bmm_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3334700Z copying torch/include/ATen/ops/detach_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3336000Z copying torch/include/ATen/ops/set.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3339840Z copying torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3343770Z copying torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3348350Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3349620Z copying torch/include/ATen/ops/silu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3353070Z copying torch/include/ATen/ops/native_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3357490Z copying torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3360420Z copying torch/include/ATen/ops/_add_relu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3362000Z copying torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3367240Z copying torch/include/ATen/ops/replication_pad2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3369430Z copying torch/include/ATen/ops/randperm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3374170Z copying torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3375470Z copying torch/include/ATen/ops/det.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3382510Z copying torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3390150Z copying torch/include/ATen/ops/exp_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3391520Z copying torch/include/ATen/ops/special_modified_bessel_k0_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3392890Z copying torch/include/ATen/ops/_fft_c2r_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3398920Z copying torch/include/ATen/ops/_add_batch_dim.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3400380Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3407000Z copying torch/include/ATen/ops/threshold_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3408340Z copying torch/include/ATen/ops/_foreach_tanh_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3414290Z copying torch/include/ATen/ops/linalg_vander.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3415590Z copying torch/include/ATen/ops/sigmoid_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3416890Z copying torch/include/ATen/ops/mish_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3421770Z copying torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3423240Z copying torch/include/ATen/ops/_has_same_storage_numel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3429470Z copying torch/include/ATen/ops/embedding_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3430780Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3432210Z copying torch/include/ATen/ops/_cast_Double_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3438890Z copying torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3440150Z copying torch/include/ATen/ops/_softmax.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3446920Z copying torch/include/ATen/ops/diagonal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3448270Z copying torch/include/ATen/ops/new_full_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3454220Z copying torch/include/ATen/ops/isposinf.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3455650Z copying torch/include/ATen/ops/new_empty_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3456940Z copying torch/include/ATen/ops/_weight_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3462130Z copying torch/include/ATen/ops/triu_indices_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3463510Z copying torch/include/ATen/ops/upsample_nearest1d_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3469800Z copying torch/include/ATen/ops/special_round.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3471230Z copying torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3472650Z copying torch/include/ATen/ops/_has_same_storage_numel_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3479100Z copying torch/include/ATen/ops/quantile_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3480440Z copying torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3490070Z copying torch/include/ATen/ops/index_select_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3490630Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3494640Z copying torch/include/ATen/ops/pad_sequence_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3496040Z copying torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3497440Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3501940Z copying torch/include/ATen/ops/elu_backward_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3502760Z copying torch/include/ATen/ops/glu_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3510150Z copying torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3511580Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3518060Z copying torch/include/ATen/ops/_fw_primal_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3519430Z copying torch/include/ATen/ops/sym_size.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3520910Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3525650Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3526990Z copying torch/include/ATen/ops/hardsigmoid_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3533220Z copying torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3534730Z copying torch/include/ATen/ops/batch_norm_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3535490Z copying torch/include/ATen/ops/row_indices_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3542600Z copying torch/include/ATen/ops/batch_norm_backward_elemt.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3543910Z copying torch/include/ATen/ops/slow_conv3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3550610Z copying torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3558080Z copying torch/include/ATen/ops/special_bessel_j1_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3559330Z copying torch/include/ATen/ops/t_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3560640Z copying torch/include/ATen/ops/det_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3565670Z copying torch/include/ATen/ops/_to_sparse_bsr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3567240Z copying torch/include/ATen/ops/randperm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3573550Z copying torch/include/ATen/ops/expand_copy_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3575010Z copying torch/include/ATen/ops/_fft_c2r.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3575720Z copying torch/include/ATen/ops/sqrt_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3581180Z copying torch/include/ATen/ops/cosine_similarity.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3582790Z copying torch/include/ATen/ops/_foreach_add_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3589080Z copying torch/include/ATen/ops/nonzero_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3590600Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3597520Z copying torch/include/ATen/ops/sparse_csc_tensor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3599290Z copying torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3600890Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3602470Z copying torch/include/ATen/ops/q_per_channel_axis_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3605880Z copying torch/include/ATen/ops/logdet_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3608870Z copying torch/include/ATen/ops/take_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3610310Z copying torch/include/ATen/ops/miopen_rnn_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3615340Z copying torch/include/ATen/ops/minimum_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3616910Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3623640Z copying torch/include/ATen/ops/greater_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3625140Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3626540Z copying torch/include/ATen/ops/sparse_resize_and_clear_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3631780Z copying torch/include/ATen/ops/prod_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3633120Z copying torch/include/ATen/ops/tril_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3639440Z copying torch/include/ATen/ops/miopen_depthwise_convolution.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3640820Z copying torch/include/ATen/ops/_functional_assert_async_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3647320Z copying torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3648100Z copying torch/include/ATen/ops/_is_any_true_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3649710Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3655100Z copying torch/include/ATen/ops/_fused_adam_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3655900Z copying torch/include/ATen/ops/max_unpool3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3662800Z copying torch/include/ATen/ops/linalg_pinv_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3664200Z copying torch/include/ATen/ops/_cast_Half_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3671080Z copying torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3671950Z copying torch/include/ATen/ops/native_batch_norm_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3673440Z copying torch/include/ATen/ops/unique_dim_consecutive_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3679490Z copying torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3680820Z copying torch/include/ATen/ops/col2im_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3688110Z copying torch/include/ATen/ops/replication_pad2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3689600Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3690500Z copying torch/include/ATen/ops/crow_indices_copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3695460Z copying torch/include/ATen/ops/cosh_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3696900Z copying torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3702810Z copying torch/include/ATen/ops/threshold_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3704710Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3706010Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3712710Z copying torch/include/ATen/ops/_foreach_exp_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3720960Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3722390Z copying torch/include/ATen/ops/binary_cross_entropy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3729320Z copying torch/include/ATen/ops/_softmax_backward_data_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3730650Z copying torch/include/ATen/ops/log_softmax_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3732160Z copying torch/include/ATen/ops/special_modified_bessel_i0_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3737190Z copying torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3738080Z copying torch/include/ATen/ops/_to_sparse_csr_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3745050Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3745910Z copying torch/include/ATen/ops/lu_unpack_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3747540Z copying torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3752660Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3754040Z copying torch/include/ATen/ops/is_pinned_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3757970Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3761310Z copying torch/include/ATen/ops/isposinf_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3762980Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3766880Z copying torch/include/ATen/ops/_cslt_compress_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3770590Z copying torch/include/ATen/ops/slow_conv_dilated3d_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3774420Z copying torch/include/ATen/ops/_foreach_abs.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3775930Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3780250Z copying torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3783100Z copying torch/include/ATen/ops/histc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3787770Z copying torch/include/ATen/ops/upsample_trilinear3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3789110Z copying torch/include/ATen/ops/_sparse_sum_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3793110Z copying torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3796830Z copying torch/include/ATen/ops/relu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3800820Z copying torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3801630Z copying torch/include/ATen/ops/linalg_matrix_exp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3806290Z copying torch/include/ATen/ops/_index_put_impl_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3809510Z copying torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3815040Z copying torch/include/ATen/ops/_scaled_mm_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3816950Z copying torch/include/ATen/ops/_weight_norm_interface_backward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3822760Z copying torch/include/ATen/ops/trapz_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3824150Z copying torch/include/ATen/ops/block_diag_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3825630Z copying torch/include/ATen/ops/logical_or_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3832910Z copying torch/include/ATen/ops/copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3834530Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3840770Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3842090Z copying torch/include/ATen/ops/cumsum_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3843470Z copying torch/include/ATen/ops/special_entr_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3848970Z copying torch/include/ATen/ops/fft_ifftshift.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3850300Z copying torch/include/ATen/ops/batch_norm_elemt_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3856560Z copying torch/include/ATen/ops/_assert_async.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3858020Z copying torch/include/ATen/ops/q_zero_point_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3859410Z copying torch/include/ATen/ops/special_zeta_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3865160Z copying torch/include/ATen/ops/_values_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3866550Z copying torch/include/ATen/ops/is_same_size.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3873280Z copying torch/include/ATen/ops/atan2.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3874970Z copying torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3880970Z copying torch/include/ATen/ops/diagonal_scatter_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3882620Z copying torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3889130Z copying torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3890510Z copying torch/include/ATen/ops/isnan_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3898350Z copying torch/include/ATen/ops/scaled_dot_product_attention_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3899680Z copying torch/include/ATen/ops/bitwise_left_shift_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3901010Z copying torch/include/ATen/ops/l1_loss_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3906010Z copying torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3907440Z copying torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3914080Z copying torch/include/ATen/ops/cholesky_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3914980Z copying torch/include/ATen/ops/nuclear_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3916490Z copying torch/include/ATen/ops/lift_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3921350Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3922760Z copying torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3928580Z copying torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3930110Z copying torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3935890Z copying torch/include/ATen/ops/and_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3937610Z copying torch/include/ATen/ops/select.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3944160Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3945640Z copying torch/include/ATen/ops/true_divide.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3947070Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3952080Z copying torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3954010Z copying torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3960260Z copying torch/include/ATen/ops/nonzero_numpy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3961750Z copying torch/include/ATen/ops/special_sinc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3962630Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3967470Z copying torch/include/ATen/ops/_foreach_cos_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3970200Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3975760Z copying torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3977510Z copying torch/include/ATen/ops/_pdist_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3978790Z copying torch/include/ATen/ops/cos_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3985050Z copying torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3986570Z copying torch/include/ATen/ops/tan_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3993310Z copying torch/include/ATen/ops/ones_like_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.3994600Z copying torch/include/ATen/ops/_conj_physical_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4000250Z copying torch/include/ATen/ops/nll_loss2d_forward_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4001970Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4003300Z copying torch/include/ATen/ops/_to_copy_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4008280Z copying torch/include/ATen/ops/cos_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4010630Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4015890Z copying torch/include/ATen/ops/mkldnn_convolution_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4017350Z copying torch/include/ATen/ops/_linalg_eigh.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4022780Z copying torch/include/ATen/ops/_print_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4024790Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4026340Z copying torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4032780Z copying torch/include/ATen/ops/cat_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4034060Z copying torch/include/ATen/ops/ne_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4039970Z copying torch/include/ATen/ops/expand_as_native.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4041550Z copying torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4042270Z copying torch/include/ATen/ops/complex_mps_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4049000Z copying torch/include/ATen/ops/linalg_ldl_solve_meta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4057960Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops 2025-01-24T02:56:07.4059310Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/hip 2025-01-24T02:56:07.4059880Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/hip/impl 2025-01-24T02:56:07.4060460Z copying torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/hip/impl 2025-01-24T02:56:07.4065370Z copying torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/hip/impl 2025-01-24T02:56:07.4067510Z copying torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/hip/impl 2025-01-24T02:56:07.4068640Z copying torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/hip/impl 2025-01-24T02:56:07.4073110Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps 2025-01-24T02:56:07.4073540Z copying torch/include/ATen/mps/MPSProfiler.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps 2025-01-24T02:56:07.4075620Z copying torch/include/ATen/mps/EmptyTensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps 2025-01-24T02:56:07.4076940Z copying torch/include/ATen/mps/MPSAllocator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps 2025-01-24T02:56:07.4081070Z copying torch/include/ATen/mps/MPSGuardImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps 2025-01-24T02:56:07.4082440Z copying torch/include/ATen/mps/MPSHooks.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps 2025-01-24T02:56:07.4083750Z copying torch/include/ATen/mps/MPSEvent.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps 2025-01-24T02:56:07.4090150Z copying torch/include/ATen/mps/MPSDevice.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps 2025-01-24T02:56:07.4098290Z copying torch/include/ATen/mps/MPSStream.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps 2025-01-24T02:56:07.4099770Z copying torch/include/ATen/mps/IndexKernels.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps 2025-01-24T02:56:07.4101200Z copying torch/include/ATen/mps/MPSAllocatorInterface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps 2025-01-24T02:56:07.4107440Z copying torch/include/ATen/mps/MPSGeneratorImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps 2025-01-24T02:56:07.4108720Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/miopen 2025-01-24T02:56:07.4109140Z copying torch/include/ATen/miopen/Utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/miopen 2025-01-24T02:56:07.4115360Z copying torch/include/ATen/miopen/Types.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/miopen 2025-01-24T02:56:07.4116710Z copying torch/include/ATen/miopen/Descriptors.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/miopen 2025-01-24T02:56:07.4118060Z copying torch/include/ATen/miopen/miopen-wrapper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/miopen 2025-01-24T02:56:07.4124300Z copying torch/include/ATen/miopen/Exceptions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/miopen 2025-01-24T02:56:07.4125330Z copying torch/include/ATen/miopen/Handle.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/miopen 2025-01-24T02:56:07.4126810Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail 2025-01-24T02:56:07.4127350Z copying torch/include/ATen/detail/PrivateUse1HooksInterface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail 2025-01-24T02:56:07.4131920Z copying torch/include/ATen/detail/AcceleratorHooksInterface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail 2025-01-24T02:56:07.4133720Z copying torch/include/ATen/detail/CUDAHooksInterface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail 2025-01-24T02:56:07.4139800Z copying torch/include/ATen/detail/MAIAHooksInterface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail 2025-01-24T02:56:07.4140720Z copying torch/include/ATen/detail/XPUHooksInterface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail 2025-01-24T02:56:07.4142270Z copying torch/include/ATen/detail/FunctionTraits.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail 2025-01-24T02:56:07.4147000Z copying torch/include/ATen/detail/HIPHooksInterface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail 2025-01-24T02:56:07.4148840Z copying torch/include/ATen/detail/MPSHooksInterface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail 2025-01-24T02:56:07.4154870Z copying torch/include/ATen/detail/MTIAHooksInterface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail 2025-01-24T02:56:07.4156630Z copying torch/include/ATen/detail/HPUHooksInterface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail 2025-01-24T02:56:07.4161980Z copying torch/include/ATen/detail/IPUHooksInterface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail 2025-01-24T02:56:07.4164020Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4164510Z copying torch/include/ATen/native/CompositeRandomAccessor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4166190Z copying torch/include/ATen/native/MathBitsFallback.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4171860Z copying torch/include/ATen/native/TensorTransformations.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4173180Z copying torch/include/ATen/native/ComplexHelper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4179910Z copying torch/include/ATen/native/ConvUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4181490Z copying torch/include/ATen/native/Normalization.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4187250Z copying torch/include/ATen/native/ReductionType.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4188580Z copying torch/include/ATen/native/Repeat.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4189870Z copying torch/include/ATen/native/layer_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4195800Z copying torch/include/ATen/native/GridSampler.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4197150Z copying torch/include/ATen/native/TriangularOpsUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4203790Z copying torch/include/ATen/native/UnfoldBackward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4204950Z copying torch/include/ATen/native/batch_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4206290Z copying torch/include/ATen/native/Unfold3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4212170Z copying torch/include/ATen/native/Fill.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4220250Z copying torch/include/ATen/native/LinearAlgebra.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4221600Z copying torch/include/ATen/native/RangeFactories.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4222360Z copying torch/include/ATen/native/RNN.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4227140Z copying torch/include/ATen/native/IndexKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4228710Z copying torch/include/ATen/native/Pool.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4235300Z copying torch/include/ATen/native/Cross.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4236740Z copying torch/include/ATen/native/im2col.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4243240Z copying torch/include/ATen/native/TransposeType.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4244700Z copying torch/include/ATen/native/DispatchStub.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4246390Z copying torch/include/ATen/native/Unfold2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4252530Z copying torch/include/ATen/native/Distance.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4253930Z copying torch/include/ATen/native/FunctionOfAMatrixUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4258040Z copying torch/include/ATen/native/Distributions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4261460Z copying torch/include/ATen/native/MaxPooling.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4265270Z copying torch/include/ATen/native/Gelu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4266710Z copying torch/include/ATen/native/SparseTensorUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4270340Z copying torch/include/ATen/native/CPUFallback.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4273430Z copying torch/include/ATen/native/FusedAdagrad.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4277750Z copying torch/include/ATen/native/GridSamplerUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4279070Z copying torch/include/ATen/native/TopKImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4282890Z copying torch/include/ATen/native/TensorAdvancedIndexingUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4286550Z copying torch/include/ATen/native/DilatedConvolutionUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4291450Z copying torch/include/ATen/native/ForeachUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4294030Z copying torch/include/ATen/native/SobolEngineOpsUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4295410Z copying torch/include/ATen/native/ReduceAllOps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4301810Z copying torch/include/ATen/native/Lerp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4303200Z copying torch/include/ATen/native/ReduceOps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4309990Z copying torch/include/ATen/native/TensorAdvancedIndexing.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4311400Z copying torch/include/ATen/native/UnaryOps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4317610Z copying torch/include/ATen/native/SortingUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4319080Z copying torch/include/ATen/native/MathBitFallThroughLists.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4320520Z copying torch/include/ATen/native/StridedRandomAccessor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4325500Z copying torch/include/ATen/native/TensorShape.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4327280Z copying torch/include/ATen/native/IndexingUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4333140Z copying torch/include/ATen/native/UpSample.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4334800Z copying torch/include/ATen/native/ResizeCommon.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4335700Z copying torch/include/ATen/native/SharedReduceOps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4341260Z copying torch/include/ATen/native/Resize.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4342680Z copying torch/include/ATen/native/SpectralOpsUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4349250Z copying torch/include/ATen/native/Sorting.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4350590Z copying torch/include/ATen/native/NonSymbolicBC.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4356400Z copying torch/include/ATen/native/TensorProperties.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4358130Z copying torch/include/ATen/native/BucketizationUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4359460Z copying torch/include/ATen/native/vol2col.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4365410Z copying torch/include/ATen/native/LossMulti.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4366910Z copying torch/include/ATen/native/NonEmptyUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4373460Z copying torch/include/ATen/native/TensorDimApply.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4374820Z copying torch/include/ATen/native/verbose_wrapper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4382090Z copying torch/include/ATen/native/AdaptivePooling.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4383630Z copying torch/include/ATen/native/ConvolutionMM3d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4385040Z copying torch/include/ATen/native/group_norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4390740Z copying torch/include/ATen/native/Histogram.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4391610Z copying torch/include/ATen/native/Activation.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4398410Z copying torch/include/ATen/native/Math.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4400860Z copying torch/include/ATen/native/FusedAdam.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4402240Z copying torch/include/ATen/native/ScatterGatherChecks.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4406590Z copying torch/include/ATen/native/CPUBlas.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4407970Z copying torch/include/ATen/native/CompositeRandomAccessorCommon.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4414220Z copying torch/include/ATen/native/BatchLinearAlgebra.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4415630Z copying torch/include/ATen/native/AmpKernels.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4417070Z copying torch/include/ATen/native/DistributionTemplates.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4421700Z copying torch/include/ATen/native/TensorIterator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4423290Z copying torch/include/ATen/native/TensorConversions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4430160Z copying torch/include/ATen/native/FractionalMaxPooling.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4431630Z copying torch/include/ATen/native/ReduceOpsUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4438650Z copying torch/include/ATen/native/TensorFactories.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4440060Z copying torch/include/ATen/native/PointwiseOps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4446660Z copying torch/include/ATen/native/BinaryOps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4447930Z copying torch/include/ATen/native/Pow.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4454410Z copying torch/include/ATen/native/EmbeddingBag.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4455990Z copying torch/include/ATen/native/im2col_shape_check.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4457350Z copying torch/include/ATen/native/SegmentReduce.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4463080Z copying torch/include/ATen/native/FusedSGD.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4464990Z copying torch/include/ATen/native/Padding.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4470840Z copying torch/include/ATen/native/TensorCompare.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4472270Z copying torch/include/ATen/native/PixelShuffle.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4473950Z copying torch/include/ATen/native/LinearAlgebraUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4478590Z copying torch/include/ATen/native/TypeProperties.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4479900Z copying torch/include/ATen/native/Copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4482850Z copying torch/include/ATen/native/CanUse32BitIndexMath.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4488280Z copying torch/include/ATen/native/TensorIteratorDynamicCasting.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native 2025-01-24T02:56:07.4489540Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4490040Z copying torch/include/ATen/native/cpu/IsContiguous.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4496160Z copying torch/include/ATen/native/cpu/zmath.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4497630Z copying torch/include/ATen/native/cpu/ReduceUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4504720Z copying torch/include/ATen/native/cpu/mixed_data_type.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4506250Z copying torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4507090Z copying torch/include/ATen/native/cpu/utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4513030Z copying torch/include/ATen/native/cpu/int_mm_kernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4514440Z copying torch/include/ATen/native/cpu/SampledAddmmKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4521220Z copying torch/include/ATen/native/cpu/Gelu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4522620Z copying torch/include/ATen/native/cpu/moments_utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4523630Z copying torch/include/ATen/native/cpu/ChannelShuffleKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4529480Z copying torch/include/ATen/native/cpu/SpmmReduceKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4530850Z copying torch/include/ATen/native/cpu/GridSamplerKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4538070Z copying torch/include/ATen/native/cpu/SerialStackImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4539440Z copying torch/include/ATen/native/cpu/Intrinsics.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4540360Z copying torch/include/ATen/native/cpu/LogAddExp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4545460Z copying torch/include/ATen/native/cpu/WeightNormKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4552790Z copying torch/include/ATen/native/cpu/MaxUnpoolKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4554880Z copying torch/include/ATen/native/cpu/SoftmaxKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4555720Z copying torch/include/ATen/native/cpu/AtomicAddFloat.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4563410Z copying torch/include/ATen/native/cpu/Reduce.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4564820Z copying torch/include/ATen/native/cpu/CatKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4572520Z copying torch/include/ATen/native/cpu/StackKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4574030Z copying torch/include/ATen/native/cpu/DepthwiseConvKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4575460Z copying torch/include/ATen/native/cpu/DistributionTemplates.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4581510Z copying torch/include/ATen/native/cpu/PixelShuffleKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4582460Z copying torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4584320Z copying torch/include/ATen/native/cpu/IndexKernelUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4589150Z copying torch/include/ATen/native/cpu/avx_mathfun.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4590640Z copying torch/include/ATen/native/cpu/CopyKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4596670Z copying torch/include/ATen/native/cpu/Loops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu 2025-01-24T02:56:07.4598570Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4599160Z copying torch/include/ATen/native/cuda/CompositeRandomAccessor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4600750Z copying torch/include/ATen/native/cuda/MiscUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4604770Z copying torch/include/ATen/native/cuda/GridSampler.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4605650Z copying torch/include/ATen/native/cuda/CuFFTPlanCache.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4613060Z copying torch/include/ATen/native/cuda/RowwiseScaledMM.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4614460Z copying torch/include/ATen/native/cuda/ScanKernels.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4621150Z copying torch/include/ATen/native/cuda/IndexKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4622580Z copying torch/include/ATen/native/cuda/Distributions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4623990Z copying torch/include/ATen/native/cuda/BinaryInternal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4628440Z copying torch/include/ATen/native/cuda/CuFFTUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4629830Z copying torch/include/ATen/native/cuda/ReduceOps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4634990Z copying torch/include/ATen/native/cuda/TensorTopK.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4637960Z copying torch/include/ATen/native/cuda/TensorModeKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4643200Z copying torch/include/ATen/native/cuda/thread_constants.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4644540Z copying torch/include/ATen/native/cuda/Resize.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4646330Z copying torch/include/ATen/native/cuda/Sorting.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4652140Z copying torch/include/ATen/native/cuda/Activation.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4653500Z copying torch/include/ATen/native/cuda/Sort.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4656740Z copying torch/include/ATen/native/cuda/DistributionTemplates.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4661820Z copying torch/include/ATen/native/cuda/jit_utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4664210Z copying torch/include/ATen/native/cuda/SortStable.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4665610Z copying torch/include/ATen/native/cuda/LaunchUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4671800Z copying torch/include/ATen/native/cuda/Copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4673210Z copying torch/include/ATen/native/cuda/Normalization.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4679330Z copying torch/include/ATen/native/cuda/SortingRadixSelect.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4681110Z copying torch/include/ATen/native/cuda/block_reduce.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4687260Z copying torch/include/ATen/native/cuda/TensorModeKernel.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4689020Z copying torch/include/ATen/native/cuda/MemoryAccess.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4690850Z copying torch/include/ATen/native/cuda/CUDAJitLoops.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4694060Z copying torch/include/ATen/native/cuda/im2col.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4695910Z copying torch/include/ATen/native/cuda/SortUtils.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4702640Z copying torch/include/ATen/native/cuda/DeviceSqrt.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4704210Z copying torch/include/ATen/native/cuda/UpSample.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4710480Z copying torch/include/ATen/native/cuda/Randperm.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4711980Z copying torch/include/ATen/native/cuda/vol2col.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4718260Z copying torch/include/ATen/native/cuda/Pow.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4719200Z copying torch/include/ATen/native/cuda/reduction_template.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4726710Z copying torch/include/ATen/native/cuda/fused_adamw_impl.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4728050Z copying torch/include/ATen/native/cuda/Math.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4733680Z copying torch/include/ATen/native/cuda/SortingCommon.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4735130Z copying torch/include/ATen/native/cuda/ScanUtils.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4736510Z copying torch/include/ATen/native/cuda/MultiTensorApply.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4741710Z copying torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4743480Z copying torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4748790Z copying torch/include/ATen/native/cuda/fused_adam_utils.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4750810Z copying torch/include/ATen/native/cuda/JitLoops.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4752600Z copying torch/include/ATen/native/cuda/KernelUtils.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4760600Z copying torch/include/ATen/native/cuda/ForeachFunctors.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4762030Z copying torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4763760Z copying torch/include/ATen/native/cuda/Loops.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4767780Z copying torch/include/ATen/native/cuda/UniqueCub.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4769340Z copying torch/include/ATen/native/cuda/CUDALoops.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4771320Z copying torch/include/ATen/native/cuda/GridSampler.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4772740Z copying torch/include/ATen/native/cuda/PersistentSoftmax.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4777170Z copying torch/include/ATen/native/cuda/Reduce.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4778690Z copying torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4784230Z copying torch/include/ATen/native/cuda/fused_adam_impl.cuh -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda 2025-01-24T02:56:07.4786700Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/hip 2025-01-24T02:56:07.4787140Z copying torch/include/ATen/native/hip/ck_types.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/hip 2025-01-24T02:56:07.4791650Z copying torch/include/ATen/native/hip/ck_bgemm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/hip 2025-01-24T02:56:07.4793430Z copying torch/include/ATen/native/hip/ck_gemm_template.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/hip 2025-01-24T02:56:07.4795190Z copying torch/include/ATen/native/hip/ck_gemm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/hip 2025-01-24T02:56:07.4801160Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/kleidiai 2025-01-24T02:56:07.4801640Z copying torch/include/ATen/native/kleidiai/kai_pack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/kleidiai 2025-01-24T02:56:07.4803280Z copying torch/include/ATen/native/kleidiai/kai_ukernel_interface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/kleidiai 2025-01-24T02:56:07.4809290Z copying torch/include/ATen/native/kleidiai/kai_kernels.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/kleidiai 2025-01-24T02:56:07.4810450Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mps 2025-01-24T02:56:07.4810970Z copying torch/include/ATen/native/mps/MetalShaderLibrary.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mps 2025-01-24T02:56:07.4817040Z copying torch/include/ATen/native/mps/TensorFactory.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mps 2025-01-24T02:56:07.4818490Z copying torch/include/ATen/native/mps/MPSGraphSonomaOps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mps 2025-01-24T02:56:07.4819890Z copying torch/include/ATen/native/mps/MPSGraphVenturaOps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mps 2025-01-24T02:56:07.4825020Z copying torch/include/ATen/native/mps/MPSGraphSequoiaOps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mps 2025-01-24T02:56:07.4826800Z copying torch/include/ATen/native/mps/OperationUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mps 2025-01-24T02:56:07.4832590Z copying torch/include/ATen/native/mps/Copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mps 2025-01-24T02:56:07.4834480Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mkldnn 2025-01-24T02:56:07.4834790Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mkldnn/xpu 2025-01-24T02:56:07.4835410Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mkldnn/xpu/detail 2025-01-24T02:56:07.4836280Z copying torch/include/ATen/native/mkldnn/xpu/detail/Utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mkldnn/xpu/detail 2025-01-24T02:56:07.4837950Z copying torch/include/ATen/native/mkldnn/xpu/detail/Attr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mkldnn/xpu/detail 2025-01-24T02:56:07.4842440Z copying torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mkldnn/xpu/detail 2025-01-24T02:56:07.4843470Z copying torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mkldnn/xpu/detail 2025-01-24T02:56:07.4849700Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/nested 2025-01-24T02:56:07.4850220Z copying torch/include/ATen/native/nested/NestedTensorUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/nested 2025-01-24T02:56:07.4852280Z copying torch/include/ATen/native/nested/NestedTensorTransformerUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/nested 2025-01-24T02:56:07.4857280Z copying torch/include/ATen/native/nested/NestedTensorMath.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/nested 2025-01-24T02:56:07.4858800Z copying torch/include/ATen/native/nested/NestedTensorBinaryOps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/nested 2025-01-24T02:56:07.4859810Z copying torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/nested 2025-01-24T02:56:07.4865820Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized 2025-01-24T02:56:07.4866400Z copying torch/include/ATen/native/quantized/ConvUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized 2025-01-24T02:56:07.4867880Z copying torch/include/ATen/native/quantized/AffineQuantizer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized 2025-01-24T02:56:07.4871600Z copying torch/include/ATen/native/quantized/IndexKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized 2025-01-24T02:56:07.4875110Z copying torch/include/ATen/native/quantized/library.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized 2025-01-24T02:56:07.4876740Z copying torch/include/ATen/native/quantized/AffineQuantizerBase.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized 2025-01-24T02:56:07.4880780Z copying torch/include/ATen/native/quantized/FakeQuantAffine.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized 2025-01-24T02:56:07.4888780Z copying torch/include/ATen/native/quantized/PackedParams.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized 2025-01-24T02:56:07.4889750Z copying torch/include/ATen/native/quantized/Copy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized 2025-01-24T02:56:07.4893050Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:07.4893620Z copying torch/include/ATen/native/quantized/cpu/XnnpackUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:07.4898260Z copying torch/include/ATen/native/quantized/cpu/fbgemm_utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:07.4899690Z copying torch/include/ATen/native/quantized/cpu/init_qnnpack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:07.4902780Z copying torch/include/ATen/native/quantized/cpu/conv_serialization.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:07.4908640Z copying torch/include/ATen/native/quantized/cpu/qlinear.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:07.4911820Z copying torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:07.4913100Z copying torch/include/ATen/native/quantized/cpu/qembeddingbag.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:07.4915670Z copying torch/include/ATen/native/quantized/cpu/QnnpackUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:07.4916740Z copying torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:07.4918360Z copying torch/include/ATen/native/quantized/cpu/OnednnUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:07.4919940Z copying torch/include/ATen/native/quantized/cpu/QuantUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:07.4921480Z copying torch/include/ATen/native/quantized/cpu/RuyUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:07.4923020Z copying torch/include/ATen/native/quantized/cpu/qconv.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:07.4925320Z copying torch/include/ATen/native/quantized/cpu/BinaryOps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:07.4926930Z copying torch/include/ATen/native/quantized/cpu/QuantizedOps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:07.4932750Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/transformers 2025-01-24T02:56:07.4933360Z copying torch/include/ATen/native/transformers/attention.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/transformers 2025-01-24T02:56:07.4934850Z copying torch/include/ATen/native/transformers/sdp_utils_cpp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/transformers 2025-01-24T02:56:07.4942400Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/utils 2025-01-24T02:56:07.4942880Z copying torch/include/ATen/native/utils/ParamUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/utils 2025-01-24T02:56:07.4944550Z copying torch/include/ATen/native/utils/ParamsHash.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/utils 2025-01-24T02:56:07.4945420Z copying torch/include/ATen/native/utils/Factory.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/utils 2025-01-24T02:56:07.4947760Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/quantized 2025-01-24T02:56:07.4948230Z copying torch/include/ATen/quantized/QTensorImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/quantized 2025-01-24T02:56:07.4952510Z copying torch/include/ATen/quantized/Quantizer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/quantized 2025-01-24T02:56:07.4953750Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/xpu 2025-01-24T02:56:07.4954140Z copying torch/include/ATen/xpu/XPUEvent.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/xpu 2025-01-24T02:56:07.4955850Z copying torch/include/ATen/xpu/XPUDevice.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/xpu 2025-01-24T02:56:07.4957730Z copying torch/include/ATen/xpu/PinnedMemoryAllocator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/xpu 2025-01-24T02:56:07.4961400Z copying torch/include/ATen/xpu/CachingHostAllocator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/xpu 2025-01-24T02:56:07.4963040Z copying torch/include/ATen/xpu/XPUGeneratorImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/xpu 2025-01-24T02:56:07.4967960Z copying torch/include/ATen/xpu/XPUContext.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/xpu 2025-01-24T02:56:07.4970420Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/xpu/detail 2025-01-24T02:56:07.4970870Z copying torch/include/ATen/xpu/detail/XPUHooks.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/xpu/detail 2025-01-24T02:56:07.4976110Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/caffe2 2025-01-24T02:56:07.4976420Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/caffe2/serialize 2025-01-24T02:56:07.4977340Z copying torch/include/caffe2/serialize/in_memory_adapter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/caffe2/serialize 2025-01-24T02:56:07.4978760Z copying torch/include/caffe2/serialize/read_adapter_interface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/caffe2/serialize 2025-01-24T02:56:07.4980090Z copying torch/include/caffe2/serialize/crc_alt.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/caffe2/serialize 2025-01-24T02:56:07.4985620Z copying torch/include/caffe2/serialize/versions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/caffe2/serialize 2025-01-24T02:56:07.4987050Z copying torch/include/caffe2/serialize/inline_container.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/caffe2/serialize 2025-01-24T02:56:07.4994190Z copying torch/include/caffe2/serialize/file_adapter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/caffe2/serialize 2025-01-24T02:56:07.4995670Z copying torch/include/caffe2/serialize/istream_adapter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/caffe2/serialize 2025-01-24T02:56:07.5002600Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10 2025-01-24T02:56:07.5002910Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/macros 2025-01-24T02:56:07.5003670Z copying torch/include/c10/macros/cmake_macros.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/macros 2025-01-24T02:56:07.5007900Z copying torch/include/c10/macros/Export.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/macros 2025-01-24T02:56:07.5008290Z copying torch/include/c10/macros/Macros.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/macros 2025-01-24T02:56:07.5010140Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5010840Z copying torch/include/c10/core/RefcountedDeleter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5012630Z copying torch/include/c10/core/QEngine.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5013940Z copying torch/include/c10/core/TensorOptions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5018150Z copying torch/include/c10/core/SymFloat.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5019950Z copying torch/include/c10/core/GradMode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5025860Z copying torch/include/c10/core/Device.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5027620Z copying torch/include/c10/core/CPUAllocator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5029420Z copying torch/include/c10/core/DefaultDtype.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5035660Z copying torch/include/c10/core/DefaultTensorOptions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5036930Z copying torch/include/c10/core/alignment.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5040490Z copying torch/include/c10/core/Event.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5044720Z copying torch/include/c10/core/Backend.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5048670Z copying torch/include/c10/core/CompileTimeFunctionPointer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5054630Z copying torch/include/c10/core/DeviceArray.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5057680Z copying torch/include/c10/core/PyHandleCache.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5062710Z copying torch/include/c10/core/ConstantSymNodeImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5064270Z copying torch/include/c10/core/WrapDimMinimal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5066400Z copying torch/include/c10/core/QScheme.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5070860Z copying torch/include/c10/core/SafePyObject.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5072180Z copying torch/include/c10/core/Stream.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5075840Z copying torch/include/c10/core/UndefinedTensorImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5080310Z copying torch/include/c10/core/Scalar.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5085470Z copying torch/include/c10/core/AutogradState.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5088020Z copying torch/include/c10/core/SymIntArrayRef.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5088850Z copying torch/include/c10/core/thread_pool.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5095370Z copying torch/include/c10/core/CopyBytes.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5096740Z copying torch/include/c10/core/SymNodeImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5103110Z copying torch/include/c10/core/StreamGuard.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5105550Z copying torch/include/c10/core/DynamicCast.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5108040Z copying torch/include/c10/core/Layout.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5110610Z copying torch/include/c10/core/GeneratorImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5111550Z copying torch/include/c10/core/DispatchKeySet.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5113250Z copying torch/include/c10/core/Allocator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5118950Z copying torch/include/c10/core/TensorImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5293480Z copying torch/include/c10/core/Contiguity.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5294750Z copying torch/include/c10/core/ScalarType.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5296240Z copying torch/include/c10/core/Storage.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5297560Z copying torch/include/c10/core/DeviceType.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5298630Z copying torch/include/c10/core/DeviceGuard.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5300110Z copying torch/include/c10/core/StorageImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5301440Z copying torch/include/c10/core/SymbolicShapeMeta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5302540Z copying torch/include/c10/core/MemoryFormat.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5304090Z copying torch/include/c10/core/SymBool.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5305370Z copying torch/include/c10/core/DispatchKey.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5306890Z copying torch/include/c10/core/ScalarTypeToTypeMeta.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5308330Z copying torch/include/c10/core/InferenceMode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5309060Z copying torch/include/c10/core/SymInt.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5311090Z copying torch/include/c10/core/OptionalRef.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5312080Z copying torch/include/c10/core/CachingDeviceAllocator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core 2025-01-24T02:56:07.5313680Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing 2025-01-24T02:56:07.5314170Z copying torch/include/ATen/core/boxing/KernelFunction.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing 2025-01-24T02:56:07.5315790Z copying torch/include/ATen/core/boxing/OperatorKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing 2025-01-24T02:56:07.5317180Z copying torch/include/ATen/core/boxing/KernelFunction_impl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing 2025-01-24T02:56:07.5318570Z copying torch/include/ATen/core/boxing/BoxedKernel_impl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing 2025-01-24T02:56:07.5319380Z copying torch/include/ATen/core/boxing/BoxedKernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing 2025-01-24T02:56:07.5320950Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing/impl 2025-01-24T02:56:07.5321530Z copying torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing/impl 2025-01-24T02:56:07.5323250Z copying torch/include/ATen/core/boxing/impl/boxing.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing/impl 2025-01-24T02:56:07.5324970Z copying torch/include/ATen/core/boxing/impl/test_helpers.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing/impl 2025-01-24T02:56:07.5326690Z copying torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing/impl 2025-01-24T02:56:07.5327540Z copying torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing/impl 2025-01-24T02:56:07.5328800Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/dispatch 2025-01-24T02:56:07.5329310Z copying torch/include/ATen/core/dispatch/OperatorOptions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/dispatch 2025-01-24T02:56:07.5330910Z copying torch/include/ATen/core/dispatch/RegistrationHandleRAII.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/dispatch 2025-01-24T02:56:07.5332010Z copying torch/include/ATen/core/dispatch/ObservedOperators.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/dispatch 2025-01-24T02:56:07.5333460Z copying torch/include/ATen/core/dispatch/DispatchKeyExtractor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/dispatch 2025-01-24T02:56:07.5334840Z copying torch/include/ATen/core/dispatch/Dispatcher.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/dispatch 2025-01-24T02:56:07.5336330Z copying torch/include/ATen/core/dispatch/CppSignature.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/dispatch 2025-01-24T02:56:07.5337190Z copying torch/include/ATen/core/dispatch/OperatorEntry.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/dispatch 2025-01-24T02:56:07.5339140Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/op_registration 2025-01-24T02:56:07.5339680Z copying torch/include/ATen/core/op_registration/adaption.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/op_registration 2025-01-24T02:56:07.5341280Z copying torch/include/ATen/core/op_registration/op_allowlist.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/op_registration 2025-01-24T02:56:07.5342740Z copying torch/include/ATen/core/op_registration/op_registration.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/op_registration 2025-01-24T02:56:07.5343700Z copying torch/include/ATen/core/op_registration/infer_schema.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/op_registration 2025-01-24T02:56:07.5345380Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5345860Z copying torch/include/c10/core/impl/InlineStreamGuard.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5347330Z copying torch/include/c10/core/impl/SizesAndStrides.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5348860Z copying torch/include/c10/core/impl/InlineDeviceGuard.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5350360Z copying torch/include/c10/core/impl/GPUTrace.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5351700Z copying torch/include/c10/core/impl/COWDeleter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5352900Z copying torch/include/c10/core/impl/LocalDispatchKeySet.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5354430Z copying torch/include/c10/core/impl/alloc_cpu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5355830Z copying torch/include/c10/core/impl/VirtualGuardImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5356760Z copying torch/include/c10/core/impl/HermeticPyObjectTLS.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5358190Z copying torch/include/c10/core/impl/PyObjectSlot.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5359640Z copying torch/include/c10/core/impl/TorchDispatchModeTLS.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5361010Z copying torch/include/c10/core/impl/PyInterpreter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5361920Z copying torch/include/c10/core/impl/PythonDispatcherTLS.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5363480Z copying torch/include/c10/core/impl/COW.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5364650Z copying torch/include/c10/core/impl/InlineEvent.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5366110Z copying torch/include/c10/core/impl/DeviceGuardImplInterface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5367640Z copying torch/include/c10/core/impl/FakeGuardImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl 2025-01-24T02:56:07.5369420Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5370010Z copying torch/include/c10/util/Type.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5371900Z copying torch/include/c10/util/order_preserving_flat_hash_map.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5373800Z copying torch/include/c10/util/Float8_e4m3fn-inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5375350Z copying torch/include/c10/util/quint4x2.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5376690Z copying torch/include/c10/util/FbcodeMaps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5378220Z copying torch/include/c10/util/signal_handler.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5379670Z copying torch/include/c10/util/error.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5381070Z copying torch/include/c10/util/safe_numerics.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5382380Z copying torch/include/c10/util/Half.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5384270Z copying torch/include/c10/util/flat_hash_map.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5385740Z copying torch/include/c10/util/env.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5387090Z copying torch/include/c10/util/llvmMathExtras.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5388610Z copying torch/include/c10/util/Gauge.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5390020Z copying torch/include/c10/util/WaitCounterDynamicBackend.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5390890Z copying torch/include/c10/util/Synchronized.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5392460Z copying torch/include/c10/util/Bitset.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5393810Z copying torch/include/c10/util/typeid.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5395160Z copying torch/include/c10/util/Float8_e4m3fnuz-inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5396520Z copying torch/include/c10/util/TypeSafeSignMath.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5397910Z copying torch/include/c10/util/intrusive_ptr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5399410Z copying torch/include/c10/util/string_utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5400800Z copying torch/include/c10/util/win32-headers.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5401570Z copying torch/include/c10/util/AlignOf.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5403150Z copying torch/include/c10/util/static_tracepoint.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5404430Z copying torch/include/c10/util/ssize.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5405800Z copying torch/include/c10/util/numa.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5406650Z copying torch/include/c10/util/qint32.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5408220Z copying torch/include/c10/util/CallOnce.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5409590Z copying torch/include/c10/util/Float8_e5m2fnuz.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5410800Z copying torch/include/c10/util/MaybeOwned.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5412260Z copying torch/include/c10/util/Half-inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5413440Z copying torch/include/c10/util/TypeTraits.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5414970Z copying torch/include/c10/util/DeadlockDetection.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5416240Z copying torch/include/c10/util/FunctionRef.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5417510Z copying torch/include/c10/util/Backtrace.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5418820Z copying torch/include/c10/util/overflows.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5419670Z copying torch/include/c10/util/ExclusivelyOwned.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5421250Z copying torch/include/c10/util/Load.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5422560Z copying torch/include/c10/util/BFloat16-inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5424000Z copying torch/include/c10/util/static_tracepoint_elfx86.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5428650Z copying torch/include/c10/util/ConstexprCrc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5430310Z copying torch/include/c10/util/ThreadLocal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5435850Z copying torch/include/c10/util/IdWrapper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5437190Z copying torch/include/c10/util/Flags.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5438870Z copying torch/include/c10/util/overloaded.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5444690Z copying torch/include/c10/util/Float8_e4m3fnuz.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5446140Z copying torch/include/c10/util/quint8.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5453430Z copying torch/include/c10/util/Float8_e5m2-inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5454890Z copying torch/include/c10/util/StringUtil.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5461130Z copying torch/include/c10/util/Logging.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5463120Z copying torch/include/c10/util/MathConstants.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5464390Z copying torch/include/c10/util/Registry.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5470060Z copying torch/include/c10/util/Optional.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5471410Z copying torch/include/c10/util/Float8_e5m2.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5473080Z copying torch/include/c10/util/tempfile.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5477960Z copying torch/include/c10/util/copysign.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5479350Z copying torch/include/c10/util/ArrayRef.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5480560Z copying torch/include/c10/util/thread_name.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5482070Z copying torch/include/c10/util/strides.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5483330Z copying torch/include/c10/util/Unicode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5488590Z copying torch/include/c10/util/TypeCast.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5489930Z copying torch/include/c10/util/sparse_bitset.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5493250Z copying torch/include/c10/util/OptionalArrayRef.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5501620Z copying torch/include/c10/util/BFloat16.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5502360Z copying torch/include/c10/util/TypeList.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5503040Z copying torch/include/c10/util/TypeIndex.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5507580Z copying torch/include/c10/util/NetworkFlow.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5508910Z copying torch/include/c10/util/Array.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5511820Z copying torch/include/c10/util/logging_is_google_glog.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5517130Z copying torch/include/c10/util/Metaprogramming.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5520240Z copying torch/include/c10/util/WaitCounter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5524400Z copying torch/include/c10/util/quint2x4.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5525890Z copying torch/include/c10/util/floating_point_utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5530050Z copying torch/include/c10/util/ParallelGuard.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5533590Z copying torch/include/c10/util/BFloat16-math.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5537380Z copying torch/include/c10/util/int128.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5538990Z copying torch/include/c10/util/Lazy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5542810Z copying torch/include/c10/util/Deprecated.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5546750Z copying torch/include/c10/util/irange.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5554240Z copying torch/include/c10/util/SmallBuffer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5555620Z copying torch/include/c10/util/ScopeExit.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5560930Z copying torch/include/c10/util/Unroll.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5562280Z copying torch/include/c10/util/LeftRight.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5568450Z copying torch/include/c10/util/bit_cast.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5569700Z copying torch/include/c10/util/qint8.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5576050Z copying torch/include/c10/util/complex_math.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5577690Z copying torch/include/c10/util/logging_is_not_google_glog.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5579000Z copying torch/include/c10/util/DynamicCounter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5585320Z copying torch/include/c10/util/Exception.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5587000Z copying torch/include/c10/util/UniqueVoidPtr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5593070Z copying torch/include/c10/util/ThreadLocalDebugInfo.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5594610Z copying torch/include/c10/util/Float8_e4m3fn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5601290Z copying torch/include/c10/util/AbortHandler.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5602600Z copying torch/include/c10/util/DimVector.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5603450Z copying torch/include/c10/util/accumulate.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5608880Z copying torch/include/c10/util/C++17.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5610160Z copying torch/include/c10/util/strong_type.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5615960Z copying torch/include/c10/util/ApproximateClock.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5617680Z copying torch/include/c10/util/SmallVector.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5619260Z copying torch/include/c10/util/Float8_e5m2fnuz-inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5625440Z copying torch/include/c10/util/hash.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5626910Z copying torch/include/c10/util/python_stub.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5633290Z copying torch/include/c10/util/complex.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5634670Z copying torch/include/c10/util/bits.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5641310Z copying torch/include/c10/util/string_view.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5643080Z copying torch/include/c10/util/Float8_fnuz_cvt.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5644410Z copying torch/include/c10/util/complex_utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5648090Z copying torch/include/c10/util/ExclusivelyOwnedTensorTraits.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5649610Z copying torch/include/c10/util/generic_math.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util 2025-01-24T02:56:07.5651360Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda 2025-01-24T02:56:07.5651920Z copying torch/include/c10/cuda/CUDADeviceAssertion.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda 2025-01-24T02:56:07.5653400Z copying torch/include/c10/cuda/driver_api.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda 2025-01-24T02:56:07.5655000Z copying torch/include/c10/cuda/CUDAMathCompat.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda 2025-01-24T02:56:07.5656310Z copying torch/include/c10/cuda/CUDAAlgorithm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda 2025-01-24T02:56:07.5657660Z copying torch/include/c10/cuda/CUDAStream.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda 2025-01-24T02:56:07.5659620Z copying torch/include/c10/cuda/CUDAGuard.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda 2025-01-24T02:56:07.5661100Z copying torch/include/c10/cuda/CUDAMiscFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda 2025-01-24T02:56:07.5665130Z copying torch/include/c10/cuda/CUDAGraphsC10Utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda 2025-01-24T02:56:07.5668650Z copying torch/include/c10/cuda/CUDAMacros.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda 2025-01-24T02:56:07.5670000Z copying torch/include/c10/cuda/CUDAAllocatorConfig.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda 2025-01-24T02:56:07.5675570Z copying torch/include/c10/cuda/CUDAFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda 2025-01-24T02:56:07.5677810Z copying torch/include/c10/cuda/CUDAException.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda 2025-01-24T02:56:07.5679190Z copying torch/include/c10/cuda/CUDACachingAllocator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda 2025-01-24T02:56:07.5685390Z copying torch/include/c10/cuda/CUDADeviceAssertionHost.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda 2025-01-24T02:56:07.5686730Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/impl 2025-01-24T02:56:07.5687230Z copying torch/include/c10/cuda/impl/CUDATest.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/impl 2025-01-24T02:56:07.5693300Z copying torch/include/c10/cuda/impl/CUDAGuardImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/impl 2025-01-24T02:56:07.5694760Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/metal 2025-01-24T02:56:07.5695140Z copying torch/include/c10/metal/utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/metal 2025-01-24T02:56:07.5696800Z copying torch/include/c10/metal/special_math.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/metal 2025-01-24T02:56:07.5701220Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/xpu 2025-01-24T02:56:07.5701600Z copying torch/include/c10/xpu/XPUStream.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/xpu 2025-01-24T02:56:07.5703250Z copying torch/include/c10/xpu/XPUDeviceProp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/xpu 2025-01-24T02:56:07.5709400Z copying torch/include/c10/xpu/XPUCachingAllocator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/xpu 2025-01-24T02:56:07.5710710Z copying torch/include/c10/xpu/XPUMacros.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/xpu 2025-01-24T02:56:07.5717250Z copying torch/include/c10/xpu/XPUException.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/xpu 2025-01-24T02:56:07.5718650Z copying torch/include/c10/xpu/XPUFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/xpu 2025-01-24T02:56:07.5720080Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/xpu/impl 2025-01-24T02:56:07.5720550Z copying torch/include/c10/xpu/impl/XPUGuardImpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/xpu/impl 2025-01-24T02:56:07.5725210Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch 2025-01-24T02:56:07.5725670Z copying torch/include/torch/script.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch 2025-01-24T02:56:07.5726730Z copying torch/include/torch/library.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch 2025-01-24T02:56:07.5729990Z copying torch/include/torch/custom_class_detail.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch 2025-01-24T02:56:07.5733810Z copying torch/include/torch/custom_class.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch 2025-01-24T02:56:07.5735400Z copying torch/include/torch/extension.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch 2025-01-24T02:56:07.5739230Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5739620Z copying torch/include/torch/csrc/Size.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5742930Z copying torch/include/torch/csrc/utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5747930Z copying torch/include/torch/csrc/DeviceAccelerator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5750250Z copying torch/include/torch/csrc/Export.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5751640Z copying torch/include/torch/csrc/Device.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5757700Z copying torch/include/torch/csrc/THConcat.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5758440Z copying torch/include/torch/csrc/Event.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5764720Z copying torch/include/torch/csrc/Types.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5767240Z copying torch/include/torch/csrc/serialization.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5773120Z copying torch/include/torch/csrc/Exceptions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5774640Z copying torch/include/torch/csrc/itt_wrapper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5776140Z copying torch/include/torch/csrc/QScheme.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5780900Z copying torch/include/torch/csrc/Stream.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5782360Z copying torch/include/torch/csrc/DataLoader.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5788300Z copying torch/include/torch/csrc/THP.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5790760Z copying torch/include/torch/csrc/python_headers.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5795460Z copying torch/include/torch/csrc/Layout.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5797770Z copying torch/include/torch/csrc/DynamicTypes.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5799070Z copying torch/include/torch/csrc/copy_utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5804100Z copying torch/include/torch/csrc/Storage.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5811980Z copying torch/include/torch/csrc/MemoryFormat.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5813130Z copying torch/include/torch/csrc/StorageSharing.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5819490Z copying torch/include/torch/csrc/PyInterpreter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5820460Z copying torch/include/torch/csrc/Dtype.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5822070Z copying torch/include/torch/csrc/Module.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5827540Z copying torch/include/torch/csrc/python_dimname.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5831280Z copying torch/include/torch/csrc/CudaIPCTypes.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5836200Z copying torch/include/torch/csrc/Generator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5837500Z copying torch/include/torch/csrc/TypeInfo.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5840590Z copying torch/include/torch/csrc/StorageMethods.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc 2025-01-24T02:56:07.5844680Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api 2025-01-24T02:56:07.5844980Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include 2025-01-24T02:56:07.5845450Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5846260Z copying torch/include/torch/csrc/api/include/torch/fft.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5848040Z copying torch/include/torch/csrc/api/include/torch/nested.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5849060Z copying torch/include/torch/csrc/api/include/torch/utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5850670Z copying torch/include/torch/csrc/api/include/torch/version.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5851760Z copying torch/include/torch/csrc/api/include/torch/enum.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5853420Z copying torch/include/torch/csrc/api/include/torch/types.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5854250Z copying torch/include/torch/csrc/api/include/torch/all.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5857470Z copying torch/include/torch/csrc/api/include/torch/data.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5859880Z copying torch/include/torch/csrc/api/include/torch/arg.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5863730Z copying torch/include/torch/csrc/api/include/torch/xpu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5866190Z copying torch/include/torch/csrc/api/include/torch/torch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5869310Z copying torch/include/torch/csrc/api/include/torch/optim.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5873770Z copying torch/include/torch/csrc/api/include/torch/jit.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5878120Z copying torch/include/torch/csrc/api/include/torch/nn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5881930Z copying torch/include/torch/csrc/api/include/torch/imethod.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5887960Z copying torch/include/torch/csrc/api/include/torch/ordered_dict.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5890350Z copying torch/include/torch/csrc/api/include/torch/cuda.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5896050Z copying torch/include/torch/csrc/api/include/torch/autograd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5896970Z copying torch/include/torch/csrc/api/include/torch/special.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5898790Z copying torch/include/torch/csrc/api/include/torch/sparse.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5905300Z copying torch/include/torch/csrc/api/include/torch/mps.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5906410Z copying torch/include/torch/csrc/api/include/torch/python.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5913290Z copying torch/include/torch/csrc/api/include/torch/serialize.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5915140Z copying torch/include/torch/csrc/api/include/torch/expanding_array.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:07.5920830Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:07.5921520Z copying torch/include/torch/csrc/api/include/torch/data/example.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:07.5922600Z copying torch/include/torch/csrc/api/include/torch/data/dataloader_options.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:07.5924160Z copying torch/include/torch/csrc/api/include/torch/data/worker_exception.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:07.5928450Z copying torch/include/torch/csrc/api/include/torch/data/dataloader.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:07.5930230Z copying torch/include/torch/csrc/api/include/torch/data/samplers.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:07.5936490Z copying torch/include/torch/csrc/api/include/torch/data/datasets.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:07.5937410Z copying torch/include/torch/csrc/api/include/torch/data/transforms.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:07.5939040Z copying torch/include/torch/csrc/api/include/torch/data/iterator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:07.5945480Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-01-24T02:56:07.5946240Z copying torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-01-24T02:56:07.5947380Z copying torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-01-24T02:56:07.5953620Z copying torch/include/torch/csrc/api/include/torch/data/dataloader/base.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-01-24T02:56:07.5954900Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/datasets 2025-01-24T02:56:07.5955590Z copying torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/datasets 2025-01-24T02:56:07.5961250Z copying torch/include/torch/csrc/api/include/torch/data/datasets/shared.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/datasets 2025-01-24T02:56:07.5962390Z copying torch/include/torch/csrc/api/include/torch/data/datasets/map.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/datasets 2025-01-24T02:56:07.5963980Z copying torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/datasets 2025-01-24T02:56:07.5969350Z copying torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/datasets 2025-01-24T02:56:07.5971070Z copying torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/datasets 2025-01-24T02:56:07.5980450Z copying torch/include/torch/csrc/api/include/torch/data/datasets/base.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/datasets 2025-01-24T02:56:07.5980980Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/detail 2025-01-24T02:56:07.5981690Z copying torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/detail 2025-01-24T02:56:07.5982340Z copying torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/detail 2025-01-24T02:56:07.5984650Z copying torch/include/torch/csrc/api/include/torch/data/detail/queue.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/detail 2025-01-24T02:56:07.5985950Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/samplers 2025-01-24T02:56:07.5986710Z copying torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/samplers 2025-01-24T02:56:07.5992740Z copying torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/samplers 2025-01-24T02:56:07.5994360Z copying torch/include/torch/csrc/api/include/torch/data/samplers/stream.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/samplers 2025-01-24T02:56:07.6000410Z copying torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/samplers 2025-01-24T02:56:07.6001920Z copying torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/samplers 2025-01-24T02:56:07.6002980Z copying torch/include/torch/csrc/api/include/torch/data/samplers/random.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/samplers 2025-01-24T02:56:07.6008310Z copying torch/include/torch/csrc/api/include/torch/data/samplers/base.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/samplers 2025-01-24T02:56:07.6009170Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/transforms 2025-01-24T02:56:07.6010000Z copying torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/transforms 2025-01-24T02:56:07.6015760Z copying torch/include/torch/csrc/api/include/torch/data/transforms/stack.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/transforms 2025-01-24T02:56:07.6017910Z copying torch/include/torch/csrc/api/include/torch/data/transforms/collate.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/transforms 2025-01-24T02:56:07.6024140Z copying torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/transforms 2025-01-24T02:56:07.6025390Z copying torch/include/torch/csrc/api/include/torch/data/transforms/base.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/transforms 2025-01-24T02:56:07.6026780Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/detail 2025-01-24T02:56:07.6027410Z copying torch/include/torch/csrc/api/include/torch/detail/static.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/detail 2025-01-24T02:56:07.6033360Z copying torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/detail 2025-01-24T02:56:07.6035100Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:07.6035720Z copying torch/include/torch/csrc/api/include/torch/nn/utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:07.6042670Z copying torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:07.6044170Z copying torch/include/torch/csrc/api/include/torch/nn/options.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:07.6051560Z copying torch/include/torch/csrc/api/include/torch/nn/functional.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:07.6052300Z copying torch/include/torch/csrc/api/include/torch/nn/modules.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:07.6054010Z copying torch/include/torch/csrc/api/include/torch/nn/pimpl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:07.6054940Z copying torch/include/torch/csrc/api/include/torch/nn/module.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:07.6059260Z copying torch/include/torch/csrc/api/include/torch/nn/init.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:07.6061140Z copying torch/include/torch/csrc/api/include/torch/nn/cloneable.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:07.6063590Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:07.6064330Z copying torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:07.6067480Z copying torch/include/torch/csrc/api/include/torch/nn/functional/distance.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:07.6069240Z copying torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:07.6072910Z copying torch/include/torch/csrc/api/include/torch/nn/functional/linear.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:07.6076820Z copying torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:07.6082330Z copying torch/include/torch/csrc/api/include/torch/nn/functional/vision.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:07.6084690Z copying torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:07.6085980Z copying torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:07.6092140Z copying torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:07.6093100Z copying torch/include/torch/csrc/api/include/torch/nn/functional/fold.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:07.6099470Z copying torch/include/torch/csrc/api/include/torch/nn/functional/activation.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:07.6101900Z copying torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:07.6103480Z copying torch/include/torch/csrc/api/include/torch/nn/functional/conv.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:07.6109440Z copying torch/include/torch/csrc/api/include/torch/nn/functional/padding.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:07.6110500Z copying torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:07.6117010Z copying torch/include/torch/csrc/api/include/torch/nn/functional/loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:07.6118410Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6119130Z copying torch/include/torch/csrc/api/include/torch/nn/options/normalization.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6124910Z copying torch/include/torch/csrc/api/include/torch/nn/options/rnn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6125960Z copying torch/include/torch/csrc/api/include/torch/nn/options/distance.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6127590Z copying torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6133380Z copying torch/include/torch/csrc/api/include/torch/nn/options/linear.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6134320Z copying torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6141070Z copying torch/include/torch/csrc/api/include/torch/nn/options/vision.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6142680Z copying torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6143600Z copying torch/include/torch/csrc/api/include/torch/nn/options/dropout.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6149960Z copying torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6150850Z copying torch/include/torch/csrc/api/include/torch/nn/options/embedding.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6334440Z copying torch/include/torch/csrc/api/include/torch/nn/options/fold.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6335830Z copying torch/include/torch/csrc/api/include/torch/nn/options/activation.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6337290Z copying torch/include/torch/csrc/api/include/torch/nn/options/transformer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6338720Z copying torch/include/torch/csrc/api/include/torch/nn/options/pooling.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6340190Z copying torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6341620Z copying torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6342990Z copying torch/include/torch/csrc/api/include/torch/nn/options/conv.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6344460Z copying torch/include/torch/csrc/api/include/torch/nn/options/padding.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6345910Z copying torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6347330Z copying torch/include/torch/csrc/api/include/torch/nn/options/loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:07.6348490Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6349610Z copying torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6351000Z copying torch/include/torch/csrc/api/include/torch/nn/modules/utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6352410Z copying torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6353860Z copying torch/include/torch/csrc/api/include/torch/nn/modules/distance.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6355410Z copying torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6356830Z copying torch/include/torch/csrc/api/include/torch/nn/modules/linear.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6358240Z copying torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6359700Z copying torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6361210Z copying torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6362600Z copying torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6363970Z copying torch/include/torch/csrc/api/include/torch/nn/modules/common.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6365340Z copying torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6366740Z copying torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6368130Z copying torch/include/torch/csrc/api/include/torch/nn/modules/fold.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6369490Z copying torch/include/torch/csrc/api/include/torch/nn/modules/activation.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6370890Z copying torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6372290Z copying torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6373740Z copying torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6375200Z copying torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6376620Z copying torch/include/torch/csrc/api/include/torch/nn/modules/conv.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6378270Z copying torch/include/torch/csrc/api/include/torch/nn/modules/padding.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6380690Z copying torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6386250Z copying torch/include/torch/csrc/api/include/torch/nn/modules/loss.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:07.6387450Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:07.6388710Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:07.6390290Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:07.6391860Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:07.6393450Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:07.6395040Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:07.6396740Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:07.6398370Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:07.6399990Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:07.6401570Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:07.6403120Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:07.6404300Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-01-24T02:56:07.6405420Z copying torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-01-24T02:56:07.6406510Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/utils 2025-01-24T02:56:07.6407540Z copying torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/utils 2025-01-24T02:56:07.6408880Z copying torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/utils 2025-01-24T02:56:07.6410300Z copying torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/utils 2025-01-24T02:56:07.6411370Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:07.6412390Z copying torch/include/torch/csrc/api/include/torch/optim/rmsprop.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:07.6413670Z copying torch/include/torch/csrc/api/include/torch/optim/lbfgs.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:07.6414940Z copying torch/include/torch/csrc/api/include/torch/optim/optimizer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:07.6416320Z copying torch/include/torch/csrc/api/include/torch/optim/adagrad.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:07.6417570Z copying torch/include/torch/csrc/api/include/torch/optim/sgd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:07.6418820Z copying torch/include/torch/csrc/api/include/torch/optim/serialize.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:07.6420080Z copying torch/include/torch/csrc/api/include/torch/optim/adamw.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:07.6421330Z copying torch/include/torch/csrc/api/include/torch/optim/adam.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:07.6422370Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-01-24T02:56:07.6423680Z copying torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-01-24T02:56:07.6425250Z copying torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-01-24T02:56:07.6426750Z copying torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-01-24T02:56:07.6427840Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/serialize 2025-01-24T02:56:07.6428920Z copying torch/include/torch/csrc/api/include/torch/serialize/archive.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/serialize 2025-01-24T02:56:07.6430280Z copying torch/include/torch/csrc/api/include/torch/serialize/input-archive.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/serialize 2025-01-24T02:56:07.6431680Z copying torch/include/torch/csrc/api/include/torch/serialize/output-archive.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/serialize 2025-01-24T02:56:07.6433050Z copying torch/include/torch/csrc/api/include/torch/serialize/tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/serialize 2025-01-24T02:56:07.6434000Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6434830Z copying torch/include/torch/csrc/autograd/python_function.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6435860Z copying torch/include/torch/csrc/autograd/custom_function.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6436910Z copying torch/include/torch/csrc/autograd/python_linalg_functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6438030Z copying torch/include/torch/csrc/autograd/saved_variable_hooks.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6439090Z copying torch/include/torch/csrc/autograd/record_function_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6440100Z copying torch/include/torch/csrc/autograd/engine.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6441120Z copying torch/include/torch/csrc/autograd/python_enum_tag.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6442130Z copying torch/include/torch/csrc/autograd/graph_task.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6443160Z copying torch/include/torch/csrc/autograd/edge.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6444180Z copying torch/include/torch/csrc/autograd/python_nested_functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6445220Z copying torch/include/torch/csrc/autograd/variable_info.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6446250Z copying torch/include/torch/csrc/autograd/saved_variable.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6447290Z copying torch/include/torch/csrc/autograd/python_engine.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6448330Z copying torch/include/torch/csrc/autograd/python_legacy_variable.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6449380Z copying torch/include/torch/csrc/autograd/profiler_python.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6450540Z copying torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6451680Z copying torch/include/torch/csrc/autograd/python_saved_variable_hooks.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6452760Z copying torch/include/torch/csrc/autograd/python_cpp_function.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6453790Z copying torch/include/torch/csrc/autograd/python_hook.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6454810Z copying torch/include/torch/csrc/autograd/VariableTypeUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6455950Z copying torch/include/torch/csrc/autograd/python_autograd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6457040Z copying torch/include/torch/csrc/autograd/profiler_kineto.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6458070Z copying torch/include/torch/csrc/autograd/variable.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6459410Z copying torch/include/torch/csrc/autograd/python_fft_functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6460730Z copying torch/include/torch/csrc/autograd/python_variable.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6462080Z copying torch/include/torch/csrc/autograd/python_torch_functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6463320Z copying torch/include/torch/csrc/autograd/function_hook.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6464750Z copying torch/include/torch/csrc/autograd/input_metadata.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6465950Z copying torch/include/torch/csrc/autograd/grad_mode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6467130Z copying torch/include/torch/csrc/autograd/jit_decomp_interface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6468470Z copying torch/include/torch/csrc/autograd/python_sparse_functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6472190Z copying torch/include/torch/csrc/autograd/symbolic.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6474980Z copying torch/include/torch/csrc/autograd/input_buffer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6476170Z copying torch/include/torch/csrc/autograd/profiler_legacy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6477550Z copying torch/include/torch/csrc/autograd/autograd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6480130Z copying torch/include/torch/csrc/autograd/cpp_hook.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6482160Z copying torch/include/torch/csrc/autograd/python_special_functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6483320Z copying torch/include/torch/csrc/autograd/FunctionsManual.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6489750Z copying torch/include/torch/csrc/autograd/forward_grad.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6493370Z copying torch/include/torch/csrc/autograd/python_anomaly_mode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6498430Z copying torch/include/torch/csrc/autograd/python_nn_functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6500820Z copying torch/include/torch/csrc/autograd/InferenceMode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6502120Z copying torch/include/torch/csrc/autograd/python_variable_indexing.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6508380Z copying torch/include/torch/csrc/autograd/profiler.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6509530Z copying torch/include/torch/csrc/autograd/function.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6515720Z copying torch/include/torch/csrc/autograd/anomaly_mode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd 2025-01-24T02:56:07.6522210Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/functions 2025-01-24T02:56:07.6523180Z copying torch/include/torch/csrc/autograd/functions/utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/functions 2025-01-24T02:56:07.6524500Z copying torch/include/torch/csrc/autograd/functions/pybind.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/functions 2025-01-24T02:56:07.6525820Z copying torch/include/torch/csrc/autograd/functions/comm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/functions 2025-01-24T02:56:07.6527120Z copying torch/include/torch/csrc/autograd/functions/basic_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/functions 2025-01-24T02:56:07.6532670Z copying torch/include/torch/csrc/autograd/functions/accumulate_grad.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/functions 2025-01-24T02:56:07.6534200Z copying torch/include/torch/csrc/autograd/functions/tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/functions 2025-01-24T02:56:07.6541170Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/generated 2025-01-24T02:56:07.6542150Z copying torch/include/torch/csrc/autograd/generated/python_return_types.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/generated 2025-01-24T02:56:07.6543360Z copying torch/include/torch/csrc/autograd/generated/ViewFuncs.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/generated 2025-01-24T02:56:07.6544660Z copying torch/include/torch/csrc/autograd/generated/python_functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/generated 2025-01-24T02:56:07.6549470Z copying torch/include/torch/csrc/autograd/generated/VariableType.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/generated 2025-01-24T02:56:07.6557640Z copying torch/include/torch/csrc/autograd/generated/Functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/generated 2025-01-24T02:56:07.6565660Z copying torch/include/torch/csrc/autograd/generated/variable_factories.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/generated 2025-01-24T02:56:07.6566830Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/utils 2025-01-24T02:56:07.6567740Z copying torch/include/torch/csrc/autograd/utils/warnings.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/utils 2025-01-24T02:56:07.6574340Z copying torch/include/torch/csrc/autograd/utils/wrap_outputs.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/utils 2025-01-24T02:56:07.6575480Z copying torch/include/torch/csrc/autograd/utils/python_arg_parsing.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/utils 2025-01-24T02:56:07.6576790Z copying torch/include/torch/csrc/autograd/utils/grad_layout_contract.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/utils 2025-01-24T02:56:07.6581810Z copying torch/include/torch/csrc/autograd/utils/lambda_post_hook.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/utils 2025-01-24T02:56:07.6583960Z copying torch/include/torch/csrc/autograd/utils/error_messages.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/utils 2025-01-24T02:56:07.6589260Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda 2025-01-24T02:56:07.6590110Z copying torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda 2025-01-24T02:56:07.6591220Z copying torch/include/torch/csrc/cuda/GdsFile.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda 2025-01-24T02:56:07.6592360Z copying torch/include/torch/csrc/cuda/THCP.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda 2025-01-24T02:56:07.6599920Z copying torch/include/torch/csrc/cuda/nccl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda 2025-01-24T02:56:07.6601010Z copying torch/include/torch/csrc/cuda/memory_snapshot.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda 2025-01-24T02:56:07.6607620Z copying torch/include/torch/csrc/cuda/python_nccl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda 2025-01-24T02:56:07.6608700Z copying torch/include/torch/csrc/cuda/device_set.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda 2025-01-24T02:56:07.6609950Z copying torch/include/torch/csrc/cuda/Event.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda 2025-01-24T02:56:07.6615430Z copying torch/include/torch/csrc/cuda/python_comm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda 2025-01-24T02:56:07.6617570Z copying torch/include/torch/csrc/cuda/comm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda 2025-01-24T02:56:07.6623050Z copying torch/include/torch/csrc/cuda/Stream.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda 2025-01-24T02:56:07.6625120Z copying torch/include/torch/csrc/cuda/Module.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda 2025-01-24T02:56:07.6626270Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed 2025-01-24T02:56:07.6627060Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6628010Z copying torch/include/torch/csrc/distributed/c10d/error.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6632000Z copying torch/include/torch/csrc/distributed/c10d/debug.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6633250Z copying torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemory-inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6639910Z copying torch/include/torch/csrc/distributed/c10d/logging.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6642410Z copying torch/include/torch/csrc/distributed/c10d/socket_fmt.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6649160Z copying torch/include/torch/csrc/distributed/c10d/python_comm_hook.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6650400Z copying torch/include/torch/csrc/distributed/c10d/c10d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6651680Z copying torch/include/torch/csrc/distributed/c10d/TraceUtils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6658490Z copying torch/include/torch/csrc/distributed/c10d/exception.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6659630Z copying torch/include/torch/csrc/distributed/c10d/socket.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6660960Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6666180Z copying torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6667380Z copying torch/include/torch/csrc/distributed/c10d/logger.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6668610Z copying torch/include/torch/csrc/distributed/c10d/Work.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6671650Z copying torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6675510Z copying torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6676840Z copying torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6681170Z copying torch/include/torch/csrc/distributed/c10d/Store.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6683610Z copying torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6689220Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6690640Z copying torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6692050Z copying torch/include/torch/csrc/distributed/c10d/RankLocal.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6698100Z copying torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6699390Z copying torch/include/torch/csrc/distributed/c10d/FileStore.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6706890Z copying torch/include/torch/csrc/distributed/c10d/reducer.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6893100Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6894330Z copying torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6896110Z copying torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6897330Z copying torch/include/torch/csrc/distributed/c10d/comm.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6898500Z copying torch/include/torch/csrc/distributed/c10d/Functional.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6899860Z copying torch/include/torch/csrc/distributed/c10d/Backoff.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6901220Z copying torch/include/torch/csrc/distributed/c10d/TCPStore.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6902550Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6903880Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6905480Z copying torch/include/torch/csrc/distributed/c10d/NanCheck.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6906870Z copying torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6908170Z copying torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6909450Z copying torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6910720Z copying torch/include/torch/csrc/distributed/c10d/HashStore.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6912000Z copying torch/include/torch/csrc/distributed/c10d/sequence_num.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6913330Z copying torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6914560Z copying torch/include/torch/csrc/distributed/c10d/SymmetricMemory.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6915830Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6917350Z copying torch/include/torch/csrc/distributed/c10d/Backend.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6918930Z copying torch/include/torch/csrc/distributed/c10d/Utils.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6920350Z copying torch/include/torch/csrc/distributed/c10d/Types.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6921770Z copying torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6926950Z copying torch/include/torch/csrc/distributed/c10d/intra_node_comm.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6928180Z copying torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6929430Z copying torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemory.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6930670Z copying torch/include/torch/csrc/distributed/c10d/DMAConnectivity.hpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:07.6931600Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6932490Z copying torch/include/torch/csrc/distributed/rpc/utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6933640Z copying torch/include/torch/csrc/distributed/rpc/rref_context.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6934870Z copying torch/include/torch/csrc/distributed/rpc/request_callback_impl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6936060Z copying torch/include/torch/csrc/distributed/rpc/python_resp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6937180Z copying torch/include/torch/csrc/distributed/rpc/rref_impl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6938320Z copying torch/include/torch/csrc/distributed/rpc/request_callback.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6939450Z copying torch/include/torch/csrc/distributed/rpc/types.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6940580Z copying torch/include/torch/csrc/distributed/rpc/rref_proto.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6941690Z copying torch/include/torch/csrc/distributed/rpc/py_rref.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6942820Z copying torch/include/torch/csrc/distributed/rpc/rpc_agent.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6944100Z copying torch/include/torch/csrc/distributed/rpc/python_functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6945350Z copying torch/include/torch/csrc/distributed/rpc/message.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6946650Z copying torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6947970Z copying torch/include/torch/csrc/distributed/rpc/python_remote_call.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6949260Z copying torch/include/torch/csrc/distributed/rpc/python_call.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6950550Z copying torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6952050Z copying torch/include/torch/csrc/distributed/rpc/script_remote_call.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6953330Z copying torch/include/torch/csrc/distributed/rpc/script_resp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6954600Z copying torch/include/torch/csrc/distributed/rpc/rpc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6955980Z copying torch/include/torch/csrc/distributed/rpc/rpc_command_base.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6957320Z copying torch/include/torch/csrc/distributed/rpc/script_call.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6958620Z copying torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6959920Z copying torch/include/torch/csrc/distributed/rpc/torchscript_functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6961170Z copying torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6962520Z copying torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6963980Z copying torch/include/torch/csrc/distributed/rpc/agent_utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6965180Z copying torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:07.6966250Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd 2025-01-24T02:56:07.6967080Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/context 2025-01-24T02:56:07.6968170Z copying torch/include/torch/csrc/distributed/autograd/context/container.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/context 2025-01-24T02:56:07.6969530Z copying torch/include/torch/csrc/distributed/autograd/context/context.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/context 2025-01-24T02:56:07.6970590Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/functions 2025-01-24T02:56:07.6971710Z copying torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/functions 2025-01-24T02:56:07.6973170Z copying torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/functions 2025-01-24T02:56:07.6974290Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:07.6975500Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:07.6977060Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:07.6978610Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:07.6980100Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:07.6981620Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:07.6983140Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:07.6984710Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:07.6986280Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:07.6987740Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:07.6989220Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:07.6990260Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo 2025-01-24T02:56:07.6991050Z copying torch/include/torch/csrc/dynamo/cache_entry.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo 2025-01-24T02:56:07.6992030Z copying torch/include/torch/csrc/dynamo/utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo 2025-01-24T02:56:07.6992990Z copying torch/include/torch/csrc/dynamo/cpython_defs.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo 2025-01-24T02:56:07.6993950Z copying torch/include/torch/csrc/dynamo/cpp_shim.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo 2025-01-24T02:56:07.6994950Z copying torch/include/torch/csrc/dynamo/framelocals_mapping.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo 2025-01-24T02:56:07.6995970Z copying torch/include/torch/csrc/dynamo/cpython_includes.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo 2025-01-24T02:56:07.6996960Z copying torch/include/torch/csrc/dynamo/extra_state.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo 2025-01-24T02:56:07.6997950Z copying torch/include/torch/csrc/dynamo/compiled_autograd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo 2025-01-24T02:56:07.6999080Z copying torch/include/torch/csrc/dynamo/eval_frame.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo 2025-01-24T02:56:07.7000100Z copying torch/include/torch/csrc/dynamo/debug_macros.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo 2025-01-24T02:56:07.7001390Z copying torch/include/torch/csrc/dynamo/python_compiled_autograd.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo 2025-01-24T02:56:07.7002570Z copying torch/include/torch/csrc/dynamo/init.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo 2025-01-24T02:56:07.7003870Z copying torch/include/torch/csrc/dynamo/guards.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo 2025-01-24T02:56:07.7005640Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor 2025-01-24T02:56:07.7006510Z copying torch/include/torch/csrc/inductor/inductor_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor 2025-01-24T02:56:07.7007390Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_package 2025-01-24T02:56:07.7008380Z copying torch/include/torch/csrc/inductor/aoti_package/pybind.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_package 2025-01-24T02:56:07.7009630Z copying torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_package 2025-01-24T02:56:07.7010630Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runner 2025-01-24T02:56:07.7011660Z copying torch/include/torch/csrc/inductor/aoti_runner/pybind.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runner 2025-01-24T02:56:07.7012970Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runner 2025-01-24T02:56:07.7014310Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runner 2025-01-24T02:56:07.7015660Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runner 2025-01-24T02:56:07.7017080Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runner 2025-01-24T02:56:07.7018370Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:07.7019330Z copying torch/include/torch/csrc/inductor/aoti_runtime/utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:07.7020600Z copying torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:07.7021920Z copying torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:07.7023180Z copying torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:07.7024390Z copying torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:07.7028970Z copying torch/include/torch/csrc/inductor/aoti_runtime/interface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:07.7030210Z copying torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:07.7035070Z copying torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:07.7037490Z copying torch/include/torch/csrc/inductor/aoti_runtime/model.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:07.7038810Z copying torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:07.7040160Z copying torch/include/torch/csrc/inductor/aoti_runtime/model_container.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:07.7045360Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch 2025-01-24T02:56:07.7046400Z copying torch/include/torch/csrc/inductor/aoti_torch/utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch 2025-01-24T02:56:07.7053810Z copying torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch 2025-01-24T02:56:07.7055030Z copying torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch 2025-01-24T02:56:07.7056340Z copying torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch 2025-01-24T02:56:07.7060730Z copying torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch 2025-01-24T02:56:07.7061870Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/c 2025-01-24T02:56:07.7063020Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/c 2025-01-24T02:56:07.7068320Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim_mkldnn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/c 2025-01-24T02:56:07.7069670Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/c 2025-01-24T02:56:07.7076570Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-01-24T02:56:07.7077660Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-01-24T02:56:07.7079040Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-01-24T02:56:07.7080490Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-01-24T02:56:07.7083950Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit 2025-01-24T02:56:07.7084720Z copying torch/include/torch/csrc/jit/jit_opt_limit.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit 2025-01-24T02:56:07.7085880Z copying torch/include/torch/csrc/jit/jit_log.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit 2025-01-24T02:56:07.7092660Z copying torch/include/torch/csrc/jit/resource_guard.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit 2025-01-24T02:56:07.7093950Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:07.7094860Z copying torch/include/torch/csrc/jit/backends/backend_debug_handler.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:07.7097040Z copying torch/include/torch/csrc/jit/backends/backend_interface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:07.7102250Z copying torch/include/torch/csrc/jit/backends/backend.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:07.7103490Z copying torch/include/torch/csrc/jit/backends/backend_exception.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:07.7105950Z copying torch/include/torch/csrc/jit/backends/backend_debug_info.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:07.7111090Z copying torch/include/torch/csrc/jit/backends/backend_resolver.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:07.7113830Z copying torch/include/torch/csrc/jit/backends/backend_preprocess.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:07.7118620Z copying torch/include/torch/csrc/jit/backends/backend_detail.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:07.7119860Z copying torch/include/torch/csrc/jit/backends/backend_init.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:07.7122760Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7123620Z copying torch/include/torch/csrc/jit/passes/remove_expands.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7127500Z copying torch/include/torch/csrc/jit/passes/restore_mutation.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7131710Z copying torch/include/torch/csrc/jit/passes/peephole_list_idioms.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7134860Z copying torch/include/torch/csrc/jit/passes/subgraph_rewrite.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7136110Z copying torch/include/torch/csrc/jit/passes/fuse_relu.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7140940Z copying torch/include/torch/csrc/jit/passes/guard_elimination.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7142160Z copying torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7148460Z copying torch/include/torch/csrc/jit/passes/freeze_module.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7149690Z copying torch/include/torch/csrc/jit/passes/clear_undefinedness.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7155820Z copying torch/include/torch/csrc/jit/passes/dtype_analysis.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7157090Z copying torch/include/torch/csrc/jit/passes/peephole.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7164230Z copying torch/include/torch/csrc/jit/passes/remove_dropout.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7165860Z copying torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7167050Z copying torch/include/torch/csrc/jit/passes/value_refinement_utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7171520Z copying torch/include/torch/csrc/jit/passes/metal_rewrite.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7172690Z copying torch/include/torch/csrc/jit/passes/liveness.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7179270Z copying torch/include/torch/csrc/jit/passes/remove_mutation.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7180480Z copying torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7181720Z copying torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7189040Z copying torch/include/torch/csrc/jit/passes/batch_mm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7190220Z copying torch/include/torch/csrc/jit/passes/frozen_concat_linear.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7193350Z copying torch/include/torch/csrc/jit/passes/constant_pooling.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7201700Z copying torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7202920Z copying torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7207150Z copying torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7210450Z copying torch/include/torch/csrc/jit/passes/fuse_linear.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7215280Z copying torch/include/torch/csrc/jit/passes/annotate_warns.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7221030Z copying torch/include/torch/csrc/jit/passes/specialize_autogradzero.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7225060Z copying torch/include/torch/csrc/jit/passes/frozen_linear_folding.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7229170Z copying torch/include/torch/csrc/jit/passes/prepack_folding.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7231540Z copying torch/include/torch/csrc/jit/passes/frozen_conv_folding.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7233930Z copying torch/include/torch/csrc/jit/passes/constant_propagation.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7237850Z copying torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7239170Z copying torch/include/torch/csrc/jit/passes/insert_guards.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7243270Z copying torch/include/torch/csrc/jit/passes/variadic_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7247600Z copying torch/include/torch/csrc/jit/passes/refine_tuple_types.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7248740Z copying torch/include/torch/csrc/jit/passes/inliner.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7252620Z copying torch/include/torch/csrc/jit/passes/lower_grad_of.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7256920Z copying torch/include/torch/csrc/jit/passes/normalize_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7262070Z copying torch/include/torch/csrc/jit/passes/device_type_analysis.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7264510Z copying torch/include/torch/csrc/jit/passes/vulkan_rewrite.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7265760Z copying torch/include/torch/csrc/jit/passes/erase_number_types.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7271380Z copying torch/include/torch/csrc/jit/passes/integer_value_refinement.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7272480Z copying torch/include/torch/csrc/jit/passes/fold_linear_bn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7279210Z copying torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7280350Z copying torch/include/torch/csrc/jit/passes/graph_fuser.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7286770Z copying torch/include/torch/csrc/jit/passes/fold_conv_bn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7288940Z copying torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7290110Z copying torch/include/torch/csrc/jit/passes/inline_forked_closures.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7294140Z copying torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7299190Z copying torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7301910Z copying torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7303120Z copying torch/include/torch/csrc/jit/passes/add_if_then_else.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7309700Z copying torch/include/torch/csrc/jit/passes/decompose_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7310850Z copying torch/include/torch/csrc/jit/passes/peephole_non_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7312060Z copying torch/include/torch/csrc/jit/passes/remove_inplace_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7318910Z copying torch/include/torch/csrc/jit/passes/inline_fork_wait.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7320110Z copying torch/include/torch/csrc/jit/passes/check_strict_fusion.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7326670Z copying torch/include/torch/csrc/jit/passes/concat_opt.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7327890Z copying torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7334610Z copying torch/include/torch/csrc/jit/passes/eliminate_no_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7335780Z copying torch/include/torch/csrc/jit/passes/requires_grad_analysis.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7337000Z copying torch/include/torch/csrc/jit/passes/dead_code_elimination.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7341770Z copying torch/include/torch/csrc/jit/passes/clear_profiling.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7342990Z copying torch/include/torch/csrc/jit/passes/create_functional_graphs.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7349680Z copying torch/include/torch/csrc/jit/passes/bailout_graph.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7350850Z copying torch/include/torch/csrc/jit/passes/lower_tuples.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7352080Z copying torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7358960Z copying torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7360150Z copying torch/include/torch/csrc/jit/passes/canonicalize.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7366590Z copying torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7367820Z copying torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7374350Z copying torch/include/torch/csrc/jit/passes/loop_unrolling.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7375600Z copying torch/include/torch/csrc/jit/passes/shape_analysis.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7376860Z copying torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7383260Z copying torch/include/torch/csrc/jit/passes/remove_exceptions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7388010Z copying torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7392200Z copying torch/include/torch/csrc/jit/passes/inplace_check.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7397420Z copying torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7400940Z copying torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7404020Z copying torch/include/torch/csrc/jit/passes/pass_manager.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7406220Z copying torch/include/torch/csrc/jit/passes/onnx.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7409260Z copying torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7414420Z copying torch/include/torch/csrc/jit/passes/lift_closures.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7418800Z copying torch/include/torch/csrc/jit/passes/autocast.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7423740Z copying torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7425170Z copying torch/include/torch/csrc/jit/passes/lower_graph.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:07.7426290Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:07.7427330Z copying torch/include/torch/csrc/jit/passes/quantization/helper.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:07.7429800Z copying torch/include/torch/csrc/jit/passes/quantization/quantization_type.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:07.7432180Z copying torch/include/torch/csrc/jit/passes/quantization/insert_observers.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:07.7433550Z copying torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:07.7435710Z copying torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:07.7441530Z copying torch/include/torch/csrc/jit/passes/quantization/finalize.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:07.7444090Z copying torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:07.7449030Z copying torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:07.7450480Z copying torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:07.7452830Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/utils 2025-01-24T02:56:07.7453810Z copying torch/include/torch/csrc/jit/passes/utils/optimization_utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/utils 2025-01-24T02:56:07.7457440Z copying torch/include/torch/csrc/jit/passes/utils/memory_dag.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/utils 2025-01-24T02:56:07.7459030Z copying torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/utils 2025-01-24T02:56:07.7465100Z copying torch/include/torch/csrc/jit/passes/utils/op_registry.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/utils 2025-01-24T02:56:07.7467290Z copying torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/utils 2025-01-24T02:56:07.7473290Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7474260Z copying torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7475530Z copying torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7476810Z copying torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7481200Z copying torch/include/torch/csrc/jit/runtime/operator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7482400Z copying torch/include/torch/csrc/jit/runtime/script_profile.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7489340Z copying torch/include/torch/csrc/jit/runtime/interpreter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7490560Z copying torch/include/torch/csrc/jit/runtime/register_ops_utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7497220Z copying torch/include/torch/csrc/jit/runtime/jit_exception.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7498550Z copying torch/include/torch/csrc/jit/runtime/exception_message.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7499760Z copying torch/include/torch/csrc/jit/runtime/argument_spec.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7505720Z copying torch/include/torch/csrc/jit/runtime/shape_function_registry.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7506960Z copying torch/include/torch/csrc/jit/runtime/logging.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7513400Z copying torch/include/torch/csrc/jit/runtime/jit_trace.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7514650Z copying torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7515990Z copying torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7521380Z copying torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7523620Z copying torch/include/torch/csrc/jit/runtime/custom_operator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7528980Z copying torch/include/torch/csrc/jit/runtime/vararg_functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7530430Z copying torch/include/torch/csrc/jit/runtime/graph_iterator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7531580Z copying torch/include/torch/csrc/jit/runtime/symbolic_script.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7538040Z copying torch/include/torch/csrc/jit/runtime/variable_tensor_list.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7539310Z copying torch/include/torch/csrc/jit/runtime/decomposition_registry.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7545950Z copying torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7554210Z copying torch/include/torch/csrc/jit/runtime/autodiff.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7555410Z copying torch/include/torch/csrc/jit/runtime/print_handler.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7556610Z copying torch/include/torch/csrc/jit/runtime/profiling_record.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7561930Z copying torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7563200Z copying torch/include/torch/csrc/jit/runtime/graph_executor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7569740Z copying torch/include/torch/csrc/jit/runtime/operator_options.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7574750Z copying torch/include/torch/csrc/jit/runtime/instruction.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7575840Z copying torch/include/torch/csrc/jit/runtime/graph_executor_impl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:07.7578380Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:07.7579190Z copying torch/include/torch/csrc/jit/ir/named_value.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:07.7580520Z copying torch/include/torch/csrc/jit/ir/irparser.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:07.7586210Z copying torch/include/torch/csrc/jit/ir/ir.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:07.7588090Z copying torch/include/torch/csrc/jit/ir/graph_node_list.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:07.7591950Z copying torch/include/torch/csrc/jit/ir/ir_views.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:07.7594670Z copying torch/include/torch/csrc/jit/ir/alias_analysis.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:07.7596720Z copying torch/include/torch/csrc/jit/ir/attributes.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:07.7598590Z copying torch/include/torch/csrc/jit/ir/type_hashing.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:07.7603850Z copying torch/include/torch/csrc/jit/ir/constants.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:07.7605310Z copying torch/include/torch/csrc/jit/ir/subgraph_matcher.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:07.7611580Z copying torch/include/torch/csrc/jit/ir/scope.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:07.7613680Z copying torch/include/torch/csrc/jit/ir/graph_utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:07.7619590Z copying torch/include/torch/csrc/jit/ir/node_hashing.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:07.7620990Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7622040Z copying torch/include/torch/csrc/jit/frontend/error_report.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7623240Z copying torch/include/torch/csrc/jit/frontend/source_range.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7627220Z copying torch/include/torch/csrc/jit/frontend/edit_distance.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7629760Z copying torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7634810Z copying torch/include/torch/csrc/jit/frontend/schema_matching.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7636930Z copying torch/include/torch/csrc/jit/frontend/function_schema_parser.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7638090Z copying torch/include/torch/csrc/jit/frontend/tree_views.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7645320Z copying torch/include/torch/csrc/jit/frontend/ir_emitter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7654630Z copying torch/include/torch/csrc/jit/frontend/parser.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7661070Z copying torch/include/torch/csrc/jit/frontend/strtod.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7662220Z copying torch/include/torch/csrc/jit/frontend/tree.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7663600Z copying torch/include/torch/csrc/jit/frontend/concrete_module_type.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7668770Z copying torch/include/torch/csrc/jit/frontend/builtin_functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7670890Z copying torch/include/torch/csrc/jit/frontend/exit_transforms.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7676400Z copying torch/include/torch/csrc/jit/frontend/parse_string_literal.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7677560Z copying torch/include/torch/csrc/jit/frontend/sugared_value.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7679000Z copying torch/include/torch/csrc/jit/frontend/inline_loop_condition.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7684090Z copying torch/include/torch/csrc/jit/frontend/name_mangler.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7685190Z copying torch/include/torch/csrc/jit/frontend/tracer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7691990Z copying torch/include/torch/csrc/jit/frontend/resolver.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7693310Z copying torch/include/torch/csrc/jit/frontend/script_type_parser.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7699960Z copying torch/include/torch/csrc/jit/frontend/schema_type_parser.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7701090Z copying torch/include/torch/csrc/jit/frontend/lexer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7702380Z copying torch/include/torch/csrc/jit/frontend/versioned_symbols.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7708480Z copying torch/include/torch/csrc/jit/frontend/convert_to_ssa.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7709600Z copying torch/include/torch/csrc/jit/frontend/source_ref.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7716410Z copying torch/include/torch/csrc/jit/frontend/mini_environment.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7724120Z copying torch/include/torch/csrc/jit/frontend/parser_constants.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:07.7725090Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/api 2025-01-24T02:56:07.7725920Z copying torch/include/torch/csrc/jit/api/function_impl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/api 2025-01-24T02:56:07.7727060Z copying torch/include/torch/csrc/jit/api/method.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/api 2025-01-24T02:56:07.7731670Z copying torch/include/torch/csrc/jit/api/compilation_unit.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/api 2025-01-24T02:56:07.7733990Z copying torch/include/torch/csrc/jit/api/object.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/api 2025-01-24T02:56:07.7739340Z copying torch/include/torch/csrc/jit/api/module.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/api 2025-01-24T02:56:07.7741070Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7742000Z copying torch/include/torch/csrc/jit/serialization/import_read.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7743190Z copying torch/include/torch/csrc/jit/serialization/export_bytecode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7748190Z copying torch/include/torch/csrc/jit/serialization/import_source.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7749660Z copying torch/include/torch/csrc/jit/serialization/export.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7756000Z copying torch/include/torch/csrc/jit/serialization/import_export_helpers.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7757550Z copying torch/include/torch/csrc/jit/serialization/type_name_uniquer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7764710Z copying torch/include/torch/csrc/jit/serialization/pickler.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7766340Z copying torch/include/torch/csrc/jit/serialization/storage_context.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7767270Z copying torch/include/torch/csrc/jit/serialization/python_print.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7771700Z copying torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7773770Z copying torch/include/torch/csrc/jit/serialization/import_export_functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7780020Z copying torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7781650Z copying torch/include/torch/csrc/jit/serialization/pickle.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7782650Z copying torch/include/torch/csrc/jit/serialization/import_export_constants.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7788350Z copying torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7789910Z copying torch/include/torch/csrc/jit/serialization/import.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7796590Z copying torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7797590Z copying torch/include/torch/csrc/jit/serialization/unpickler.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7800300Z copying torch/include/torch/csrc/jit/serialization/source_range_serialization.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7801320Z copying torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7805110Z copying torch/include/torch/csrc/jit/serialization/onnx.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:07.7806700Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python 2025-01-24T02:56:07.7807190Z copying torch/include/torch/csrc/jit/python/pybind.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python 2025-01-24T02:56:07.7808740Z copying torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python 2025-01-24T02:56:07.7813790Z copying torch/include/torch/csrc/jit/python/python_ir.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python 2025-01-24T02:56:07.7815140Z copying torch/include/torch/csrc/jit/python/script_init.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python 2025-01-24T02:56:07.7816590Z copying torch/include/torch/csrc/jit/python/python_tree_views.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python 2025-01-24T02:56:07.7821740Z copying torch/include/torch/csrc/jit/python/python_list.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python 2025-01-24T02:56:07.7823200Z copying torch/include/torch/csrc/jit/python/python_ivalue.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python 2025-01-24T02:56:07.7829820Z copying torch/include/torch/csrc/jit/python/python_dict.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python 2025-01-24T02:56:07.7830710Z copying torch/include/torch/csrc/jit/python/python_custom_class.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python 2025-01-24T02:56:07.7837620Z copying torch/include/torch/csrc/jit/python/update_graph_executor_opt.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python 2025-01-24T02:56:07.7838530Z copying torch/include/torch/csrc/jit/python/python_tracer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python 2025-01-24T02:56:07.7840140Z copying torch/include/torch/csrc/jit/python/pybind_utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python 2025-01-24T02:56:07.7845360Z copying torch/include/torch/csrc/jit/python/init.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python 2025-01-24T02:56:07.7846800Z copying torch/include/torch/csrc/jit/python/python_sugared_value.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python 2025-01-24T02:56:07.7852710Z copying torch/include/torch/csrc/jit/python/python_arg_flatten.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python 2025-01-24T02:56:07.7854730Z copying torch/include/torch/csrc/jit/python/module_python.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python 2025-01-24T02:56:07.7856090Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7856690Z copying torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7862060Z copying torch/include/torch/csrc/jit/mobile/parse_operators.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7863600Z copying torch/include/torch/csrc/jit/mobile/observer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7871050Z copying torch/include/torch/csrc/jit/mobile/upgrader_mobile.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7872510Z copying torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7878940Z copying torch/include/torch/csrc/jit/mobile/quantization.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7880390Z copying torch/include/torch/csrc/jit/mobile/profiler_edge.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7886490Z copying torch/include/torch/csrc/jit/mobile/code.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7888040Z copying torch/include/torch/csrc/jit/mobile/interpreter.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7894570Z copying torch/include/torch/csrc/jit/mobile/frame.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7895940Z copying torch/include/torch/csrc/jit/mobile/method.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7896830Z copying torch/include/torch/csrc/jit/mobile/debug_info.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7903070Z copying torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7904550Z copying torch/include/torch/csrc/jit/mobile/prim_ops_registery.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7911740Z copying torch/include/torch/csrc/jit/mobile/parse_bytecode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7913170Z copying torch/include/torch/csrc/jit/mobile/import_data.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7914090Z copying torch/include/torch/csrc/jit/mobile/import_export_common.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7923260Z copying torch/include/torch/csrc/jit/mobile/type_parser.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7924000Z copying torch/include/torch/csrc/jit/mobile/import.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7927520Z copying torch/include/torch/csrc/jit/mobile/module.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7928580Z copying torch/include/torch/csrc/jit/mobile/function.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7930160Z copying torch/include/torch/csrc/jit/mobile/file_format.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:07.7935320Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/testing 2025-01-24T02:56:07.7935850Z copying torch/include/torch/csrc/jit/testing/file_check.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/testing 2025-01-24T02:56:07.7937400Z copying torch/include/torch/csrc/jit/testing/hooks_for_testing.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/testing 2025-01-24T02:56:07.7942630Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7943280Z copying torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7944860Z copying torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7945830Z copying torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7952320Z copying torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7953750Z copying torch/include/torch/csrc/jit/tensorexpr/lowerings.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7961060Z copying torch/include/torch/csrc/jit/tensorexpr/graph_opt.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7962530Z copying torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7969230Z copying torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7970630Z copying torch/include/torch/csrc/jit/tensorexpr/types.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7971600Z copying torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7974680Z copying torch/include/torch/csrc/jit/tensorexpr/ir.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7978850Z copying torch/include/torch/csrc/jit/tensorexpr/exceptions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7980360Z copying torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7986180Z copying torch/include/torch/csrc/jit/tensorexpr/hash_provider.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7988730Z copying torch/include/torch/csrc/jit/tensorexpr/ir_printer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7990210Z copying torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7995450Z copying torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7996970Z copying torch/include/torch/csrc/jit/tensorexpr/expr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.7999260Z copying torch/include/torch/csrc/jit/tensorexpr/cuda_random.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8004810Z copying torch/include/torch/csrc/jit/tensorexpr/codegen.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8008020Z copying torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8012260Z copying torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8013740Z copying torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8016080Z copying torch/include/torch/csrc/jit/tensorexpr/eval.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8020580Z copying torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8021550Z copying torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8028090Z copying torch/include/torch/csrc/jit/tensorexpr/block_codegen.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8030640Z copying torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8036290Z copying torch/include/torch/csrc/jit/tensorexpr/kernel.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8037970Z copying torch/include/torch/csrc/jit/tensorexpr/loopnest.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8039720Z copying torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8045520Z copying torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8053400Z copying torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8054310Z copying torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8060840Z copying torch/include/torch/csrc/jit/tensorexpr/external_functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8062330Z copying torch/include/torch/csrc/jit/tensorexpr/stmt.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8063790Z copying torch/include/torch/csrc/jit/tensorexpr/half_support.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8066880Z copying torch/include/torch/csrc/jit/tensorexpr/registerizer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8071060Z copying torch/include/torch/csrc/jit/tensorexpr/reduction.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8074800Z copying torch/include/torch/csrc/jit/tensorexpr/tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8076270Z copying torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8080720Z copying torch/include/torch/csrc/jit/tensorexpr/analysis.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:07.8083880Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:07.8084510Z copying torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:07.8089080Z copying torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:07.8090560Z copying torch/include/torch/csrc/jit/tensorexpr/operators/operators.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:07.8092860Z copying torch/include/torch/csrc/jit/tensorexpr/operators/misc.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:07.8097900Z copying torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:07.8100940Z copying torch/include/torch/csrc/jit/tensorexpr/operators/norm.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:07.8105160Z copying torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:07.8106720Z copying torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:07.8109700Z copying torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:07.8113930Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/codegen 2025-01-24T02:56:07.8114320Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/codegen/cuda 2025-01-24T02:56:07.8115510Z copying torch/include/torch/csrc/jit/codegen/cuda/interface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/codegen/cuda 2025-01-24T02:56:07.8284390Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/onnx 2025-01-24T02:56:07.8284870Z copying torch/include/torch/csrc/onnx/back_compat.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/onnx 2025-01-24T02:56:07.8286560Z copying torch/include/torch/csrc/onnx/init.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/onnx 2025-01-24T02:56:07.8287510Z copying torch/include/torch/csrc/onnx/onnx.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/onnx 2025-01-24T02:56:07.8289070Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler 2025-01-24T02:56:07.8289620Z copying torch/include/torch/csrc/profiler/combined_traceback.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler 2025-01-24T02:56:07.8291450Z copying torch/include/torch/csrc/profiler/events.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler 2025-01-24T02:56:07.8292840Z copying torch/include/torch/csrc/profiler/kineto_shim.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler 2025-01-24T02:56:07.8294490Z copying torch/include/torch/csrc/profiler/api.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler 2025-01-24T02:56:07.8295980Z copying torch/include/torch/csrc/profiler/kineto_client_interface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler 2025-01-24T02:56:07.8297580Z copying torch/include/torch/csrc/profiler/util.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler 2025-01-24T02:56:07.8299040Z copying torch/include/torch/csrc/profiler/containers.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler 2025-01-24T02:56:07.8300590Z copying torch/include/torch/csrc/profiler/collection.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler 2025-01-24T02:56:07.8302440Z copying torch/include/torch/csrc/profiler/perf.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler 2025-01-24T02:56:07.8304020Z copying torch/include/torch/csrc/profiler/data_flow.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler 2025-01-24T02:56:07.8305410Z copying torch/include/torch/csrc/profiler/perf-inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler 2025-01-24T02:56:07.8307050Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/orchestration 2025-01-24T02:56:07.8307660Z copying torch/include/torch/csrc/profiler/orchestration/vulkan.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/orchestration 2025-01-24T02:56:07.8309070Z copying torch/include/torch/csrc/profiler/orchestration/observer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/orchestration 2025-01-24T02:56:07.8310770Z copying torch/include/torch/csrc/profiler/orchestration/python_tracer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/orchestration 2025-01-24T02:56:07.8311610Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/standalone 2025-01-24T02:56:07.8312560Z copying torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/standalone 2025-01-24T02:56:07.8314140Z copying torch/include/torch/csrc/profiler/standalone/nvtx_observer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/standalone 2025-01-24T02:56:07.8315190Z copying torch/include/torch/csrc/profiler/standalone/itt_observer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/standalone 2025-01-24T02:56:07.8316880Z copying torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/standalone 2025-01-24T02:56:07.8318090Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/stubs 2025-01-24T02:56:07.8318610Z copying torch/include/torch/csrc/profiler/stubs/base.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/stubs 2025-01-24T02:56:07.8320170Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:07.8320730Z copying torch/include/torch/csrc/profiler/unwind/unwinder.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:07.8322180Z copying torch/include/torch/csrc/profiler/unwind/dwarf_enums.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:07.8323190Z copying torch/include/torch/csrc/profiler/unwind/unwind.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:07.8324790Z copying torch/include/torch/csrc/profiler/unwind/sections.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:07.8325820Z copying torch/include/torch/csrc/profiler/unwind/unwind_error.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:07.8327360Z copying torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:07.8328420Z copying torch/include/torch/csrc/profiler/unwind/debug_info.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:07.8330080Z copying torch/include/torch/csrc/profiler/unwind/action.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:07.8331520Z copying torch/include/torch/csrc/profiler/unwind/mem_file.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:07.8332500Z copying torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:07.8334070Z copying torch/include/torch/csrc/profiler/unwind/fde.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:07.8336010Z copying torch/include/torch/csrc/profiler/unwind/communicate.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:07.8336860Z copying torch/include/torch/csrc/profiler/unwind/lexer.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:07.8338530Z copying torch/include/torch/csrc/profiler/unwind/line_number_program.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:07.8340030Z copying torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:07.8341570Z copying torch/include/torch/csrc/profiler/unwind/range_table.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:07.8342370Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/python 2025-01-24T02:56:07.8343210Z copying torch/include/torch/csrc/profiler/python/pybind.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/python 2025-01-24T02:56:07.8344730Z copying torch/include/torch/csrc/profiler/python/combined_traceback.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/python 2025-01-24T02:56:07.8346140Z copying torch/include/torch/csrc/profiler/python/init.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/python 2025-01-24T02:56:07.8347340Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8347870Z copying torch/include/torch/csrc/utils/object_ptr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8349450Z copying torch/include/torch/csrc/utils/tensor_numpy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8350640Z copying torch/include/torch/csrc/utils/tensor_dtypes.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8352330Z copying torch/include/torch/csrc/utils/python_tuples.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8352990Z copying torch/include/torch/csrc/utils/nested.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8354650Z copying torch/include/torch/csrc/utils/python_raii.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8356010Z copying torch/include/torch/csrc/utils/python_numbers.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8357450Z copying torch/include/torch/csrc/utils/python_scalars.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8358360Z copying torch/include/torch/csrc/utils/pybind.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8360750Z copying torch/include/torch/csrc/utils/tensor_types.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8362180Z copying torch/include/torch/csrc/utils/tensor_memoryformats.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8363580Z copying torch/include/torch/csrc/utils/python_arg_parser.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8365240Z copying torch/include/torch/csrc/utils/python_torch_function_mode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8366510Z copying torch/include/torch/csrc/utils/schema_info.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8368030Z copying torch/include/torch/csrc/utils/generated_serialization_types.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8369790Z copying torch/include/torch/csrc/utils/tensor_new.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8371180Z copying torch/include/torch/csrc/utils/tensor_qschemes.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8372030Z copying torch/include/torch/csrc/utils/verbose.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8373650Z copying torch/include/torch/csrc/utils/python_dispatch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8375060Z copying torch/include/torch/csrc/utils/tensor_list.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8376510Z copying torch/include/torch/csrc/utils/invalid_arguments.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8377390Z copying torch/include/torch/csrc/utils/pythoncapi_compat.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8379200Z copying torch/include/torch/csrc/utils/cpp_stacktraces.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8380610Z copying torch/include/torch/csrc/utils/device_lazy_init.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8381970Z copying torch/include/torch/csrc/utils/python_strings.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8383210Z copying torch/include/torch/csrc/utils/python_symnode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8384410Z copying torch/include/torch/csrc/utils/byte_order.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8385960Z copying torch/include/torch/csrc/utils/pycfunction_helpers.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8387300Z copying torch/include/torch/csrc/utils/cuda_enabled.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8388150Z copying torch/include/torch/csrc/utils/numpy_stub.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8389690Z copying torch/include/torch/csrc/utils/out_types.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8391190Z copying torch/include/torch/csrc/utils/tensor_layouts.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8391930Z copying torch/include/torch/csrc/utils/structseq.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8393280Z copying torch/include/torch/csrc/utils/throughput_benchmark.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8394950Z copying torch/include/torch/csrc/utils/disable_torch_function.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8395920Z copying torch/include/torch/csrc/utils/pyobject_preservation.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8397580Z copying torch/include/torch/csrc/utils/throughput_benchmark-inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8399090Z copying torch/include/torch/csrc/utils/tensor_flatten.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8399940Z copying torch/include/torch/csrc/utils/torch_dispatch_mode.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8401590Z copying torch/include/torch/csrc/utils/tensor_apply.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8402540Z copying torch/include/torch/csrc/utils/init.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8404040Z copying torch/include/torch/csrc/utils/python_compat.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8405130Z copying torch/include/torch/csrc/utils/six.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8406620Z copying torch/include/torch/csrc/utils/python_stub.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8407960Z copying torch/include/torch/csrc/utils/variadic.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils 2025-01-24T02:56:07.8409180Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/tensor 2025-01-24T02:56:07.8409710Z copying torch/include/torch/csrc/tensor/python_tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/tensor 2025-01-24T02:56:07.8411250Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy 2025-01-24T02:56:07.8411540Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/backend 2025-01-24T02:56:07.8412300Z copying torch/include/torch/csrc/lazy/backend/backend_interface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/backend 2025-01-24T02:56:07.8413960Z copying torch/include/torch/csrc/lazy/backend/backend_data.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/backend 2025-01-24T02:56:07.8415430Z copying torch/include/torch/csrc/lazy/backend/lowering_context.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/backend 2025-01-24T02:56:07.8418420Z copying torch/include/torch/csrc/lazy/backend/backend_device.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/backend 2025-01-24T02:56:07.8419720Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8420230Z copying torch/include/torch/csrc/lazy/core/debug_util.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8425710Z copying torch/include/torch/csrc/lazy/core/tensor_impl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8427230Z copying torch/include/torch/csrc/lazy/core/config.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8434140Z copying torch/include/torch/csrc/lazy/core/multi_wait.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8435530Z copying torch/include/torch/csrc/lazy/core/ir.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8436740Z copying torch/include/torch/csrc/lazy/core/permutation_util.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8442050Z copying torch/include/torch/csrc/lazy/core/lazy_graph_executor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8443710Z copying torch/include/torch/csrc/lazy/core/cache.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8449780Z copying torch/include/torch/csrc/lazy/core/tensor_util.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8451240Z copying torch/include/torch/csrc/lazy/core/shape.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8452190Z copying torch/include/torch/csrc/lazy/core/thread_pool.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8459060Z copying torch/include/torch/csrc/lazy/core/unique.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8460490Z copying torch/include/torch/csrc/lazy/core/shape_inference.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8466770Z copying torch/include/torch/csrc/lazy/core/util.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8468230Z copying torch/include/torch/csrc/lazy/core/ir_util.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8469630Z copying torch/include/torch/csrc/lazy/core/metrics.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8475570Z copying torch/include/torch/csrc/lazy/core/ir_dump_util.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8477000Z copying torch/include/torch/csrc/lazy/core/dynamic_ir.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8482680Z copying torch/include/torch/csrc/lazy/core/ir_builder.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8484280Z copying torch/include/torch/csrc/lazy/core/helpers.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8485680Z copying torch/include/torch/csrc/lazy/core/trie.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8492880Z copying torch/include/torch/csrc/lazy/core/tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8494370Z copying torch/include/torch/csrc/lazy/core/hash.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8500840Z copying torch/include/torch/csrc/lazy/core/ir_metadata.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:07.8502140Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/internal_ops 2025-01-24T02:56:07.8502740Z copying torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/internal_ops 2025-01-24T02:56:07.8504310Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/ops 2025-01-24T02:56:07.8504830Z copying torch/include/torch/csrc/lazy/core/ops/utils.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/ops 2025-01-24T02:56:07.8506390Z copying torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/ops 2025-01-24T02:56:07.8508550Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/python 2025-01-24T02:56:07.8509070Z copying torch/include/torch/csrc/lazy/python/python_util.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/python 2025-01-24T02:56:07.8510560Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:07.8511280Z copying torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:07.8513640Z copying torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:07.8517600Z copying torch/include/torch/csrc/lazy/ts_backend/config.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:07.8518530Z copying torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:07.8523290Z copying torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:07.8526310Z copying torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:07.8531810Z copying torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:07.8533210Z copying torch/include/torch/csrc/lazy/ts_backend/ts_node.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:07.8535900Z copying torch/include/torch/csrc/lazy/ts_backend/ir_builder.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:07.8541220Z copying torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:07.8544160Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/xpu 2025-01-24T02:56:07.8544610Z copying torch/include/torch/csrc/xpu/Event.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/xpu 2025-01-24T02:56:07.8548180Z copying torch/include/torch/csrc/xpu/Stream.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/xpu 2025-01-24T02:56:07.8557220Z copying torch/include/torch/csrc/xpu/Module.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/xpu 2025-01-24T02:56:07.8557620Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8557990Z copying torch/include/pybind11/attr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8561860Z copying torch/include/pybind11/embed.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8564660Z copying torch/include/pybind11/numpy.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8566730Z copying torch/include/pybind11/pybind11.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8570870Z copying torch/include/pybind11/operators.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8572860Z copying torch/include/pybind11/iostream.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8578950Z copying torch/include/pybind11/gil.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8580430Z copying torch/include/pybind11/chrono.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8581720Z copying torch/include/pybind11/typing.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8588760Z copying torch/include/pybind11/stl_bind.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8590460Z copying torch/include/pybind11/buffer_info.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8597430Z copying torch/include/pybind11/options.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8598800Z copying torch/include/pybind11/functional.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8606210Z copying torch/include/pybind11/stl.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8607960Z copying torch/include/pybind11/common.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8609220Z copying torch/include/pybind11/eval.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8613900Z copying torch/include/pybind11/cast.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8615700Z copying torch/include/pybind11/type_caster_pyobject_ptr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8617060Z copying torch/include/pybind11/eigen.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8622330Z copying torch/include/pybind11/gil_safe_call_once.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8623660Z copying torch/include/pybind11/pytypes.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8629960Z copying torch/include/pybind11/complex.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11 2025-01-24T02:56:07.8631230Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail 2025-01-24T02:56:07.8631760Z copying torch/include/pybind11/detail/type_caster_base.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail 2025-01-24T02:56:07.8633690Z copying torch/include/pybind11/detail/exception_translation.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail 2025-01-24T02:56:07.8637900Z copying torch/include/pybind11/detail/typeid.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail 2025-01-24T02:56:07.8639410Z copying torch/include/pybind11/detail/descr.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail 2025-01-24T02:56:07.8645240Z copying torch/include/pybind11/detail/internals.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail 2025-01-24T02:56:07.8647320Z copying torch/include/pybind11/detail/cpp_conduit.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail 2025-01-24T02:56:07.8648820Z copying torch/include/pybind11/detail/value_and_holder.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail 2025-01-24T02:56:07.8654900Z copying torch/include/pybind11/detail/common.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail 2025-01-24T02:56:07.8656530Z copying torch/include/pybind11/detail/class.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail 2025-01-24T02:56:07.8662390Z copying torch/include/pybind11/detail/init.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail 2025-01-24T02:56:07.8663820Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/eigen 2025-01-24T02:56:07.8664240Z copying torch/include/pybind11/eigen/matrix.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/eigen 2025-01-24T02:56:07.8669450Z copying torch/include/pybind11/eigen/common.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/eigen 2025-01-24T02:56:07.8670820Z copying torch/include/pybind11/eigen/tensor.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/eigen 2025-01-24T02:56:07.8672290Z copying torch/_inductor/codegen/cpp_prefix.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen 2025-01-24T02:56:07.8855540Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/aoti_runtime 2025-01-24T02:56:07.8856120Z copying torch/_inductor/codegen/aoti_runtime/implementation.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/aoti_runtime 2025-01-24T02:56:07.8863510Z copying torch/_inductor/codegen/aoti_runtime/interface.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/aoti_runtime 2025-01-24T02:56:07.8870740Z copying torch/_export/serde/schema.yaml -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde 2025-01-24T02:56:07.8878560Z copying torch/_export/serde/export_schema.thrift -> build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde 2025-01-24T02:56:07.8885840Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/share 2025-01-24T02:56:07.8886090Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake 2025-01-24T02:56:07.8886700Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/ATen 2025-01-24T02:56:07.8887420Z copying torch/share/cmake/ATen/ATenConfig.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/ATen 2025-01-24T02:56:07.8889010Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2 2025-01-24T02:56:07.8889450Z copying torch/share/cmake/Caffe2/Caffe2Config.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2 2025-01-24T02:56:07.8891150Z copying torch/share/cmake/Caffe2/FindSYCLToolkit.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2 2025-01-24T02:56:07.8892530Z copying torch/share/cmake/Caffe2/FindCUSPARSELT.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2 2025-01-24T02:56:07.8893420Z copying torch/share/cmake/Caffe2/FindCUDAToolkit.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2 2025-01-24T02:56:07.8895120Z copying torch/share/cmake/Caffe2/Caffe2Targets.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2 2025-01-24T02:56:07.8896530Z copying torch/share/cmake/Caffe2/Caffe2Targets-release.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2 2025-01-24T02:56:07.8897970Z copying torch/share/cmake/Caffe2/FindCUDSS.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2 2025-01-24T02:56:07.8899420Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public 2025-01-24T02:56:07.8899950Z copying torch/share/cmake/Caffe2/public/LoadHIP.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public 2025-01-24T02:56:07.8901300Z copying torch/share/cmake/Caffe2/public/mkldnn.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public 2025-01-24T02:56:07.8902820Z copying torch/share/cmake/Caffe2/public/glog.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public 2025-01-24T02:56:07.8904310Z copying torch/share/cmake/Caffe2/public/utils.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public 2025-01-24T02:56:07.8905870Z copying torch/share/cmake/Caffe2/public/protobuf.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public 2025-01-24T02:56:07.8907010Z copying torch/share/cmake/Caffe2/public/mkl.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public 2025-01-24T02:56:07.8908650Z copying torch/share/cmake/Caffe2/public/gflags.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public 2025-01-24T02:56:07.8910020Z copying torch/share/cmake/Caffe2/public/cuda.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public 2025-01-24T02:56:07.8911710Z copying torch/share/cmake/Caffe2/public/xpu.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public 2025-01-24T02:56:07.8913110Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-01-24T02:56:07.8913740Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-01-24T02:56:07.8915490Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-01-24T02:56:07.8916300Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-01-24T02:56:07.8917220Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-01-24T02:56:07.8919310Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-01-24T02:56:07.8920320Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-01-24T02:56:07.8922440Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-01-24T02:56:07.8923840Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-01-24T02:56:07.8924560Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-01-24T02:56:07.8926180Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-01-24T02:56:07.8963420Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-01-24T02:56:07.8969880Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-01-24T02:56:07.8971050Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Torch 2025-01-24T02:56:07.8971480Z copying torch/share/cmake/Torch/TorchConfig.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Torch 2025-01-24T02:56:07.8973100Z copying torch/share/cmake/Torch/TorchConfigVersion.cmake -> build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Torch 2025-01-24T02:56:07.8974490Z copying torch/utils/benchmark/utils/timeit_template.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils 2025-01-24T02:56:07.8983680Z copying torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/valgrind_wrapper 2025-01-24T02:56:07.8991690Z copying torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/valgrind_wrapper 2025-01-24T02:56:07.8997900Z copying torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/valgrind_wrapper 2025-01-24T02:56:07.9001390Z copying torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/valgrind_wrapper 2025-01-24T02:56:07.9002700Z copying torch/utils/model_dump/skeleton.html -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/model_dump 2025-01-24T02:56:07.9009830Z copying torch/utils/model_dump/code.js -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/model_dump 2025-01-24T02:56:07.9023150Z copying torch/utils/model_dump/preact.mjs -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/model_dump 2025-01-24T02:56:07.9030450Z copying torch/utils/model_dump/htm.mjs -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/model_dump 2025-01-24T02:56:07.9037190Z copying torch/lib/libtorch_python.dylib -> build/lib.macosx-11.1-arm64-cpython-39/torch/lib 2025-01-24T02:56:07.9617020Z copying torch/lib/libtorch.dylib -> build/lib.macosx-11.1-arm64-cpython-39/torch/lib 2025-01-24T02:56:07.9629530Z copying torch/lib/libtorch_global_deps.dylib -> build/lib.macosx-11.1-arm64-cpython-39/torch/lib 2025-01-24T02:56:07.9640800Z copying torch/lib/libtorch_cpu.dylib -> build/lib.macosx-11.1-arm64-cpython-39/torch/lib 2025-01-24T02:56:09.1424020Z copying torch/lib/libc10.dylib -> build/lib.macosx-11.1-arm64-cpython-39/torch/lib 2025-01-24T02:56:09.1545520Z creating build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto 2025-01-24T02:56:09.1546340Z copying torch/include/kineto/ClientInterface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto 2025-01-24T02:56:09.1548600Z copying torch/include/kineto/GenericTraceActivity.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto 2025-01-24T02:56:09.1549950Z copying torch/include/kineto/IActivityProfiler.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto 2025-01-24T02:56:09.1552750Z copying torch/include/kineto/Config.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto 2025-01-24T02:56:09.1663240Z copying torch/include/kineto/TraceSpan.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto 2025-01-24T02:56:09.1665540Z copying torch/include/kineto/LoggingAPI.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto 2025-01-24T02:56:09.1666790Z copying torch/include/kineto/ITraceActivity.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto 2025-01-24T02:56:09.1986730Z copying torch/include/kineto/ActivityProfilerInterface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto 2025-01-24T02:56:09.1988130Z copying torch/include/kineto/ActivityTraceInterface.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto 2025-01-24T02:56:09.1990500Z copying torch/include/kineto/output_base.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto 2025-01-24T02:56:09.1991450Z copying torch/include/kineto/ThreadUtil.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto 2025-01-24T02:56:09.1992890Z copying torch/include/kineto/ActivityType.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto 2025-01-24T02:56:09.1994350Z copying torch/include/kineto/libkineto.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto 2025-01-24T02:56:09.1996120Z copying torch/include/kineto/time_since_epoch.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto 2025-01-24T02:56:09.1997540Z copying torch/include/kineto/ILoggerObserver.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto 2025-01-24T02:56:09.1998910Z copying torch/include/kineto/AbstractConfig.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto 2025-01-24T02:56:09.2000700Z creating build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged 2025-01-24T02:56:09.2001560Z creating build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen 2025-01-24T02:56:09.2002280Z creating build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/native 2025-01-24T02:56:09.2003220Z copying torchgen/packaged/ATen/native/native_functions.yaml -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/native 2025-01-24T02:56:09.2060230Z copying torchgen/packaged/ATen/native/tags.yaml -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/native 2025-01-24T02:56:09.2067710Z creating build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2068690Z copying torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2074760Z copying torchgen/packaged/ATen/templates/TensorBody.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2087030Z copying torchgen/packaged/ATen/templates/UnboxingFunctions.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2092990Z copying torchgen/packaged/ATen/templates/DispatchKeyFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2098700Z copying torchgen/packaged/ATen/templates/RedispatchFunctions.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2104610Z copying torchgen/packaged/ATen/templates/Operators.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2110400Z copying torchgen/packaged/ATen/templates/NativeMetaFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2115780Z copying torchgen/packaged/ATen/templates/NativeFunction.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2121210Z copying torchgen/packaged/ATen/templates/Operator.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2127160Z copying torchgen/packaged/ATen/templates/RegistrationDeclarations.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2141050Z copying torchgen/packaged/ATen/templates/UfuncCPU.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2146620Z copying torchgen/packaged/ATen/templates/UfuncCUDA.cu -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2153240Z copying torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2165490Z copying torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2171220Z copying torchgen/packaged/ATen/templates/RedispatchFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2176740Z copying torchgen/packaged/ATen/templates/aten_interned_strings.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2182140Z copying torchgen/packaged/ATen/templates/MethodOperators.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2193030Z copying torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2197770Z copying torchgen/packaged/ATen/templates/Operators.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2202540Z copying torchgen/packaged/ATen/templates/ATenOpList.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2207420Z copying torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2214440Z copying torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2219800Z copying torchgen/packaged/ATen/templates/TensorMethods.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2224880Z copying torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2230030Z copying torchgen/packaged/ATen/templates/DispatchKeyFunction.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2235460Z copying torchgen/packaged/ATen/templates/UnboxingFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2242520Z copying torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2252180Z copying torchgen/packaged/ATen/templates/Functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2258800Z copying torchgen/packaged/ATen/templates/NativeFunctions.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2269080Z copying torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2274730Z copying torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2281340Z copying torchgen/packaged/ATen/templates/enum_tag.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2287000Z copying torchgen/packaged/ATen/templates/Functions.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2292670Z copying torchgen/packaged/ATen/templates/RegisterSchema.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2299130Z copying torchgen/packaged/ATen/templates/LazyNonNativeIr.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2304870Z copying torchgen/packaged/ATen/templates/Function.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2310280Z copying torchgen/packaged/ATen/templates/FunctionalInverses.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2315710Z copying torchgen/packaged/ATen/templates/NativeMetaFunction.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2321660Z copying torchgen/packaged/ATen/templates/LazyIr.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates 2025-01-24T02:56:09.2327290Z creating build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2328060Z copying torchgen/packaged/autograd/load_derivatives.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2342400Z copying torchgen/packaged/autograd/build.bzl -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2349580Z copying torchgen/packaged/autograd/gen_autograd.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2355810Z copying torchgen/packaged/autograd/gen_python_functions.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2374000Z copying torchgen/packaged/autograd/gen_autograd_functions.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2385970Z copying torchgen/packaged/autograd/gen_variable_factories.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2391970Z copying torchgen/packaged/autograd/__init__.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2393040Z copying torchgen/packaged/autograd/gen_variable_type.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2415290Z copying torchgen/packaged/autograd/README.md -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2420980Z copying torchgen/packaged/autograd/context.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2426470Z copying torchgen/packaged/autograd/gen_inplace_or_view_type.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2438590Z copying torchgen/packaged/autograd/deprecated.yaml -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2444620Z copying torchgen/packaged/autograd/BUILD.bazel -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2449910Z copying torchgen/packaged/autograd/gen_trace_type.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2466260Z copying torchgen/packaged/autograd/gen_annotated_fn_args.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2468660Z copying torchgen/packaged/autograd/derivatives.yaml -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2514770Z copying torchgen/packaged/autograd/gen_view_funcs.py -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd 2025-01-24T02:56:09.2522020Z creating build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2522960Z copying torchgen/packaged/autograd/templates/python_return_types.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2528440Z copying torchgen/packaged/autograd/templates/python_enum_tag.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2534070Z copying torchgen/packaged/autograd/templates/python_nn_functions.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2539880Z copying torchgen/packaged/autograd/templates/python_functions.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2545480Z copying torchgen/packaged/autograd/templates/python_fft_functions.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2551790Z copying torchgen/packaged/autograd/templates/python_sparse_functions.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2561400Z copying torchgen/packaged/autograd/templates/python_linalg_functions.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2566000Z copying torchgen/packaged/autograd/templates/ViewFuncs.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2571330Z copying torchgen/packaged/autograd/templates/python_return_types.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2576670Z copying torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2581700Z copying torchgen/packaged/autograd/templates/TraceType.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2586720Z copying torchgen/packaged/autograd/templates/python_variable_methods.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2605200Z copying torchgen/packaged/autograd/templates/ViewFuncs.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2610860Z copying torchgen/packaged/autograd/templates/python_functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2615770Z copying torchgen/packaged/autograd/templates/python_nested_functions.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2622060Z copying torchgen/packaged/autograd/templates/VariableType.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2627360Z copying torchgen/packaged/autograd/templates/annotated_fn_args.py.in -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2632680Z copying torchgen/packaged/autograd/templates/VariableType.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2639280Z copying torchgen/packaged/autograd/templates/Functions.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2645010Z copying torchgen/packaged/autograd/templates/python_special_functions.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2650870Z copying torchgen/packaged/autograd/templates/variable_factories.h -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2657400Z copying torchgen/packaged/autograd/templates/python_torch_functions.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2662700Z copying torchgen/packaged/autograd/templates/Functions.cpp -> build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates 2025-01-24T02:56:09.2668640Z copying torch/nn/parameter.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn 2025-01-24T02:56:09.2675100Z copying torch/nn/functional.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/nn 2025-01-24T02:56:09.2677060Z copying torch/utils/_config_typing.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils 2025-01-24T02:56:09.2682780Z copying torch/jit/_script.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/jit 2025-01-24T02:56:09.2684960Z copying torch/distributed/optim/zero_redundancy_optimizer.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim 2025-01-24T02:56:09.2690530Z copying torch/optim/_multi_tensor/__init__.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/optim/_multi_tensor 2025-01-24T02:56:09.2696440Z copying torch/utils/data/datapipes/datapipe.pyi -> build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes 2025-01-24T02:56:09.3114660Z running build_ext 2025-01-24T02:56:09.4130500Z -- Building with NumPy bindings 2025-01-24T02:56:09.4130810Z -- Not using cuDNN 2025-01-24T02:56:09.4131020Z -- Not using CUDA 2025-01-24T02:56:09.4131230Z -- Not using XPU 2025-01-24T02:56:09.4131430Z -- Not using MKLDNN 2025-01-24T02:56:09.4131640Z -- Not using NCCL 2025-01-24T02:56:09.4131870Z -- Building with distributed package: 2025-01-24T02:56:09.4132140Z -- USE_TENSORPIPE=False 2025-01-24T02:56:09.4132360Z -- USE_GLOO=False 2025-01-24T02:56:09.4132550Z -- USE_MPI=False 2025-01-24T02:56:09.4132740Z -- Building Executorch 2025-01-24T02:56:09.4132940Z -- Not using ITT 2025-01-24T02:56:09.4133660Z Copying functorch._C from functorch/functorch.so to /Users/ec2-user/runner/_work/pytorch/pytorch/build/lib.macosx-11.1-arm64-cpython-39/functorch/_C.cpython-39-darwin.so 2025-01-24T02:56:09.4134820Z copying functorch/functorch.so -> /Users/ec2-user/runner/_work/pytorch/pytorch/build/lib.macosx-11.1-arm64-cpython-39/functorch/_C.cpython-39-darwin.so 2025-01-24T02:56:09.5478320Z building 'torch._C' extension 2025-01-24T02:56:09.5478690Z creating build/temp.macosx-11.1-arm64-cpython-39 2025-01-24T02:56:09.5479680Z creating build/temp.macosx-11.1-arm64-cpython-39/torch 2025-01-24T02:56:09.5480150Z creating build/temp.macosx-11.1-arm64-cpython-39/torch/csrc 2025-01-24T02:56:09.5483510Z clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/include -arch arm64 -I/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/include -fPIC -O2 -isystem /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/include -arch arm64 -I/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/include/python3.9 -c torch/csrc/stub.c -o build/temp.macosx-11.1-arm64-cpython-39/torch/csrc/stub.o -Wall -Wextra -Wno-strict-overflow -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing 2025-01-24T02:56:09.6064220Z clang -bundle -undefined dynamic_lookup -Wl,-rpath,/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib -L/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib -L/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib -Wl,-rpath,/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib -L/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib build/temp.macosx-11.1-arm64-cpython-39/torch/csrc/stub.o -L/Users/ec2-user/runner/_work/pytorch/pytorch/torch/lib -ltorch_python -o build/lib.macosx-11.1-arm64-cpython-39/torch/_C.cpython-39-darwin.so -Wl,-rpath,@loader_path/lib 2025-01-24T02:56:09.6338140Z ld: warning: duplicate -rpath '/Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib' ignored 2025-01-24T02:56:09.6843330Z copying /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib/libomp.dylib -> build/lib.macosx-11.1-arm64-cpython-39/torch/lib 2025-01-24T02:56:10.3936650Z copying /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/include/omp.h -> build/lib.macosx-11.1-arm64-cpython-39/torch/include 2025-01-24T02:56:10.3971870Z /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145/lib/python3.9/site-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-01-24T02:56:10.3972660Z !! 2025-01-24T02:56:10.3972750Z 2025-01-24T02:56:10.3972890Z ******************************************************************************** 2025-01-24T02:56:10.3973250Z Please avoid running ``setup.py`` directly. 2025-01-24T02:56:10.3973610Z Instead, use pypa/build, pypa/installer or other 2025-01-24T02:56:10.3973960Z standards-based tools. 2025-01-24T02:56:10.3974140Z 2025-01-24T02:56:10.3974460Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-01-24T02:56:10.3975070Z ******************************************************************************** 2025-01-24T02:56:10.3975300Z 2025-01-24T02:56:10.3975360Z !! 2025-01-24T02:56:10.3975510Z self.initialize_options() 2025-01-24T02:56:10.4028210Z installing to build/bdist.macosx-11.1-arm64/wheel 2025-01-24T02:56:10.4028520Z running install 2025-01-24T02:56:10.4064300Z running install_lib 2025-01-24T02:56:10.4113080Z creating build/bdist.macosx-11.1-arm64 2025-01-24T02:56:10.4113940Z creating build/bdist.macosx-11.1-arm64/wheel 2025-01-24T02:56:10.4115540Z creating build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:10.4116780Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4117730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/foreach_map.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4119280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/effects.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4120640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/invoke_subgraph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4126950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/while_loop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4128080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/prim_hop_base.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4129180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4130250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/strict_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4131340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/torchbind.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4132410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/cond.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4133460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/map.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4134520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/hints_wrap.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4135600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4136660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/out_dtype.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4137790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/executorch_call_delegate.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4138900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/scan.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4140030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/run_const_graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4141150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/associative_scan.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4142280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/auto_functionalize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4143410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/triton_kernel_wrap.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4144600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/flex_attention.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4145830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_higher_order_ops/wrap.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2025-01-24T02:56:10.4147130Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_prims 2025-01-24T02:56:10.4148060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_prims/debug_prims.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_prims 2025-01-24T02:56:10.4149220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_prims/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_prims 2025-01-24T02:56:10.4151110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_prims/context.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_prims 2025-01-24T02:56:10.4152500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_prims/rng_prims.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_prims 2025-01-24T02:56:10.4153760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_prims/executor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_prims 2025-01-24T02:56:10.4154950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_storage_docs.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:10.4156430Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_logging 2025-01-24T02:56:10.4157200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_logging/_internal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_logging 2025-01-24T02:56:10.4158720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_logging/scribe.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_logging 2025-01-24T02:56:10.4160000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_logging/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_logging 2025-01-24T02:56:10.4161220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_logging/_registrations.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_logging 2025-01-24T02:56:10.4162490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_logging/structured.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_logging 2025-01-24T02:56:10.4163940Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4164780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/partitioners.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4166510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/compile_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4167900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4169160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/autograd_function.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4170790Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-01-24T02:56:10.4171850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_activation_checkpointing/graph_info_provider.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-01-24T02:56:10.4174830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_activation_checkpointing/knapsack.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-01-24T02:56:10.4176170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_activation_checkpointing/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-01-24T02:56:10.4177530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_activation_checkpointing/knapsack_evaluator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-01-24T02:56:10.4178730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/python_key.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4179840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/pytree_hacks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4180850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/pyfunctorch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4181840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/deprecated.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4183030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/top_operators_github_usage.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4184330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4185590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/batch_norm_replacement.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4186760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/fx_minifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4213340Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2025-01-24T02:56:10.4214390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd/input_output_analysis.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2025-01-24T02:56:10.4216150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd/runtime_wrappers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2025-01-24T02:56:10.4218220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2025-01-24T02:56:10.4219530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd/dispatch_and_compile_graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2025-01-24T02:56:10.4222050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd/functional_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2025-01-24T02:56:10.4223440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd/autograd_cache.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2025-01-24T02:56:10.4224910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd/traced_function_transforms.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2025-01-24T02:56:10.4226210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd/schemas.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2025-01-24T02:56:10.4227870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd/jit_compile_runtime_wrappers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2025-01-24T02:56:10.4229170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2025-01-24T02:56:10.4230610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd/collect_metadata_analysis.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2025-01-24T02:56:10.4231920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd/subclass_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2025-01-24T02:56:10.4233300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd/logging_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2025-01-24T02:56:10.4234620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/_aot_autograd/subclass_parametrization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2025-01-24T02:56:10.4235800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/apis.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4237030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4238350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/aot_autograd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4239740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/compilers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4242270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/eager_transforms.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4243730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/vmap.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4244980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/benchmark_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4246180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/make_functional.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4247570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_functorch/functional_call.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2025-01-24T02:56:10.4249290Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4250010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/_reductions_impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4251090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/_getlimits.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4252260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/_unary_ufuncs_impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4253460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/_casting_dicts.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4254880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4256020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/_binary_ufuncs_impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4257230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/random.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4258850Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_numpy/testing 2025-01-24T02:56:10.4259630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/testing/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy/testing 2025-01-24T02:56:10.4265270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/testing/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy/testing 2025-01-24T02:56:10.4266240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/_dtypes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4267150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/linalg.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4268100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/_ndarray.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4269010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/_ufuncs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4269910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/_util.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4270830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/_normalizations.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4271790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/_dtypes_impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4272750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/fft.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4273670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/_funcs_impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4274560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_numpy/_funcs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2025-01-24T02:56:10.4275220Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_export 2025-01-24T02:56:10.4275900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/error.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2025-01-24T02:56:10.4276820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/tools.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2025-01-24T02:56:10.4278550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_export/pass_infra 2025-01-24T02:56:10.4279380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/pass_infra/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/pass_infra 2025-01-24T02:56:10.4280510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/pass_infra/proxy_value.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/pass_infra 2025-01-24T02:56:10.4281630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/pass_infra/node_metadata.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/pass_infra 2025-01-24T02:56:10.4282590Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2025-01-24T02:56:10.4283420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes/insert_custom_op_guards.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2025-01-24T02:56:10.4284670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2025-01-24T02:56:10.4286060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2025-01-24T02:56:10.4287450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes/collect_tracepoints_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2025-01-24T02:56:10.4288720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes/replace_with_hop_pass_util.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2025-01-24T02:56:10.4290030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2025-01-24T02:56:10.4291400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes/_node_metadata_hook.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2025-01-24T02:56:10.4292890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes/lift_constants_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2025-01-24T02:56:10.4295700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes/constant_folding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2025-01-24T02:56:10.4296970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes/add_runtime_assertions_for_constraints_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2025-01-24T02:56:10.4298310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes/replace_autocast_with_hop_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2025-01-24T02:56:10.4299630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes/functionalize_side_effectful_ops_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2025-01-24T02:56:10.4301100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes/replace_set_grad_with_hop_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2025-01-24T02:56:10.4302400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/passes/remove_runtime_assertions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2025-01-24T02:56:10.4303580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/converter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2025-01-24T02:56:10.4305000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2025-01-24T02:56:10.4306590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/pass_base.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2025-01-24T02:56:10.4307720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2025-01-24T02:56:10.4309430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/wrappers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2025-01-24T02:56:10.4310710Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_export/db 2025-01-24T02:56:10.4311530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/logging.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db 2025-01-24T02:56:10.4312880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db 2025-01-24T02:56:10.4314420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/gen_example.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db 2025-01-24T02:56:10.4315720Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4316680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/list_unpack.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4317990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/specialized_attribute.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4319240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/static_for_loop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4320460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/cond_closed_over_variable.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4321760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/fn_with_kwargs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4323020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/constrain_as_value_example.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4324320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/dynamic_shape_slicing.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4325560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/cond_branch_nonlocal_variables.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4326780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/autograd_function.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4328050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/type_reflection_method.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4329240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/cond_operands.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4330410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/decorator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4331630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/dynamic_shape_view.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4332920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/dynamic_shape_map.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4334110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/nested_function.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4335560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/dynamic_shape_constructor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4336730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4337890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/dynamic_shape_if_guard.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4339160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/assume_constant_result.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4340450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/cond_branch_class_method.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4341680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/class_method.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4342840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/pytree_flatten.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4344010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/scalar_output.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4345160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/cond_predicate.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4346380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/dynamic_shape_assert.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4347580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/unsupported_operator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4348770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/tensor_setattr.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4349920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/optional_input.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4351120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/constrain_as_size_example.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4352330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/static_if.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4353460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/dictionary.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4354650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/list_contains.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4355870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/dynamic_shape_round.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4357080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/user_input_mutation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4358310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/null_context_manager.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4359590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/cond_branch_nested_function.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4360840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/examples/model_attr_mutation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2025-01-24T02:56:10.4361930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/db/case.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db 2025-01-24T02:56:10.4362900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/non_strict_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2025-01-24T02:56:10.4364060Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2025-01-24T02:56:10.4368940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde/serialize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2025-01-24T02:56:10.4370000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2025-01-24T02:56:10.4371060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde/schema_check.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2025-01-24T02:56:10.4372130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde/schema.yaml -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2025-01-24T02:56:10.4373170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde/dynamic_shapes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2025-01-24T02:56:10.4374270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde/export_schema.thrift -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2025-01-24T02:56:10.4375300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde/union.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2025-01-24T02:56:10.4376300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde/schema.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2025-01-24T02:56:10.4377340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/serde/aoti_schema.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2025-01-24T02:56:10.4378320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_export/verifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2025-01-24T02:56:10.4379000Z creating build/bdist.macosx-11.1-arm64/wheel/torch/monitor 2025-01-24T02:56:10.4379670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/monitor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/monitor 2025-01-24T02:56:10.4380490Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_dispatch 2025-01-24T02:56:10.4381210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dispatch/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dispatch 2025-01-24T02:56:10.4382400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dispatch/python.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dispatch 2025-01-24T02:56:10.4383990Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_subclasses 2025-01-24T02:56:10.4384810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_subclasses/functional_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_subclasses 2025-01-24T02:56:10.4385990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_subclasses/meta_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_subclasses 2025-01-24T02:56:10.4387960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_subclasses/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_subclasses 2025-01-24T02:56:10.4388990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_subclasses/_fake_tensor_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_subclasses 2025-01-24T02:56:10.4390130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_subclasses/fake_impls.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_subclasses 2025-01-24T02:56:10.4391310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_subclasses/fake_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_subclasses 2025-01-24T02:56:10.4393130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_subclasses/schema_check_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_subclasses 2025-01-24T02:56:10.4394310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_subclasses/fake_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_subclasses 2025-01-24T02:56:10.4395360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_meta_registrations.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:10.4397810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/version.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:10.4399370Z creating build/bdist.macosx-11.1-arm64/wheel/torch/futures 2025-01-24T02:56:10.4400060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/futures/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/futures 2025-01-24T02:56:10.4402200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/library.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:10.4403880Z creating build/bdist.macosx-11.1-arm64/wheel/torch/linalg 2025-01-24T02:56:10.4404590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/linalg/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/linalg 2025-01-24T02:56:10.4406510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_jit_internal.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:10.4408190Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_custom_op 2025-01-24T02:56:10.4408910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_custom_op/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_custom_op 2025-01-24T02:56:10.4409900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_custom_op/autograd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_custom_op 2025-01-24T02:56:10.4411080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_custom_op/impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_custom_op 2025-01-24T02:56:10.4412660Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn 2025-01-24T02:56:10.4413310Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/attention 2025-01-24T02:56:10.4414120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/attention/bias.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/attention 2025-01-24T02:56:10.4416930Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/attention/experimental 2025-01-24T02:56:10.4417850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/attention/experimental/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/attention/experimental 2025-01-24T02:56:10.4419150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/attention/experimental/_paged_attention.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/attention/experimental 2025-01-24T02:56:10.4420290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/attention/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/attention 2025-01-24T02:56:10.4421560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/attention/flex_attention.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/attention 2025-01-24T02:56:10.4422730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/attention/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/attention 2025-01-24T02:56:10.4423890Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2025-01-24T02:56:10.4424710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parallel/parallel_apply.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2025-01-24T02:56:10.4425880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parallel/comm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2025-01-24T02:56:10.4427120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parallel/scatter_gather.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2025-01-24T02:56:10.4428340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parallel/replicate.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2025-01-24T02:56:10.4429470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parallel/_functions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2025-01-24T02:56:10.4430620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parallel/data_parallel.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2025-01-24T02:56:10.4431720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parallel/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2025-01-24T02:56:10.4432910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parallel/distributed.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2025-01-24T02:56:10.4435090Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat 2025-01-24T02:56:10.4435870Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/dynamic 2025-01-24T02:56:10.4436690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/dynamic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/dynamic 2025-01-24T02:56:10.4438600Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/dynamic/modules 2025-01-24T02:56:10.4439520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/dynamic/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/dynamic/modules 2025-01-24T02:56:10.4440730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/dynamic/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/dynamic/modules 2025-01-24T02:56:10.4441780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat 2025-01-24T02:56:10.4442710Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/modules 2025-01-24T02:56:10.4443510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/modules 2025-01-24T02:56:10.4444640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/modules 2025-01-24T02:56:10.4445780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/modules 2025-01-24T02:56:10.4446990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/qat/modules/embedding_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/modules 2025-01-24T02:56:10.4448100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/common_types.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2025-01-24T02:56:10.4449770Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized 2025-01-24T02:56:10.4450400Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference 2025-01-24T02:56:10.4451290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/_reference/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference 2025-01-24T02:56:10.4452420Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference/modules 2025-01-24T02:56:10.4453510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/_reference/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference/modules 2025-01-24T02:56:10.4454880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/_reference/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference/modules 2025-01-24T02:56:10.4456180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/_reference/modules/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference/modules 2025-01-24T02:56:10.4457460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/_reference/modules/sparse.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference/modules 2025-01-24T02:56:10.4458740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/_reference/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference/modules 2025-01-24T02:56:10.4460090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/_reference/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference/modules 2025-01-24T02:56:10.4460980Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/dynamic 2025-01-24T02:56:10.4461830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/dynamic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/dynamic 2025-01-24T02:56:10.4462740Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-01-24T02:56:10.4463710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/dynamic/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-01-24T02:56:10.4465010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-01-24T02:56:10.4466290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/dynamic/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-01-24T02:56:10.4471370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/dynamic/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-01-24T02:56:10.4472520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized 2025-01-24T02:56:10.4473560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/functional.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized 2025-01-24T02:56:10.4474340Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2025-01-24T02:56:10.4475240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules/batchnorm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2025-01-24T02:56:10.4476460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules/functional_modules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2025-01-24T02:56:10.4477670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2025-01-24T02:56:10.4478810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2025-01-24T02:56:10.4479980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules/activation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2025-01-24T02:56:10.4481210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2025-01-24T02:56:10.4482410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules/dropout.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2025-01-24T02:56:10.4483580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2025-01-24T02:56:10.4484830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules/normalization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2025-01-24T02:56:10.4486030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2025-01-24T02:56:10.4487210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantized/modules/embedding_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2025-01-24T02:56:10.4488030Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/backends 2025-01-24T02:56:10.4488760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/backends/thnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/backends 2025-01-24T02:56:10.4489820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/backends/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/backends 2025-01-24T02:56:10.4490770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parameter.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2025-01-24T02:56:10.4491640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2025-01-24T02:56:10.4492490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/_reduction.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2025-01-24T02:56:10.4493120Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2025-01-24T02:56:10.4493890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_named_member_accessor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2025-01-24T02:56:10.4494880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/spectral_norm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2025-01-24T02:56:10.4496040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/convert_parameters.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2025-01-24T02:56:10.4497430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/stateless.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2025-01-24T02:56:10.4498470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/parametrize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2025-01-24T02:56:10.4499650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/memory_format.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2025-01-24T02:56:10.4500830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_per_sample_grad.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2025-01-24T02:56:10.4501950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2025-01-24T02:56:10.4503130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/weight_norm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2025-01-24T02:56:10.4504290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/fusion.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2025-01-24T02:56:10.4505460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/prune.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2025-01-24T02:56:10.4507380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/parametrizations.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2025-01-24T02:56:10.4508490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/init.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2025-01-24T02:56:10.4509580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_deprecation_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2025-01-24T02:56:10.4510580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2025-01-24T02:56:10.4512550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2025-01-24T02:56:10.4513560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2025-01-24T02:56:10.4514900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2025-01-24T02:56:10.4516230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights/conv_expanded_weights.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2025-01-24T02:56:10.4517520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights/expanded_weights_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2025-01-24T02:56:10.4518820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2025-01-24T02:56:10.4520100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights/embedding_expanded_weights.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2025-01-24T02:56:10.4521350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights/conv_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2025-01-24T02:56:10.4522640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2025-01-24T02:56:10.4524070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights/linear_expanded_weights.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2025-01-24T02:56:10.4525450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/_expanded_weights/expanded_weights_impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2025-01-24T02:56:10.4526680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/utils/clip_grad.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2025-01-24T02:56:10.4527420Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantizable 2025-01-24T02:56:10.4528180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantizable/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantizable 2025-01-24T02:56:10.4528960Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantizable/modules 2025-01-24T02:56:10.4529880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantizable/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantizable/modules 2025-01-24T02:56:10.4531080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantizable/modules/activation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantizable/modules 2025-01-24T02:56:10.4532280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/quantizable/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantizable/modules 2025-01-24T02:56:10.4533280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/cpp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2025-01-24T02:56:10.4534090Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic 2025-01-24T02:56:10.4535110Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/qat 2025-01-24T02:56:10.4535920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/qat/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/qat 2025-01-24T02:56:10.4537010Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-01-24T02:56:10.4537990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/qat/modules/conv_fused.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-01-24T02:56:10.4539250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/qat/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-01-24T02:56:10.4540540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/qat/modules/linear_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-01-24T02:56:10.4541810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/qat/modules/linear_fused.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-01-24T02:56:10.4542820Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized 2025-01-24T02:56:10.4543670Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/dynamic 2025-01-24T02:56:10.4544660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/dynamic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/dynamic 2025-01-24T02:56:10.4550900Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2025-01-24T02:56:10.4552010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2025-01-24T02:56:10.4553500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2025-01-24T02:56:10.4554840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized 2025-01-24T02:56:10.4555710Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-01-24T02:56:10.4556690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/modules/bn_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-01-24T02:56:10.4558000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-01-24T02:56:10.4559390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/modules/conv_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-01-24T02:56:10.4560750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/quantized/modules/linear_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-01-24T02:56:10.4561930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic 2025-01-24T02:56:10.4562720Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/modules 2025-01-24T02:56:10.4563580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/modules/fused.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/modules 2025-01-24T02:56:10.4564830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/intrinsic/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/modules 2025-01-24T02:56:10.4565850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/functional.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2025-01-24T02:56:10.4568300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/init.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2025-01-24T02:56:10.4569350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/functional.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2025-01-24T02:56:10.4574580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/grad.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2025-01-24T02:56:10.4575250Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4576010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/upsampling.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4577040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/channelshuffle.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4578100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/instancenorm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4579170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/flatten.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4580190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/batchnorm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4581170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4582150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/_functions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4583230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/pooling.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4584210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4585190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/distance.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4586200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/container.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4587220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/pixelshuffle.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4588230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/adaptive.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4590410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/loss.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4591820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/activation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4594630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4595780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/transformer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4597840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/sparse.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4603030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4604910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/dropout.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4605930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4607510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/lazy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4608800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/normalization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4611230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4612410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/padding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4613720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/modules/fold.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2025-01-24T02:56:10.4616350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nn/parameter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2025-01-24T02:56:10.4617340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_thread_safe_fork.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:10.4618520Z creating build/bdist.macosx-11.1-arm64/wheel/torch/mps 2025-01-24T02:56:10.4619350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/mps/event.py -> build/bdist.macosx-11.1-arm64/wheel/torch/mps 2025-01-24T02:56:10.4620480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/mps/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/mps 2025-01-24T02:56:10.4622010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/mps/profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/mps 2025-01-24T02:56:10.4623040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_custom_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:10.4625970Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4626760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_type_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4629450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_constants.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4630480Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2025-01-24T02:56:10.4631310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/registration.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2025-01-24T02:56:10.4632700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/io_adapter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2025-01-24T02:56:10.4634500Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2025-01-24T02:56:10.4635340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/registration.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2025-01-24T02:56:10.4636650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/fx_symbolic_graph_extractor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2025-01-24T02:56:10.4638020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/onnxfunction_dispatcher.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2025-01-24T02:56:10.4639410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/decomposition_table.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2025-01-24T02:56:10.4640550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/analysis 2025-01-24T02:56:10.4641470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/analysis/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/analysis 2025-01-24T02:56:10.4643180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/analysis/unsupported_nodes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/analysis 2025-01-24T02:56:10.4644410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/decomposition_skip.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2025-01-24T02:56:10.4645580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/dynamo_graph_extractor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2025-01-24T02:56:10.4650740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/diagnostics.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2025-01-24T02:56:10.4651890Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2025-01-24T02:56:10.4652830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/passes/readability.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2025-01-24T02:56:10.4654150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/passes/modularization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2025-01-24T02:56:10.4655920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/passes/virtualization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2025-01-24T02:56:10.4657230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/passes/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2025-01-24T02:56:10.4658480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/passes/functionalization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2025-01-24T02:56:10.4659700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/passes/decomp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2025-01-24T02:56:10.4660910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/passes/type_promotion.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2025-01-24T02:56:10.4662540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/passes/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2025-01-24T02:56:10.4663800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/type_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2025-01-24T02:56:10.4665020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2025-01-24T02:56:10.4666280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/patcher.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2025-01-24T02:56:10.4667440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2025-01-24T02:56:10.4670370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/fx_onnx_interpreter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2025-01-24T02:56:10.4671610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/fx/serialization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2025-01-24T02:56:10.4672980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2025-01-24T02:56:10.4674080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/_lazy_import.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2025-01-24T02:56:10.4675150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/_exporter_legacy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2025-01-24T02:56:10.4677120Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics 2025-01-24T02:56:10.4678020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/_rules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics 2025-01-24T02:56:10.4679240Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra 2025-01-24T02:56:10.4680860Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4681910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_tool.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4683350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_physical_location.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4684830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4686310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_special_locations.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4687780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_thread_flow_location.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4689280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_graph_traversal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4690730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_suppression.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4692170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_artifact.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4693700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor_reference.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4699540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_reporting_configuration.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4701050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_address.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4702490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/version.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4703930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_node.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4705370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_translation_metadata.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4706890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_artifact_location.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4708340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_conversion.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4709830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor_relationship.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4711350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_edge_traversal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4712790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4714200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_exception.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4715710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_external_property_file_reference.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4717210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_tool_component.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4718630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4720140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_version_control_details.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4721590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_fix.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4722980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_web_request.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4724420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_result.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4725930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_location_relationship.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4727400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_message.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4728810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_sarif_log.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4730230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_artifact_content.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4731740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_external_property_file_references.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4733300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_configuration_override.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4734780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_result_provenance.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4736230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_property_bag.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4737690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_tool_component_reference.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4739160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_replacement.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4740580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_invocation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4741980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_web_response.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4743410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_code_flow.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4744840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_location.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4746290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_region.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4747710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_logical_location.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4749160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_stack.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4750570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_edge.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4752020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_run.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4753460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_run_automation_details.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4754920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_rectangle.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4756380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_multiformat_message_string.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4757850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_stack_frame.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4759280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_thread_flow.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4760690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_artifact_change.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4762150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_external_properties.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4763580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_attachment.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4764990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/sarif/_notification.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2025-01-24T02:56:10.4766390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/formatter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra 2025-01-24T02:56:10.4767690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/decorator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra 2025-01-24T02:56:10.4768990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra 2025-01-24T02:56:10.4770290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/context.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra 2025-01-24T02:56:10.4771590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra 2025-01-24T02:56:10.4772890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/infra/_infra.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra 2025-01-24T02:56:10.4774130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics 2025-01-24T02:56:10.4775340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/diagnostics/_diagnostic.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics 2025-01-24T02:56:10.4776500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/onnxruntime.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2025-01-24T02:56:10.4777340Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4778230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_analysis.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4779400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_errors.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4780620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_capture_strategies.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4781910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_tensors.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4783110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_dispatching.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4784290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_isolated.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4785500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_decomp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4786650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4787820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_onnx_program.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4788710Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-01-24T02:56:10.4789740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-01-24T02:56:10.4791060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_torchlib/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-01-24T02:56:10.4791990Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-01-24T02:56:10.4793010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_torchlib/ops/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-01-24T02:56:10.4794350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_torchlib/ops/hop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-01-24T02:56:10.4795590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_building.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4796750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_schemas.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4797890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_core.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4799060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_verification.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4800240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_reporting.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4801410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_registration.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4802590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_testing.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4803800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_compat.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4804960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_ir_passes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4806130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/exporter/_fx_passes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/exporter 2025-01-24T02:56:10.4807240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/onnx_proto_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2025-01-24T02:56:10.4808290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_internal/jit_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2025-01-24T02:56:10.4813300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/symbolic_opset15.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4814300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_onnx_supported_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4815310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/symbolic_opset7.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4816280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/symbolic_caffe2.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4817230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/symbolic_opset11.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4818170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/verification.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4819070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_flags.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4819980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/symbolic_opset10.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4820940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/symbolic_opset20.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4821870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/symbolic_opset14.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4822780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_globals.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4823700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/symbolic_helper.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4824640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/symbolic_opset9.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4825580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_deprecation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4826500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_exporter_states.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4827430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4828350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/symbolic_opset8.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4829280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/symbolic_opset19.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4830200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4831090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/_experimental.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4832100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/symbolic_opset18.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4833010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/errors.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4833930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/symbolic_opset13.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4834860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/operators.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4835750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/symbolic_opset17.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4836670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/symbolic_opset16.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4837620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/onnx/symbolic_opset12.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2025-01-24T02:56:10.4838270Z creating build/bdist.macosx-11.1-arm64/wheel/torch/bin 2025-01-24T02:56:10.4838920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/bin/protoc-3.13.0.0 -> build/bdist.macosx-11.1-arm64/wheel/torch/bin 2025-01-24T02:56:10.4939900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/bin/torch_shm_manager -> build/bdist.macosx-11.1-arm64/wheel/torch/bin 2025-01-24T02:56:10.4941120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/bin/protoc -> build/bdist.macosx-11.1-arm64/wheel/torch/bin 2025-01-24T02:56:10.5032900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/return_types.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:10.5034450Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_vendor 2025-01-24T02:56:10.5035300Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_vendor/packaging 2025-01-24T02:56:10.5036260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_vendor/packaging/version.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_vendor/packaging 2025-01-24T02:56:10.5038920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_vendor/packaging/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_vendor/packaging 2025-01-24T02:56:10.5040050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_vendor/packaging/_structures.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_vendor/packaging 2025-01-24T02:56:10.5041220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_vendor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_vendor 2025-01-24T02:56:10.5042110Z creating build/bdist.macosx-11.1-arm64/wheel/torch/cpu 2025-01-24T02:56:10.5042910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cpu/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cpu 2025-01-24T02:56:10.5044810Z creating build/bdist.macosx-11.1-arm64/wheel/torch/cpu/amp 2025-01-24T02:56:10.5045540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cpu/amp/autocast_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cpu/amp 2025-01-24T02:56:10.5046650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cpu/amp/grad_scaler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cpu/amp 2025-01-24T02:56:10.5048100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cpu/amp/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cpu/amp 2025-01-24T02:56:10.5049310Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5050860Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2025-01-24T02:56:10.5051690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tensor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2025-01-24T02:56:10.5052780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tensor/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2025-01-24T02:56:10.5053910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tensor/placement_types.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2025-01-24T02:56:10.5054920Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_sharding_spec 2025-01-24T02:56:10.5055830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_sharding_spec/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_sharding_spec 2025-01-24T02:56:10.5056960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_composable_state.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5058100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/logging_handlers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5059180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rendezvous.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5060330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/run.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5061610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_state_dict_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5063400Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/launcher 2025-01-24T02:56:10.5064650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/launcher/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/launcher 2025-01-24T02:56:10.5065800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/launcher/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/launcher 2025-01-24T02:56:10.5066650Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5067580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/logging_handlers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5069060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/format_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5070290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/planner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5072410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/_dedup_save_plans.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5073650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/state_dict.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5075040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/metadata.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5076250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/_storage_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5077470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/_version.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5078750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/_traverse.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5080020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/_sharded_tensor_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5084270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/_dedup_tensors.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5085710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/filesystem.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5087080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/state_dict_saver.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5089680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5090880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/logger.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5092090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/resharding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5093280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5094500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/state_dict_loader.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5095720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5098060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/default_planner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5099490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/storage.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5100760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/planner_helpers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5103400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/optimizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5105790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/staging.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5107110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/_checkpointer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5108310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/stateful.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5109550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/_fsspec_filesystem.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5110770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/_extension.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5111960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/checkpoint/_nested_dict.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2025-01-24T02:56:10.5113000Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_sharded_tensor 2025-01-24T02:56:10.5114050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_sharded_tensor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_sharded_tensor 2025-01-24T02:56:10.5115370Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn 2025-01-24T02:56:10.5116160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn 2025-01-24T02:56:10.5117440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn/functional.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn 2025-01-24T02:56:10.5120030Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/jit 2025-01-24T02:56:10.5121350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn/jit/instantiator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/jit 2025-01-24T02:56:10.5123070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn/jit/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/jit 2025-01-24T02:56:10.5124360Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/jit/templates 2025-01-24T02:56:10.5125580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn/jit/templates/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/jit/templates 2025-01-24T02:56:10.5126990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn/jit/templates/remote_module_template.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/jit/templates 2025-01-24T02:56:10.5128080Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/api 2025-01-24T02:56:10.5128950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn/api/remote_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/api 2025-01-24T02:56:10.5130260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/nn/api/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/api 2025-01-24T02:56:10.5131350Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic 2025-01-24T02:56:10.5132900Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/metrics 2025-01-24T02:56:10.5133850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/metrics/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/metrics 2025-01-24T02:56:10.5135110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/metrics/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/metrics 2025-01-24T02:56:10.5136190Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2025-01-24T02:56:10.5137190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous/etcd_store.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2025-01-24T02:56:10.5138610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous/registry.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2025-01-24T02:56:10.5139930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2025-01-24T02:56:10.5141350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous/_etcd_stub.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2025-01-24T02:56:10.5142710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous/etcd_rendezvous.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2025-01-24T02:56:10.5144120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2025-01-24T02:56:10.5145470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2025-01-24T02:56:10.5147390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2025-01-24T02:56:10.5148800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2025-01-24T02:56:10.5150220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous/dynamic_rendezvous.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2025-01-24T02:56:10.5151580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous/etcd_server.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2025-01-24T02:56:10.5153090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2025-01-24T02:56:10.5154100Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-01-24T02:56:10.5154860Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-01-24T02:56:10.5156250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-01-24T02:56:10.5163360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-01-24T02:56:10.5165160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-01-24T02:56:10.5166790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/tail_log.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-01-24T02:56:10.5168220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-01-24T02:56:10.5169660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-01-24T02:56:10.5171080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/redirects.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-01-24T02:56:10.5172140Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-01-24T02:56:10.5173320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/errors/handlers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-01-24T02:56:10.5174860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/errors/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-01-24T02:56:10.5176400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/multiprocessing/errors/error_handler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-01-24T02:56:10.5177430Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/timer 2025-01-24T02:56:10.5178400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/timer/local_timer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/timer 2025-01-24T02:56:10.5179690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/timer/debug_info_logging.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/timer 2025-01-24T02:56:10.5181000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/timer/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/timer 2025-01-24T02:56:10.5182280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/timer/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/timer 2025-01-24T02:56:10.5183570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/timer/file_based_local_timer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/timer 2025-01-24T02:56:10.5184800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic 2025-01-24T02:56:10.5186020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/control_plane.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic 2025-01-24T02:56:10.5186890Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils 2025-01-24T02:56:10.5187830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils/store.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils 2025-01-24T02:56:10.5189100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils/logging.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils 2025-01-24T02:56:10.5190340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils 2025-01-24T02:56:10.5191600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils/log_level.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils 2025-01-24T02:56:10.5192830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils 2025-01-24T02:56:10.5194130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils/distributed.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils 2025-01-24T02:56:10.5195110Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils/data 2025-01-24T02:56:10.5196170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils/data/elastic_distributed_sampler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils/data 2025-01-24T02:56:10.5197590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils/data/cycling_iterator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils/data 2025-01-24T02:56:10.5198970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/utils/data/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils/data 2025-01-24T02:56:10.5199880Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/agent 2025-01-24T02:56:10.5200800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/agent/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/agent 2025-01-24T02:56:10.5201780Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/agent/server 2025-01-24T02:56:10.5202850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/agent/server/health_check_server.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/agent/server 2025-01-24T02:56:10.5204240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/agent/server/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/agent/server 2025-01-24T02:56:10.5205580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/agent/server/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/agent/server 2025-01-24T02:56:10.5207010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/agent/server/local_elastic_agent.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/agent/server 2025-01-24T02:56:10.5208000Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/events 2025-01-24T02:56:10.5208950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/events/handlers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/events 2025-01-24T02:56:10.5210170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/events/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/events 2025-01-24T02:56:10.5211390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/elastic/events/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/events 2025-01-24T02:56:10.5212310Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/autograd 2025-01-24T02:56:10.5213140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/autograd/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/autograd 2025-01-24T02:56:10.5214240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/distributed_c10d.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5215040Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2025-01-24T02:56:10.5215910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining/_IR.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2025-01-24T02:56:10.5217080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining/_unflatten.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2025-01-24T02:56:10.5218250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2025-01-24T02:56:10.5219460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining/microbatch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2025-01-24T02:56:10.5220670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining/_backward.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2025-01-24T02:56:10.5221840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining/_debug.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2025-01-24T02:56:10.5223010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining/stage.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2025-01-24T02:56:10.5224190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining/schedules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2025-01-24T02:56:10.5225380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/pipelining/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2025-01-24T02:56:10.5226590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/argparse_util.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5227650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_checkpointable.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5228770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/constants.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5229820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/c10d_logger.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5230900Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms 2025-01-24T02:56:10.5231950Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2025-01-24T02:56:10.5232970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_comm_hooks/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2025-01-24T02:56:10.5234440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_comm_hooks/default_hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2025-01-24T02:56:10.5235470Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_checkpoint 2025-01-24T02:56:10.5236560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_checkpoint 2025-01-24T02:56:10.5239030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_checkpoint/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_checkpoint 2025-01-24T02:56:10.5240090Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-01-24T02:56:10.5241170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/model_averaging/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-01-24T02:56:10.5242610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/model_averaging/averagers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-01-24T02:56:10.5244040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/model_averaging/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-01-24T02:56:10.5245530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-01-24T02:56:10.5246640Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:10.5247780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:10.5249280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:10.5250800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:10.5252220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:10.5253640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:10.5255080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:10.5256520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:10.5257990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:10.5259450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-01-24T02:56:10.5260750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms 2025-01-24T02:56:10.5261960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/join.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms 2025-01-24T02:56:10.5263010Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2025-01-24T02:56:10.5264190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2025-01-24T02:56:10.5271160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_optimizer_overlap/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2025-01-24T02:56:10.5272320Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_quantization 2025-01-24T02:56:10.5273390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_quantization/quantization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_quantization 2025-01-24T02:56:10.5274780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/algorithms/_quantization/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_quantization 2025-01-24T02:56:10.5275700Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5276560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim/_deprecation_warning.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5277720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim/named_optimizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5278930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim/zero_redundancy_optimizer.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5280400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5281560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim/functional_sgd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5282730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim/functional_adagrad.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5283910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim/functional_adamw.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5285130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim/apply_optimizer_in_backward.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5286420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim/functional_adam.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5287570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5288710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim/functional_rprop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5289910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim/post_localSGD_optimizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5291090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim/optimizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5292300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim/functional_adadelta.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5293660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim/functional_rmsprop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5294910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim/zero_redundancy_optimizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5296130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/optim/functional_adamax.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2025-01-24T02:56:10.5297210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5297960Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable 2025-01-24T02:56:10.5299010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_composable/replicate.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable 2025-01-24T02:56:10.5300200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_composable/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable 2025-01-24T02:56:10.5301060Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable/fsdp 2025-01-24T02:56:10.5302020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_composable/fsdp/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable/fsdp 2025-01-24T02:56:10.5303280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_composable/fsdp/fully_shard.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable/fsdp 2025-01-24T02:56:10.5304490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_composable/contract.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable 2025-01-24T02:56:10.5305710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_composable/checkpoint_activation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable 2025-01-24T02:56:10.5306590Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tools 2025-01-24T02:56:10.5307550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools/mem_tracker.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tools 2025-01-24T02:56:10.5308690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools/ilp_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tools 2025-01-24T02:56:10.5309820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools/runtime_estimator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tools 2025-01-24T02:56:10.5310980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools/fsdp2_mem_tracker.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tools 2025-01-24T02:56:10.5312190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools/sac_estimator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tools 2025-01-24T02:56:10.5313310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tools 2025-01-24T02:56:10.5314420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools/memory_tracker.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tools 2025-01-24T02:56:10.5315560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools/sac_ilp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tools 2025-01-24T02:56:10.5316680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_tools/mod_tracker.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tools 2025-01-24T02:56:10.5317500Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5318330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_exec_order_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5319490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_traversal_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5320700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/sharded_grad_scaler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5321850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_state_dict_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5323700Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:10.5324660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard/_fsdp_api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:10.5326010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard/_fsdp_common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:10.5327430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:10.5328710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:10.5329960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard/_fsdp_param.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:10.5331230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard/_fsdp_init.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:10.5332540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:10.5333870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard/_fully_shard.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:10.5335160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fully_shard/_fsdp_state.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-01-24T02:56:10.5336450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/fully_sharded_data_parallel.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5337770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_wrap_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5339030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_optim_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5341000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_trace_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5342150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_common_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5343440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5344600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5345900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_limiter_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5347090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_dynamo_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5348310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_unshard_param_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5349500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_shard_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5350750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/wrap.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5351950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_runtime_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5353420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_fsdp_extensions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5354720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_init_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5356120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_debug_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5357480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/fsdp/_flat_param.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2025-01-24T02:56:10.5359640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/collective_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5360770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_functional_collectives.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5362550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard 2025-01-24T02:56:10.5363180Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/checkpoint 2025-01-24T02:56:10.5364130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/checkpoint/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/checkpoint 2025-01-24T02:56:10.5365590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/metadata.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard 2025-01-24T02:56:10.5366740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/op_registry_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard 2025-01-24T02:56:10.5367820Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:10.5368850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/logging_handlers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:10.5370230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/metadata.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:10.5375470Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-01-24T02:56:10.5376540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-01-24T02:56:10.5377990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-01-24T02:56:10.5379380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/_ops/_common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-01-24T02:56:10.5380750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/_ops/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-01-24T02:56:10.5382210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-01-24T02:56:10.5383650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/_ops/init.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-01-24T02:56:10.5384990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:10.5386300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/logger.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:10.5387690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/reshard.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:10.5389000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:10.5390280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/shard.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:10.5391580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_tensor/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-01-24T02:56:10.5392530Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_plan 2025-01-24T02:56:10.5393500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_plan/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_plan 2025-01-24T02:56:10.5394780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_plan/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_plan 2025-01-24T02:56:10.5396020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharder.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard 2025-01-24T02:56:10.5397110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard 2025-01-24T02:56:10.5398040Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-01-24T02:56:10.5398780Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-01-24T02:56:10.5400030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-01-24T02:56:10.5401700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-01-24T02:56:10.5403340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-01-24T02:56:10.5405010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-01-24T02:56:10.5406480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-01-24T02:56:10.5407780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec/_internals.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-01-24T02:56:10.5409120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-01-24T02:56:10.5410440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-01-24T02:56:10.5411400Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_optim 2025-01-24T02:56:10.5412360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_optim/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_optim 2025-01-24T02:56:10.5413690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/sharded_optim/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_optim 2025-01-24T02:56:10.5414890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/common_op_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard 2025-01-24T02:56:10.5416000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard 2025-01-24T02:56:10.5417080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_shard/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard 2025-01-24T02:56:10.5418120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/launch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5418900Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_symmetric_memory 2025-01-24T02:56:10.5419830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_symmetric_memory/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_symmetric_memory 2025-01-24T02:56:10.5420940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5421970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/remote_device.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5423010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/device_mesh.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5423790Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor 2025-01-24T02:56:10.5424350Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/experimental 2025-01-24T02:56:10.5425360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/experimental/_attention.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/experimental 2025-01-24T02:56:10.5426700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/experimental/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/experimental 2025-01-24T02:56:10.5428050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/experimental/_tp_transform.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/experimental 2025-01-24T02:56:10.5429430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/experimental/_register_sharding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/experimental 2025-01-24T02:56:10.5430780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/experimental/_func_map.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/experimental 2025-01-24T02:56:10.5431710Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2025-01-24T02:56:10.5432650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel/ddp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2025-01-24T02:56:10.5433880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel/fsdp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2025-01-24T02:56:10.5435160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel/style.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2025-01-24T02:56:10.5436430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2025-01-24T02:56:10.5437700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2025-01-24T02:56:10.5438930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel/loss.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2025-01-24T02:56:10.5440260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel/input_reshard.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2025-01-24T02:56:10.5441540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2025-01-24T02:56:10.5442830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/parallel/_data_parallel_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2025-01-24T02:56:10.5444090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_shards_wrapper.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor 2025-01-24T02:56:10.5445250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_redistribute.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor 2025-01-24T02:56:10.5446860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_sharding_prop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor 2025-01-24T02:56:10.5448200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_collective_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor 2025-01-24T02:56:10.5451050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor 2025-01-24T02:56:10.5452260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_dtensor_spec.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor 2025-01-24T02:56:10.5453360Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/_ops 2025-01-24T02:56:10.5454370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops/_einsum_strategy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/_ops 2025-01-24T02:56:10.5455640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops/_embedding_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/_ops 2025-01-24T02:56:10.5456920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops/_tensor_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/_ops 2025-01-24T02:56:10.5458400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops/_experimental_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/_ops 2025-01-24T02:56:10.5459610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/_ops 2025-01-24T02:56:10.5460800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops/_conv_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/_ops 2025-01-24T02:56:10.5461990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops/_pointwise_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/_ops 2025-01-24T02:56:10.5463210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops/_matrix_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/_ops 2025-01-24T02:56:10.5464440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops/_math_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/_ops 2025-01-24T02:56:10.5465850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops/_common_rules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/_ops 2025-01-24T02:56:10.5467090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/_ops 2025-01-24T02:56:10.5468280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops/_random_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/_ops 2025-01-24T02:56:10.5469530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_ops/_view_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/_ops 2025-01-24T02:56:10.5470680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor 2025-01-24T02:56:10.5471800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_dispatch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor 2025-01-24T02:56:10.5473100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_random.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor 2025-01-24T02:56:10.5475510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_op_schema.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor 2025-01-24T02:56:10.5476850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/placement_types.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor 2025-01-24T02:56:10.5478050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_tp_conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor 2025-01-24T02:56:10.5487890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/device_mesh.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor 2025-01-24T02:56:10.5489060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor 2025-01-24T02:56:10.5491950Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/debug 2025-01-24T02:56:10.5492850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/debug/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/debug 2025-01-24T02:56:10.5494090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/debug/_op_coverage.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/debug 2025-01-24T02:56:10.5495380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/debug/_visualize_sharding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/debug 2025-01-24T02:56:10.5496640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/tensor/debug/_comm_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/debug 2025-01-24T02:56:10.5498390Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2025-01-24T02:56:10.5499200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc/functions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2025-01-24T02:56:10.5500430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc/options.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2025-01-24T02:56:10.5501650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc/internal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2025-01-24T02:56:10.5507180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc/constants.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2025-01-24T02:56:10.5508340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2025-01-24T02:56:10.5509520Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc/_testing 2025-01-24T02:56:10.5510410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc/_testing/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc/_testing 2025-01-24T02:56:10.5511890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc/_testing/faulty_agent_backend_registry.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc/_testing 2025-01-24T02:56:10.5513080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2025-01-24T02:56:10.5514270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc/rref_proxy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2025-01-24T02:56:10.5515580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc/server_process_global_profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2025-01-24T02:56:10.5527360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2025-01-24T02:56:10.5528590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/rpc/backend_registry.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2025-01-24T02:56:10.5531050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributed/_functional_collectives_impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2025-01-24T02:56:10.5532100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_size_docs.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:10.5533630Z creating build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2025-01-24T02:56:10.5534370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/anomaly_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2025-01-24T02:56:10.5535680Z creating build/bdist.macosx-11.1-arm64/wheel/torch/autograd/_functions 2025-01-24T02:56:10.5536520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/_functions/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd/_functions 2025-01-24T02:56:10.5537770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/_functions/tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd/_functions 2025-01-24T02:56:10.5538960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/_functions/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd/_functions 2025-01-24T02:56:10.5540020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2025-01-24T02:56:10.5541980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/forward_ad.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2025-01-24T02:56:10.5542950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2025-01-24T02:56:10.5544040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/variable.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2025-01-24T02:56:10.5545240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/functional.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2025-01-24T02:56:10.5547190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/grad_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2025-01-24T02:56:10.5550140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/profiler_util.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2025-01-24T02:56:10.5551610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/profiler_legacy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2025-01-24T02:56:10.5557350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/gradcheck.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2025-01-24T02:56:10.5559110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2025-01-24T02:56:10.5560510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/autograd/function.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2025-01-24T02:56:10.5561700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_torch_docs.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:10.5565670Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5566320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/_pytree.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5567420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/graph_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5569450Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5570280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/validator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5572170Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2025-01-24T02:56:10.5573120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/dispatch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2025-01-24T02:56:10.5574410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2025-01-24T02:56:10.5575690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/core.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2025-01-24T02:56:10.5576990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/unification_tools.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2025-01-24T02:56:10.5578070Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-01-24T02:56:10.5579320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/multipledispatch/dispatcher.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-01-24T02:56:10.5581360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/multipledispatch/variadic.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-01-24T02:56:10.5582940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/multipledispatch/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-01-24T02:56:10.5584520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/multipledispatch/core.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-01-24T02:56:10.5586110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/multipledispatch/conflict.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-01-24T02:56:10.5587710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/multipledispatch/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-01-24T02:56:10.5589130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/variable.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2025-01-24T02:56:10.5590410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/more.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2025-01-24T02:56:10.5591670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2025-01-24T02:56:10.5592980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unification/match.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2025-01-24T02:56:10.5594160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/meta_tracer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5595310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/partitioner_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5596440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/recording.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5597600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/rewriter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5598790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/const_fold.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5601050Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:10.5602130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/migrate_gradual_types/constraint.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:10.5603650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/migrate_gradual_types/constraint_transformation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:10.5605090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/migrate_gradual_types/util.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:10.5606490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/migrate_gradual_types/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:10.5607950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/migrate_gradual_types/operation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:10.5609350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/migrate_gradual_types/transform_to_z3.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:10.5610800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/migrate_gradual_types/z3_types.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:10.5612280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/migrate_gradual_types/constraint_generator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-01-24T02:56:10.5613630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/accelerator_partitioner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5614780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/normalize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5615910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/_constant_symnode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5617340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/optimization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5618510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/refinement_types.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5619720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/graph_gradual_typechecker.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5625000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5626110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/sym_node.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5627270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/unify_refinements.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5628380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/merge_matmul.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5629420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/debug.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5630580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/schema_type_annotation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5631750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/symbolic_shapes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5632850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/_config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5633970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/_backward_state.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5635090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/experimental/proxy_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2025-01-24T02:56:10.5636110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/operator_schemas.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5637000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5637870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/proxy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5638770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/_lazy_graph_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5639670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/traceback.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5640830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5642960Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5643790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/net_min_base.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5645190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/param_fetch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5646390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/tools_common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5648170Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/infra 2025-01-24T02:56:10.5649010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/infra/partitioner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/infra 2025-01-24T02:56:10.5650160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/infra/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/infra 2025-01-24T02:56:10.5651330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/infra/pass_base.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/infra 2025-01-24T02:56:10.5652470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/infra/pass_manager.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/infra 2025-01-24T02:56:10.5653720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/split_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5655070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/shape_prop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5656120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/split_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5657240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/runtime_assert.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5658490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/reinplace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5660510Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/backends 2025-01-24T02:56:10.5661450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/backends/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/backends 2025-01-24T02:56:10.5662610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/backends/cudagraphs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/backends 2025-01-24T02:56:10.5663550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/tests 2025-01-24T02:56:10.5664470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/tests/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/tests 2025-01-24T02:56:10.5665580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/tests/test_pass_manager.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/tests 2025-01-24T02:56:10.5666640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5667710Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/utils 2025-01-24T02:56:10.5668630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/utils/source_matcher_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/utils 2025-01-24T02:56:10.5670090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/utils/matcher_with_name_node_map_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/utils 2025-01-24T02:56:10.5671360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/utils/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/utils 2025-01-24T02:56:10.5672460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/utils/common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/utils 2025-01-24T02:56:10.5673660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/utils/matcher_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/utils 2025-01-24T02:56:10.5674920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/utils/fuser_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/utils 2025-01-24T02:56:10.5676110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/pass_manager.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5677360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/_tensorify_python_scalars.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5680210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/fake_tensor_prop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5681480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/operator_support.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5682650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/annotate_getitem_nodes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5683900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/graph_manipulation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5685660Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/dialect 2025-01-24T02:56:10.5686580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/dialect/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/dialect 2025-01-24T02:56:10.5688020Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/dialect/common 2025-01-24T02:56:10.5688640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/dialect/common/cse_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/dialect/common 2025-01-24T02:56:10.5689910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/dialect/common/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/dialect/common 2025-01-24T02:56:10.5690750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/graph_drawer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5692530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/splitter_base.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5694170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/passes/graph_transform_observer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2025-01-24T02:56:10.5695050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/tensor_type.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5696570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5698000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/immutable_collections.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5698750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/annotate.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5700220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/subgraph_rewriter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5702820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/interpreter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5709580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/_symbolic_trace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5711120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/node.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5712750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/_compatibility.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5713340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fx/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2025-01-24T02:56:10.5714780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:10.5716290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_utils_internal.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:10.5717580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quasirandom.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:10.5718880Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_prims_common 2025-01-24T02:56:10.5719390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_prims_common/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_prims_common 2025-01-24T02:56:10.5721380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_prims_common/wrappers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_prims_common 2025-01-24T02:56:10.5723090Z creating build/bdist.macosx-11.1-arm64/wheel/torch/multiprocessing 2025-01-24T02:56:10.5723760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/multiprocessing/queue.py -> build/bdist.macosx-11.1-arm64/wheel/torch/multiprocessing 2025-01-24T02:56:10.5725240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/multiprocessing/_atfork.py -> build/bdist.macosx-11.1-arm64/wheel/torch/multiprocessing 2025-01-24T02:56:10.5726120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/multiprocessing/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/multiprocessing 2025-01-24T02:56:10.5727540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/multiprocessing/spawn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/multiprocessing 2025-01-24T02:56:10.5729980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/multiprocessing/reductions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/multiprocessing 2025-01-24T02:56:10.5731000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/multiprocessing/pool.py -> build/bdist.macosx-11.1-arm64/wheel/torch/multiprocessing 2025-01-24T02:56:10.5732480Z creating build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5732950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/gds.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5734410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/streams.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5735370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/error.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5736270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/comm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5737660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/memory.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5738860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/jiterator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5740150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/nccl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5741210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5742930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/_gpu_trace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5744240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/_sanitizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5745690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/random.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5746710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/_memory_viz.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5748110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/tunable.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5750030Z creating build/bdist.macosx-11.1-arm64/wheel/torch/cuda/amp 2025-01-24T02:56:10.5750550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/amp/autocast_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda/amp 2025-01-24T02:56:10.5752320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/amp/grad_scaler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda/amp 2025-01-24T02:56:10.5753130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/amp/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda/amp 2025-01-24T02:56:10.5754710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/amp/common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda/amp 2025-01-24T02:56:10.5755460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/sparse.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5756860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/nvtx.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5758190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/graphs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5759160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5760520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/cuda/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2025-01-24T02:56:10.5762000Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include 2025-01-24T02:56:10.5762510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/sleef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2025-01-24T02:56:10.5769650Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5770360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/attr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5772200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/embed.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5774650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/numpy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5776410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/pybind11.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5783270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/operators.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5783870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/iostream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5784380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/gil.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5784910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/chrono.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5785430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/typing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5785940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/stl_bind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5786490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/buffer_info.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5787060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/options.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5787580Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/eigen 2025-01-24T02:56:10.5788490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/eigen/matrix.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/eigen 2025-01-24T02:56:10.5790260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/eigen/common.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/eigen 2025-01-24T02:56:10.5791040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/eigen/tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/eigen 2025-01-24T02:56:10.5792760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/functional.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5793580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/stl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5796620Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2025-01-24T02:56:10.5797260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail/type_caster_base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2025-01-24T02:56:10.5798930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail/exception_translation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2025-01-24T02:56:10.5799840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail/typeid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2025-01-24T02:56:10.5801490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail/descr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2025-01-24T02:56:10.5802460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail/internals.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2025-01-24T02:56:10.5804040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail/cpp_conduit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2025-01-24T02:56:10.5804820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail/value_and_holder.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2025-01-24T02:56:10.5806380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail/common.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2025-01-24T02:56:10.5807390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail/class.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2025-01-24T02:56:10.5808950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/detail/init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2025-01-24T02:56:10.5810390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/common.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5811210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/eval.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5812900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/cast.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5814440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/type_caster_pyobject_ptr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5815280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/eigen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5816780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/gil_safe_call_once.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5817730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/pytypes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5819950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pybind11/complex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2025-01-24T02:56:10.5821210Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2 2025-01-24T02:56:10.5821860Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2/serialize 2025-01-24T02:56:10.5822770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/caffe2/serialize/in_memory_adapter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2/serialize 2025-01-24T02:56:10.5824410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/caffe2/serialize/read_adapter_interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2/serialize 2025-01-24T02:56:10.5825540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/caffe2/serialize/crc_alt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2/serialize 2025-01-24T02:56:10.5827240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/caffe2/serialize/versions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2/serialize 2025-01-24T02:56:10.5828220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/caffe2/serialize/inline_container.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2/serialize 2025-01-24T02:56:10.5829440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/caffe2/serialize/file_adapter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2/serialize 2025-01-24T02:56:10.5830970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/caffe2/serialize/istream_adapter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2/serialize 2025-01-24T02:56:10.5831620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/cpuinfo.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2025-01-24T02:56:10.5833790Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch 2025-01-24T02:56:10.5835090Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.5835630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/Size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.5837200Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor 2025-01-24T02:56:10.5837910Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_package 2025-01-24T02:56:10.5838880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_package/pybind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_package 2025-01-24T02:56:10.5840210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_package 2025-01-24T02:56:10.5841230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/inductor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor 2025-01-24T02:56:10.5842860Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-01-24T02:56:10.5843590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runner/pybind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-01-24T02:56:10.5844820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-01-24T02:56:10.5846560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-01-24T02:56:10.5847570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-01-24T02:56:10.5848680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-01-24T02:56:10.5850200Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:10.5850920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:10.5852280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:10.5853260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:10.5854370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:10.5856060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:10.5856910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime/interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:10.5858670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:10.5859560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:10.5860720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime/model.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:10.5862840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:10.5863790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_runtime/model_container.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-01-24T02:56:10.5865210Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-01-24T02:56:10.5865900Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-01-24T02:56:10.5866950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-01-24T02:56:10.5868710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-01-24T02:56:10.5870600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-01-24T02:56:10.5871600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-01-24T02:56:10.5872830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-01-24T02:56:10.5873940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-01-24T02:56:10.5875150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-01-24T02:56:10.5876360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-01-24T02:56:10.5877990Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-01-24T02:56:10.5878730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-01-24T02:56:10.5879960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/c/shim_mkldnn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-01-24T02:56:10.5881290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/inductor/aoti_torch/c/shim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-01-24T02:56:10.5883140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.5884150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/DeviceAccelerator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.5885620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/Export.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.5886260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/Device.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.5887480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/THConcat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.5889220Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/onnx 2025-01-24T02:56:10.5889890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/onnx/back_compat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/onnx 2025-01-24T02:56:10.5891380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/onnx/init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/onnx 2025-01-24T02:56:10.5892230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/onnx/onnx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/onnx 2025-01-24T02:56:10.5893640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/Event.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.5894600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/Types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.5896260Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed 2025-01-24T02:56:10.5897620Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd 2025-01-24T02:56:10.5898020Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2025-01-24T02:56:10.5899310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/context/container.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2025-01-24T02:56:10.5901110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/context/context.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2025-01-24T02:56:10.5901840Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:10.5902990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:10.5904320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:10.5905460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:10.5907020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:10.5908040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:10.5909260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:10.5910380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:10.5911620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:10.5912840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:10.5914160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-01-24T02:56:10.5915590Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2025-01-24T02:56:10.5916480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2025-01-24T02:56:10.5917780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2025-01-24T02:56:10.5919180Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5919880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5921050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/rref_context.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5923960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/request_callback_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5924830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/python_resp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5925980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/rref_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5927820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/request_callback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5928630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5929660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/rref_proto.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5931300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/py_rref.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5932150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/rpc_agent.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5935160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/python_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5936250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/message.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5937950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5938820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/python_remote_call.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5939930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/python_call.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5941060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5942690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/script_remote_call.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5943520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/script_resp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5944630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/rpc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5946390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/rpc_command_base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5947260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/script_call.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5948220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5949440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/torchscript_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5951080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5952820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5953790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/agent_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5955680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-01-24T02:56:10.5957220Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5957970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5959340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/error.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5960570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5962460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/logger.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5963330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/Work.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5964610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5965860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5967460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/debug.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5968370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5969510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/Store.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5971400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5972320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemory-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5974990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5981130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5985650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/RankLocal.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5986550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5987290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/FileStore.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5988020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/reducer.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5988800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5989520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5990720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/logging.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5992480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5993310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/comm.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5994920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/Functional.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5995750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/socket_fmt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5997000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/Backoff.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5998260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/TCPStore.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.5999260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/python_comm_hook.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6000400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6002190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6004640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/NanCheck.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6005500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6006600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6007770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6008960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/HashStore.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6010040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/c10d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6011670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/sequence_num.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6012550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6014230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/SymmetricMemory.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6015260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6016610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/Backend.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6019430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/TraceUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6020240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/Utils.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6022240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/Types.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6023120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/exception.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6024080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6025160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/socket.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6026780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/intra_node_comm.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6027650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6028910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemory.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6030060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/distributed/c10d/DMAConnectivity.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-01-24T02:56:10.6031630Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6032980Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-01-24T02:56:10.6033760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/generated/python_return_types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-01-24T02:56:10.6035220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/generated/ViewFuncs.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-01-24T02:56:10.6036690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/generated/python_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-01-24T02:56:10.6037910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/generated/VariableType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-01-24T02:56:10.6039030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/generated/Functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-01-24T02:56:10.6043160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/generated/variable_factories.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-01-24T02:56:10.6044740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6045560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/custom_function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6047650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_linalg_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6048670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/saved_variable_hooks.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6049780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/record_function_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6050840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/engine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6052380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_enum_tag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6053150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/graph_task.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6058970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/edge.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6059670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_nested_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6061370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/variable_info.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6062300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/saved_variable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6063850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_engine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6064640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_legacy_variable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6066330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/profiler_python.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6067160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6068850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_saved_variable_hooks.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6069630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_cpp_function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6070630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_hook.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6072360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/VariableTypeUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6074580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_autograd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6075650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/profiler_kineto.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6077000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/variable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6078560Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-01-24T02:56:10.6079250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/utils/warnings.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-01-24T02:56:10.6080350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/utils/wrap_outputs.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-01-24T02:56:10.6081620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/utils/python_arg_parsing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-01-24T02:56:10.6082760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/utils/grad_layout_contract.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-01-24T02:56:10.6084070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/utils/lambda_post_hook.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-01-24T02:56:10.6085220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/utils/error_messages.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-01-24T02:56:10.6086770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_fft_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6087680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_variable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6088810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_torch_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6090650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/function_hook.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6091360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/input_metadata.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6092470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/grad_mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6094070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/jit_decomp_interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6094940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_sparse_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6095860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/symbolic.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6097520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/input_buffer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6098300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/profiler_legacy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6099360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/autograd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6101100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/cpp_hook.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6102230Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-01-24T02:56:10.6102950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/functions/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-01-24T02:56:10.6104660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/functions/pybind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-01-24T02:56:10.6105420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/functions/comm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-01-24T02:56:10.6106530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/functions/basic_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-01-24T02:56:10.6107760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/functions/accumulate_grad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-01-24T02:56:10.6110470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/functions/tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-01-24T02:56:10.6111430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_special_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6112590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/FunctionsManual.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6114470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/forward_grad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6115280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_anomaly_mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6116440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_nn_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6118040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/InferenceMode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6118830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/python_variable_indexing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6119810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/profiler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6121700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6122760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/autograd/anomaly_mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2025-01-24T02:56:10.6124380Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2025-01-24T02:56:10.6125230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2025-01-24T02:56:10.6126860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda/GdsFile.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2025-01-24T02:56:10.6127930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda/THCP.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2025-01-24T02:56:10.6128780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda/nccl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2025-01-24T02:56:10.6130040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda/memory_snapshot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2025-01-24T02:56:10.6131720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda/python_nccl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2025-01-24T02:56:10.6132570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda/device_set.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2025-01-24T02:56:10.6133570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda/Event.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2025-01-24T02:56:10.6134640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda/python_comm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2025-01-24T02:56:10.6135700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda/comm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2025-01-24T02:56:10.6137300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda/Stream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2025-01-24T02:56:10.6138010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/cuda/Module.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2025-01-24T02:56:10.6139660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/serialization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6140440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/Exceptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6143150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/itt_wrapper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6143980Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/xpu 2025-01-24T02:56:10.6144890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/xpu/Event.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/xpu 2025-01-24T02:56:10.6146440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/xpu/Stream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/xpu 2025-01-24T02:56:10.6147550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/xpu/Module.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/xpu 2025-01-24T02:56:10.6148330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/QScheme.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6149690Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2025-01-24T02:56:10.6150600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo/cache_entry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2025-01-24T02:56:10.6152210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2025-01-24T02:56:10.6152900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo/cpython_defs.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2025-01-24T02:56:10.6154440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo/cpp_shim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2025-01-24T02:56:10.6155260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo/framelocals_mapping.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2025-01-24T02:56:10.6156420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo/cpython_includes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2025-01-24T02:56:10.6157620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo/extra_state.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2025-01-24T02:56:10.6159160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo/compiled_autograd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2025-01-24T02:56:10.6160330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo/eval_frame.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2025-01-24T02:56:10.6162040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo/debug_macros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2025-01-24T02:56:10.6162900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo/python_compiled_autograd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2025-01-24T02:56:10.6164420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo/init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2025-01-24T02:56:10.6166040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/dynamo/guards.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2025-01-24T02:56:10.6167620Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6168290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/object_ptr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6170060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/tensor_numpy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6170890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/tensor_dtypes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6171950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/python_tuples.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6173420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/nested.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6174340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/python_raii.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6175550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/python_numbers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6177160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/python_scalars.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6178060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/pybind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6181030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/tensor_types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6182200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/tensor_memoryformats.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6183120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/python_arg_parser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6185070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/python_torch_function_mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6186130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/schema_info.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6187760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/generated_serialization_types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6189550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/tensor_new.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6194360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/tensor_qschemes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6195250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/verbose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6195910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/python_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6196510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/tensor_list.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6197150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/invalid_arguments.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6197800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/pythoncapi_compat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6198480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/cpp_stacktraces.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6199120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/device_lazy_init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6200220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/python_strings.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6201790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/python_symnode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6202970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/byte_order.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6204060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/pycfunction_helpers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6205110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/cuda_enabled.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6206880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/numpy_stub.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6208060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/out_types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6209770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/tensor_layouts.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6210600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/structseq.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6212080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/throughput_benchmark.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6213190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/disable_torch_function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6214350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/pyobject_preservation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6215580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/throughput_benchmark-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6216930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/tensor_flatten.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6217820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/torch_dispatch_mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6219130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/tensor_apply.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6220180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6221730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/python_compat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6222630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/six.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6223740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/python_stub.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6225410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/utils/variadic.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2025-01-24T02:56:10.6226070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/Stream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6227810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/DataLoader.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6228350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/THP.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6229390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/python_headers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6230970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/Layout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6231750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/DynamicTypes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6232870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/copy_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6234550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit 2025-01-24T02:56:10.6235270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/jit_opt_limit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit 2025-01-24T02:56:10.6237010Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6238050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/error_report.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6239600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/source_range.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6242050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/edit_distance.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6243070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6244460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/schema_matching.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6245410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/function_schema_parser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6247030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/tree_views.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6248100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/ir_emitter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6249690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/parser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6250530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/strtod.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6252340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/tree.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6253270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/concrete_module_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6254940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/builtin_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6255790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/exit_transforms.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6257190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/parse_string_literal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6258630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/sugared_value.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6260430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/inline_loop_condition.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6261230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/name_mangler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6262250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/tracer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6265160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/resolver.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6266190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/script_type_parser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6267320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/schema_type_parser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6268420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/lexer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6270040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/versioned_symbols.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6270950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/convert_to_ssa.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6272140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/source_ref.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6273330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/mini_environment.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6274400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/frontend/parser_constants.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-01-24T02:56:10.6276080Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2025-01-24T02:56:10.6276730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python/pybind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2025-01-24T02:56:10.6278440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2025-01-24T02:56:10.6279290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python/python_ir.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2025-01-24T02:56:10.6280540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python/script_init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2025-01-24T02:56:10.6281580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python/python_tree_views.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2025-01-24T02:56:10.6283240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python/python_list.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2025-01-24T02:56:10.6284050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python/python_ivalue.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2025-01-24T02:56:10.6285600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python/python_dict.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2025-01-24T02:56:10.6286460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python/python_custom_class.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2025-01-24T02:56:10.6287680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python/update_graph_executor_opt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2025-01-24T02:56:10.6288950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python/python_tracer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2025-01-24T02:56:10.6289950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python/pybind_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2025-01-24T02:56:10.6291590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python/init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2025-01-24T02:56:10.6292500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python/python_sugared_value.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2025-01-24T02:56:10.6293980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python/python_arg_flatten.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2025-01-24T02:56:10.6295130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/python/module_python.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2025-01-24T02:56:10.6296770Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6297600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6298670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6299910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6302470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6303380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/lowerings.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6304460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/graph_opt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6306030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6307370Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:10.6308160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:10.6309320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:10.6310530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators/operators.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:10.6311670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators/misc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:10.6313510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:10.6314580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators/norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:10.6315750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:10.6316850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:10.6317960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-01-24T02:56:10.6319240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6320320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6322050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6324430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/ir.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6325990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/exceptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6326890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6328120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/hash_provider.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6329880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/ir_printer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6330770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6331790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6333570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/expr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6335770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/cuda_random.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6336590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/codegen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6338270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6339160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6340250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6341340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/eval.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6342820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6343770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6344950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/block_codegen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6346810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6347560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/kernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6349990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/loopnest.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6351720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6352590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6354100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6354870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6356140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/external_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6357210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/stmt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6358800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/half_support.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6359890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/registerizer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6362490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/reduction.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6363520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6364410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6366150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/tensorexpr/analysis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-01-24T02:56:10.6367440Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:10.6368070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir/named_value.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:10.6369730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir/irparser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:10.6370450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir/ir.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:10.6372280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir/graph_node_list.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:10.6373350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir/ir_views.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:10.6375080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir/alias_analysis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:10.6377220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir/attributes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:10.6378320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir/type_hashing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:10.6379650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir/constants.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:10.6380740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir/subgraph_matcher.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:10.6382300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir/scope.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:10.6383160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir/graph_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:10.6384740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/ir/node_hashing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-01-24T02:56:10.6385930Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6386710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/import_read.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6387870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/export_bytecode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6389640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/import_source.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6390480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/export.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6395330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/import_export_helpers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6396260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/type_name_uniquer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6396980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/pickler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6397760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/storage_context.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6398510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/python_print.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6399320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6400150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/import_export_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6401150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6402180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/pickle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6403830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/import_export_constants.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6404790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6405940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/import.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6407340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6408530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/unpickler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6409990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/source_range_serialization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6411150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6413160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/serialization/onnx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-01-24T02:56:10.6414090Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:10.6415080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends/backend_debug_handler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:10.6416380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends/backend_interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:10.6417350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends/backend.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:10.6418860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends/backend_exception.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:10.6419750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends/backend_debug_info.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:10.6421180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends/backend_resolver.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:10.6422050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends/backend_preprocess.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:10.6423240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends/backend_detail.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:10.6424420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/backends/backend_init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-01-24T02:56:10.6426130Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6426890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6428050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6429510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6430510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/operator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6436510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/script_profile.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6437700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/interpreter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6439240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/register_ops_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6440980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/jit_exception.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6441920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/exception_message.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6443520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/argument_spec.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6446150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/shape_function_registry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6446920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/logging.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6448410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/jit_trace.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6449520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6451450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6452470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6453450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/custom_operator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6454850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/vararg_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6455780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/graph_iterator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6457420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/symbolic_script.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6458430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/variable_tensor_list.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6459720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/decomposition_registry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6460980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6461980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/autodiff.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6463790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/print_handler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6465140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/profiling_record.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6466070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6467190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/graph_executor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6468430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/operator_options.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6470140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/instruction.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6471060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/runtime/graph_executor_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-01-24T02:56:10.6473100Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6473780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/remove_expands.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6474910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/restore_mutation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6476040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/peephole_list_idioms.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6477180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/subgraph_rewrite.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6478390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/fuse_relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6479480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/guard_elimination.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6480680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6482130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/freeze_module.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6483080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/clear_undefinedness.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6484120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/dtype_analysis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6485860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/peephole.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6486630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/remove_dropout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6487790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6488890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/value_refinement_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6490560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/metal_rewrite.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6491250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/liveness.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6492690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/remove_mutation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6493700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6495510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6496170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/batch_mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6497260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/frozen_concat_linear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6498330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/constant_pooling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6499750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6500760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6502110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6503150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/fuse_linear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6504220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/annotate_warns.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6505520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/specialize_autogradzero.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6506890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/frozen_linear_folding.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6507860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/prepack_folding.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6509060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/frozen_conv_folding.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6510120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/constant_propagation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6511800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6512960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/insert_guards.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6513650Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-01-24T02:56:10.6514680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/utils/optimization_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-01-24T02:56:10.6516240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/utils/memory_dag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-01-24T02:56:10.6517390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-01-24T02:56:10.6518640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/utils/op_registry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-01-24T02:56:10.6519770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-01-24T02:56:10.6521290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/variadic_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6522090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/refine_tuple_types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6523160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/inliner.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6524290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/lower_grad_of.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6525800Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:10.6526700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization/helper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:10.6528090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization/quantization_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:10.6529520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization/insert_observers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:10.6530570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:10.6531780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:10.6533720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization/finalize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:10.6534790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:10.6536320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:10.6537430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-01-24T02:56:10.6538390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/normalize_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6539790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/device_type_analysis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6540780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/vulkan_rewrite.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6541960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/erase_number_types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6543420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/integer_value_refinement.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6544570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/fold_linear_bn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6545480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6546630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/graph_fuser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6548320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/fold_conv_bn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6549370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6550370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/inline_forked_closures.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6551560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6553200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6554030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6555040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/add_if_then_else.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6556650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/decompose_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6557550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/peephole_non_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6558650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/remove_inplace_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6559830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/inline_fork_wait.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6561320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/check_strict_fusion.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6562230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/concat_opt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6563700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6564840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/eliminate_no_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6566030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/requires_grad_analysis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6567230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/dead_code_elimination.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6568940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/clear_profiling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6569830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/create_functional_graphs.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6571550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/bailout_graph.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6572660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/lower_tuples.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6573570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6574730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6575820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/canonicalize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6577010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6578160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6579530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/loop_unrolling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6580400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/shape_analysis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6581550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6582810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/remove_exceptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6583840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6584990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/inplace_check.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6586240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6587820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6592520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/pass_manager.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6593270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/onnx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6593950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6594610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/lift_closures.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6595270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/autocast.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6596030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6596700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/passes/lower_graph.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-01-24T02:56:10.6597010Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/codegen 2025-01-24T02:56:10.6597750Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/codegen/cuda 2025-01-24T02:56:10.6598780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/codegen/cuda/interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/codegen/cuda 2025-01-24T02:56:10.6600250Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-01-24T02:56:10.6600920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/testing/file_check.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-01-24T02:56:10.6602060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/testing/hooks_for_testing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-01-24T02:56:10.6603540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/jit_log.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit 2025-01-24T02:56:10.6604780Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6605550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6606600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/parse_operators.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6608050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/observer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6608990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/upgrader_mobile.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6610930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6611710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/quantization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6613300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/profiler_edge.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6614040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/code.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6615580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/interpreter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6616430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/frame.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6617610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/method.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6619250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/debug_info.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6620180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6621340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/prim_ops_registery.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6622620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/parse_bytecode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6624100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/import_data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6625130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/import_export_common.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6626260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/type_parser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6627380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/import.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6628960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/module.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6629810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6631390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/mobile/file_format.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-01-24T02:56:10.6632220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/resource_guard.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit 2025-01-24T02:56:10.6633570Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/api 2025-01-24T02:56:10.6634760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/api/function_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/api 2025-01-24T02:56:10.6635770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/api/method.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/api 2025-01-24T02:56:10.6637110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/api/compilation_unit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/api 2025-01-24T02:56:10.6638110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/api/object.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/api 2025-01-24T02:56:10.6639320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/jit/api/module.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/api 2025-01-24T02:56:10.6640780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/Storage.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6642230Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy 2025-01-24T02:56:10.6643680Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6644330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/debug_util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6645530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/tensor_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6646590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/config.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6647950Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core/internal_ops 2025-01-24T02:56:10.6648700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core/internal_ops 2025-01-24T02:56:10.6649800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/multi_wait.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6650980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/ir.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6652540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/permutation_util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6653430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/lazy_graph_executor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6656210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/cache.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6657120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/tensor_util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6658750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/shape.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6659690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/thread_pool.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6661340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/unique.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6662120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/shape_inference.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6664920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6665730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/ir_util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6667200Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core/ops 2025-01-24T02:56:10.6667920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/ops/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core/ops 2025-01-24T02:56:10.6669170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core/ops 2025-01-24T02:56:10.6670310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/metrics.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6671870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/ir_dump_util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6672680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/dynamic_ir.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6674280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/ir_builder.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6675080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/helpers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6676600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/trie.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6677430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6678960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/hash.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6680240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/core/ir_metadata.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-01-24T02:56:10.6681640Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/python 2025-01-24T02:56:10.6682310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/python/python_util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/python 2025-01-24T02:56:10.6683750Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:10.6684480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:10.6685710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:10.6686930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend/config.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:10.6687990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:10.6689140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:10.6690720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:10.6691510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:10.6693090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend/ts_node.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:10.6693980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend/ir_builder.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:10.6695260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-01-24T02:56:10.6696670Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-01-24T02:56:10.6697370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/backend/backend_interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-01-24T02:56:10.6698500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/backend/backend_data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-01-24T02:56:10.6699660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/backend/lowering_context.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-01-24T02:56:10.6701350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/lazy/backend/backend_device.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-01-24T02:56:10.6701990Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api 2025-01-24T02:56:10.6703240Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include 2025-01-24T02:56:10.6704570Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6705330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/fft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6706500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nested.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6707540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6708630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/version.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6710190Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:10.6711040Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6712420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/normalization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6713520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/rnn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6715340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/distance.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6716250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6717280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/linear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6718420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6719560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/vision.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6720840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6721960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/dropout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6723350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6724640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/embedding.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6725640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/fold.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6726740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/activation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6728480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/transformer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6729530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/pooling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6730860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6731880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6732970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/conv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6735550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/padding.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6736690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6737770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options/loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-01-24T02:56:10.6739390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:10.6740220Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-01-24T02:56:10.6741350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-01-24T02:56:10.6742470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:10.6743890Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-01-24T02:56:10.6744690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-01-24T02:56:10.6747300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-01-24T02:56:10.6748440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-01-24T02:56:10.6749450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/options.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:10.6750580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:10.6751740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:10.6753000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/pimpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:10.6754640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/module.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:10.6756110Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6756980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6758130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6759400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6762510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/distance.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6763540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6764700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/linear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6765980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6767300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6768470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6769930Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:10.6770880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:10.6772100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:10.6773300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:10.6774540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:10.6775790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:10.6778620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:10.6779610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:10.6780640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:10.6785340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:10.6786490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-01-24T02:56:10.6787330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6788150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/common.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6789000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6789850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6790670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/fold.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6791570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/activation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6792720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6794090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6795540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6796600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6797720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/conv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6800430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/padding.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6802810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6803850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/modules/loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-01-24T02:56:10.6805000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:10.6806220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/cloneable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-01-24T02:56:10.6807800Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:10.6808720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:10.6809900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional/distance.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:10.6811000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:10.6812080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional/linear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:10.6813270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:10.6814460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional/vision.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:10.6815800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:10.6816820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:10.6818020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:10.6819380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional/fold.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:10.6820470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional/activation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:10.6822050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:10.6823230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional/conv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:10.6824420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional/padding.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:10.6825680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:10.6826810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn/functional/loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-01-24T02:56:10.6828350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/enum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6829370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6831110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/all.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6831930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6832890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/arg.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6834080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/xpu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6835580Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:10.6836430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim/rmsprop.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:10.6837570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim/lbfgs.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:10.6838700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim/optimizer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:10.6839850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim/adagrad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:10.6841050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim/sgd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:10.6842310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim/serialize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:10.6844890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim/adamw.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:10.6846200Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-01-24T02:56:10.6847170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-01-24T02:56:10.6848320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-01-24T02:56:10.6849540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-01-24T02:56:10.6850640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim/adam.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-01-24T02:56:10.6852020Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-01-24T02:56:10.6852850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/serialize/archive.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-01-24T02:56:10.6854010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/serialize/input-archive.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-01-24T02:56:10.6855100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/serialize/output-archive.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-01-24T02:56:10.6856410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/serialize/tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-01-24T02:56:10.6857270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/torch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6858660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/optim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6859690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/jit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6861130Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/detail 2025-01-24T02:56:10.6861930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/detail/static.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/detail 2025-01-24T02:56:10.6863260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/detail 2025-01-24T02:56:10.6865770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/nn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6866880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/imethod.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6868600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/ordered_dict.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6870640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/cuda.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6872360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/autograd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6873230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/special.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6874940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/sparse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6875950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/mps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6877070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/python.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6878680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/serialize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6880190Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:10.6880990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/example.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:10.6882090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/dataloader_options.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:10.6883470Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-01-24T02:56:10.6884320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-01-24T02:56:10.6885550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/datasets/shared.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-01-24T02:56:10.6887180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/datasets/map.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-01-24T02:56:10.6888150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-01-24T02:56:10.6889340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-01-24T02:56:10.6890530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-01-24T02:56:10.6891780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/datasets/base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-01-24T02:56:10.6892930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/worker_exception.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:10.6893990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/dataloader.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:10.6895360Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-01-24T02:56:10.6896490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-01-24T02:56:10.6897590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-01-24T02:56:10.6899190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/detail/queue.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-01-24T02:56:10.6900150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/samplers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:10.6901550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-01-24T02:56:10.6902440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-01-24T02:56:10.6903620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/transforms/stack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-01-24T02:56:10.6904710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/transforms/collate.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-01-24T02:56:10.6905800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-01-24T02:56:10.6906850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/transforms/base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-01-24T02:56:10.6908350Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-01-24T02:56:10.6909230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-01-24T02:56:10.6910280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-01-24T02:56:10.6911400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/samplers/stream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-01-24T02:56:10.6912560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-01-24T02:56:10.6913810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-01-24T02:56:10.6914850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/samplers/random.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-01-24T02:56:10.6916250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/samplers/base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-01-24T02:56:10.6917190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/datasets.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:10.6918230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/transforms.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:10.6919650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/iterator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-01-24T02:56:10.6920990Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-01-24T02:56:10.6921880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-01-24T02:56:10.6923120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-01-24T02:56:10.6924230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/data/dataloader/base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-01-24T02:56:10.6925330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/api/include/torch/expanding_array.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-01-24T02:56:10.6926280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/MemoryFormat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6927710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/StorageSharing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6928890Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2025-01-24T02:56:10.6929800Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/stubs 2025-01-24T02:56:10.6930550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/stubs/base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/stubs 2025-01-24T02:56:10.6932220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/combined_traceback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2025-01-24T02:56:10.6932940Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-01-24T02:56:10.6933940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-01-24T02:56:10.6935360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/standalone/nvtx_observer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-01-24T02:56:10.6936430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/standalone/itt_observer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-01-24T02:56:10.6937500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-01-24T02:56:10.6938830Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-01-24T02:56:10.6939520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/python/pybind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-01-24T02:56:10.6940800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/python/combined_traceback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-01-24T02:56:10.6941850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/python/init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-01-24T02:56:10.6943470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/events.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2025-01-24T02:56:10.6944390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/kineto_shim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2025-01-24T02:56:10.6945250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/api.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2025-01-24T02:56:10.6946900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/kineto_client_interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2025-01-24T02:56:10.6947840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2025-01-24T02:56:10.6949700Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-01-24T02:56:10.6950450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/orchestration/vulkan.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-01-24T02:56:10.6951610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/orchestration/observer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-01-24T02:56:10.6953090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/orchestration/python_tracer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-01-24T02:56:10.6954710Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:10.6955410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind/unwinder.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:10.6956580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind/dwarf_enums.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:10.6958040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind/unwind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:10.6959050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind/sections.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:10.6960270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind/unwind_error.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:10.6962040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:10.6967950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind/debug_info.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:10.6969400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind/action.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:10.6970810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind/mem_file.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:10.6972350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:10.6973770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind/fde.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:10.6975210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind/communicate.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:10.6976630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind/lexer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:10.6978070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind/line_number_program.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:10.6979560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:10.6981060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/unwind/range_table.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-01-24T02:56:10.6982450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/containers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2025-01-24T02:56:10.6983760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/collection.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2025-01-24T02:56:10.6985040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/perf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2025-01-24T02:56:10.6986310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/data_flow.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2025-01-24T02:56:10.6987600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/profiler/perf-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2025-01-24T02:56:10.6988530Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/tensor 2025-01-24T02:56:10.6989480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/tensor/python_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/tensor 2025-01-24T02:56:10.6990710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/PyInterpreter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6991840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/Dtype.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6992950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/Module.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6994110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/python_dimname.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6995280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/CudaIPCTypes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6996420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/Generator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6997560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/TypeInfo.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6998780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/csrc/StorageMethods.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2025-01-24T02:56:10.6999870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/script.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch 2025-01-24T02:56:10.7000900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/library.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch 2025-01-24T02:56:10.7001970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/custom_class_detail.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch 2025-01-24T02:56:10.7003060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/custom_class.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch 2025-01-24T02:56:10.7004120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/torch/extension.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch 2025-01-24T02:56:10.7005110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/nnpack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2025-01-24T02:56:10.7005810Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2025-01-24T02:56:10.7006660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto/ClientInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2025-01-24T02:56:10.7007790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto/GenericTraceActivity.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2025-01-24T02:56:10.7008940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto/IActivityProfiler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2025-01-24T02:56:10.7010030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto/Config.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2025-01-24T02:56:10.7011060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto/TraceSpan.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2025-01-24T02:56:10.7012140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto/LoggingAPI.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2025-01-24T02:56:10.7013250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto/ITraceActivity.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2025-01-24T02:56:10.7014410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto/ActivityProfilerInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2025-01-24T02:56:10.7015620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto/ActivityTraceInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2025-01-24T02:56:10.7016760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto/output_base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2025-01-24T02:56:10.7017820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto/ThreadUtil.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2025-01-24T02:56:10.7018900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto/ActivityType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2025-01-24T02:56:10.7020000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto/libkineto.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2025-01-24T02:56:10.7021100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto/time_since_epoch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2025-01-24T02:56:10.7022220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto/ILoggerObserver.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2025-01-24T02:56:10.7023310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/kineto/AbstractConfig.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2025-01-24T02:56:10.7024380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/xnnpack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2025-01-24T02:56:10.7025300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/libshm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2025-01-24T02:56:10.7026220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/fp16.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2025-01-24T02:56:10.7027160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/qnnpack_func.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2025-01-24T02:56:10.7028130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/pthreadpool.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2025-01-24T02:56:10.7030070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/clog.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2025-01-24T02:56:10.7031040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/omp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2025-01-24T02:56:10.7033230Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7034070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Formatting.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7036050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/NestedTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7037180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/CPUFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7038490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/LegacyBatchedFallback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7039640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/CollapseDims.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7040900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7042130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/MetaFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7043170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7044660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/TensorOptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7045760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/DeviceAccelerator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7046840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/TensorUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7047890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/MemoryOverlap.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7053170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/TensorSubclassLikeUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7054350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/LegacyVmapMode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7055460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/InitialTensorOptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7056530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Version.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7057570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/DLConvertor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7058600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Device.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7059700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/FuncTorchTLS.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7060480Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7061310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/Dict_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7062420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/Formatting.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7063530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/TensorBody.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7065530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/GeneratorForPrivateuseone.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7066620Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/op_registration 2025-01-24T02:56:10.7067690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/op_registration/adaption.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/op_registration 2025-01-24T02:56:10.7069250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/op_registration/op_allowlist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/op_registration 2025-01-24T02:56:10.7070630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/op_registration/op_registration.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/op_registration 2025-01-24T02:56:10.7072000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/op_registration/infer_schema.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/op_registration 2025-01-24T02:56:10.7073230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/jit_type_base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7074350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/typeid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7075480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/rref_interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7076600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/Range.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7077760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/interned_strings_class.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7078940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/operator_name.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7080200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7081480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/symbol.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7082600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/Backtrace.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7083790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/TransformationHelper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7084960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/blob.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7086140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/function_schema.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7087440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/type_factory.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7088470Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/dispatch 2025-01-24T02:56:10.7089700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/dispatch/OperatorOptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/dispatch 2025-01-24T02:56:10.7091290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/dispatch/RegistrationHandleRAII.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/dispatch 2025-01-24T02:56:10.7092790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/dispatch/ObservedOperators.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/dispatch 2025-01-24T02:56:10.7094210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/dispatch/DispatchKeyExtractor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/dispatch 2025-01-24T02:56:10.7095690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/dispatch/Dispatcher.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/dispatch 2025-01-24T02:56:10.7097030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/dispatch/CppSignature.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/dispatch 2025-01-24T02:56:10.7098330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/dispatch/OperatorEntry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/dispatch 2025-01-24T02:56:10.7099640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/MT19937RNGEngine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7101000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/ivalue_to.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7102190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/aten_interned_strings.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7103480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/dynamic_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7104720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/class_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7107560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/LegacyTypeDispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7108800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/function_schema_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7110030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/NestedIntSymNodeImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7111230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/qualified_name.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7112470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/UndefinedTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7113670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/NamedTensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7114800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/Scalar.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7115970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/CachingHostAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7118140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/functional.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7119480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/DeprecatedTypeProperties.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7120700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/interned_strings.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7123050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/List.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7125600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/ATenOpList.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7126740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/Dict.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7129220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/type_ptr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7130370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/grad_mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7131690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/DistributionsHelper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7134060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/VariableHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7135290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/CheckMemoryFormat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7136460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/ScalarType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7137580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/Array.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7138680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/ATen_fwd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7139780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/stack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7140880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/ATenGeneral.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7142020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/custom_class.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7143130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/IListRef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7144260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/UnsafeFromTH.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7145550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/PythonOpRegistrationTrampoline.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7146790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/TensorBase.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7147910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/ATen_pch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7149050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/QuantizerBase.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7150230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/enum_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7151420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/alias_info.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7152550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/List_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7153710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/TorchDispatchUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7154990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/enum_tag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7156080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/jit_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7157430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/IListRef_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7158840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/ivalue.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7168400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/Dimname.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7169530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/Vitals.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7170700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/PythonFallbackKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7171590Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing 2025-01-24T02:56:10.7172170Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-01-24T02:56:10.7173200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-01-24T02:56:10.7174610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing/impl/boxing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-01-24T02:56:10.7175950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing/impl/test_helpers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-01-24T02:56:10.7177370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-01-24T02:56:10.7178900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-01-24T02:56:10.7180330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing/KernelFunction.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing 2025-01-24T02:56:10.7181690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing/OperatorKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing 2025-01-24T02:56:10.7183020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing/KernelFunction_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing 2025-01-24T02:56:10.7184330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing/BoxedKernel_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing 2025-01-24T02:56:10.7185610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/boxing/BoxedKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing 2025-01-24T02:56:10.7186910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/builtin_function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7188050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/DimVector.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7189170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/Reduction.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7190270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/Tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7191370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7192480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/Generator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7193620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/PhiloxRNGEngine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7194840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/TensorAccessor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7196000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/ivalue_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7197120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/core/Variadic.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2025-01-24T02:56:10.7198390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7199640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/jiterator_macros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7200710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Operators.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7201780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/CPUFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7202570Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2025-01-24T02:56:10.7203400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps/MPSProfiler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2025-01-24T02:56:10.7204530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps/EmptyTensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2025-01-24T02:56:10.7205650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps/MPSAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2025-01-24T02:56:10.7206790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps/MPSGuardImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2025-01-24T02:56:10.7207930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps/MPSHooks.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2025-01-24T02:56:10.7209040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps/MPSEvent.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2025-01-24T02:56:10.7210120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps/MPSDevice.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2025-01-24T02:56:10.7211230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps/MPSStream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2025-01-24T02:56:10.7212420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps/IndexKernels.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2025-01-24T02:56:10.7213600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps/MPSAllocatorInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2025-01-24T02:56:10.7214800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/mps/MPSGeneratorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2025-01-24T02:56:10.7215680Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7216800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/CompositeRandomAccessor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7218190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/MathBitsFallback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7219480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/TensorTransformations.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7220720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/ComplexHelper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7221940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/ConvUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7223130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Normalization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7224330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/ReductionType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7225480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Repeat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7226630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/layer_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7227810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/GridSampler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7229020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/TriangularOpsUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7230260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/UnfoldBackward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7231440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/batch_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7232590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Unfold3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7233730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Fill.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7234940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/LinearAlgebra.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7236170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/RangeFactories.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7237320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/RNN.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7238470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/IndexKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7239660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Pool.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7240920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Cross.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7242060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/im2col.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7243470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/TransposeType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7244800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/DispatchStub.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7246800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Unfold2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7247980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Distance.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7249280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/FunctionOfAMatrixUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7250420Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mps 2025-01-24T02:56:10.7251380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mps/MetalShaderLibrary.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mps 2025-01-24T02:56:10.7252670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mps/TensorFactory.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mps 2025-01-24T02:56:10.7253970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mps/MPSGraphSonomaOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mps 2025-01-24T02:56:10.7255300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mps/MPSGraphVenturaOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mps 2025-01-24T02:56:10.7256760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mps/MPSGraphSequoiaOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mps 2025-01-24T02:56:10.7258070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mps/OperationUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mps 2025-01-24T02:56:10.7259310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mps/Copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mps 2025-01-24T02:56:10.7260490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Distributions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7261680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/MaxPooling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7262840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Gelu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7264060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/SparseTensorUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7265280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/CPUFallback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7266150Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7271620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/IsContiguous.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7272980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/zmath.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7274200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/ReduceUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7275490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/mixed_data_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7276890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7278250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7279460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/int_mm_kernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7280750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/SampledAddmmKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7282030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/Gelu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7283250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/moments_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7284540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/ChannelShuffleKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7285880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/SpmmReduceKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7287220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/GridSamplerKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7288520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/SerialStackImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7289800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/Intrinsics.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7291030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/LogAddExp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7292310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/WeightNormKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7293650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/MaxUnpoolKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7294930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/SoftmaxKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7296260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/AtomicAddFloat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7297510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/Reduce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7298710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/CatKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7299950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/StackKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7301330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/DepthwiseConvKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7302690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/DistributionTemplates.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7303970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/PixelShuffleKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7305270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7321270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/IndexKernelUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7322570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/avx_mathfun.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7323860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/CopyKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7325160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cpu/Loops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2025-01-24T02:56:10.7327470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/FusedAdagrad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7328690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/GridSamplerUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7329890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/TopKImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7331150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/TensorAdvancedIndexingUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7332470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/DilatedConvolutionUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7333700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/ForeachUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7335850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/SobolEngineOpsUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7337090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/ReduceAllOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7338190Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7339260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/CompositeRandomAccessor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7340740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/Normalization.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7342220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/SortingRadixSelect.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7344870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/MiscUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7346160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/block_reduce.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7347490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/GridSampler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7348810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/TensorModeKernel.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7350470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/MemoryAccess.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7353480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/CuFFTPlanCache.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7354810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/RowwiseScaledMM.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7356130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/CUDAJitLoops.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7357430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/im2col.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7358700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/ScanKernels.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7359990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/IndexKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7361220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/SortUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7362920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/DeviceSqrt.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7364250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/Distributions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7365530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/UpSample.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7366790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/Randperm.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7368030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/vol2col.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7369250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/Pow.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7370520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/BinaryInternal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7371880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/reduction_template.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7373200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/fused_adamw_impl.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7374460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/Math.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7375840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/CuFFTUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7377190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/ReduceOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7378480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/SortingCommon.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7379770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/TensorTopK.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7381020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/ScanUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7382320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/TensorModeKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7383650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/MultiTensorApply.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7386460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7387820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/thread_constants.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7389060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/Resize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7390270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/Sorting.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7391580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7392930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/fused_adam_utils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7394200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/Activation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7395460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/JitLoops.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7396730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/KernelUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7398040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/ForeachFunctors.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7403270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7404630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/Loops.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7405840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/Sort.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7407070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/UniqueCub.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7408330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/CUDALoops.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7409680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/DistributionTemplates.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7411020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/GridSampler.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7412330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/PersistentSoftmax.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7413610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/Reduce.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7414840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/jit_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7416140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7417490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/SortStable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7418760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/LaunchUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7420030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/fused_adam_impl.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7421280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/cuda/Copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2025-01-24T02:56:10.7422170Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized 2025-01-24T02:56:10.7423180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/ConvUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized 2025-01-24T02:56:10.7424540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/AffineQuantizer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized 2025-01-24T02:56:10.7425900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/IndexKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized 2025-01-24T02:56:10.7427220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/library.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized 2025-01-24T02:56:10.7428190Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:10.7429260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu/XnnpackUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:10.7430680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu/fbgemm_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:10.7432140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu/init_qnnpack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:10.7433580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu/conv_serialization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:10.7435010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu/qlinear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:10.7436520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:10.7438020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu/qembeddingbag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:10.7439470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu/QnnpackUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:10.7440950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:10.7442410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu/OnednnUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:10.7443860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu/QuantUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:10.7445320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu/RuyUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:10.7446720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu/qconv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:10.7448110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu/BinaryOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:10.7449530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/cpu/QuantizedOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-01-24T02:56:10.7450960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/AffineQuantizerBase.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized 2025-01-24T02:56:10.7452360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/FakeQuantAffine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized 2025-01-24T02:56:10.7453760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/PackedParams.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized 2025-01-24T02:56:10.7455070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/quantized/Copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized 2025-01-24T02:56:10.7456280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Lerp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7457410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/ReduceOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7458630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/TensorAdvancedIndexing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7459870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/UnaryOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7461060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/SortingUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7462290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/MathBitFallThroughLists.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7463580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/StridedRandomAccessor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7464890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/TensorShape.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7466070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/IndexingUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7467250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/UpSample.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7468080Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/utils 2025-01-24T02:56:10.7469010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/utils/ParamUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/utils 2025-01-24T02:56:10.7470290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/utils/ParamsHash.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/utils 2025-01-24T02:56:10.7471560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/utils/Factory.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/utils 2025-01-24T02:56:10.7472790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/ResizeCommon.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7474000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/SharedReduceOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7475170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Resize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7476360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/SpectralOpsUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7477530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Sorting.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7478680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/NonSymbolicBC.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7479890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/TensorProperties.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7480800Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/transformers 2025-01-24T02:56:10.7481830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/transformers/attention.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/transformers 2025-01-24T02:56:10.7483230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/transformers/sdp_utils_cpp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/transformers 2025-01-24T02:56:10.7484540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/BucketizationUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7485750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/vol2col.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7486910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/LossMulti.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7488090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/NonEmptyUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7489310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/TensorDimApply.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7490170Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/hip 2025-01-24T02:56:10.7491120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/hip/ck_types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/hip 2025-01-24T02:56:10.7492390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/hip/ck_bgemm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/hip 2025-01-24T02:56:10.7493660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/hip/ck_gemm_template.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/hip 2025-01-24T02:56:10.7494890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/hip/ck_gemm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/hip 2025-01-24T02:56:10.7496090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/verbose_wrapper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7497280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/AdaptivePooling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7498520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/ConvolutionMM3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7499730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/group_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7500900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Histogram.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7501770Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/kleidiai 2025-01-24T02:56:10.7502740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/kleidiai/kai_pack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/kleidiai 2025-01-24T02:56:10.7504070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/kleidiai/kai_ukernel_interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/kleidiai 2025-01-24T02:56:10.7505420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/kleidiai/kai_kernels.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/kleidiai 2025-01-24T02:56:10.7510540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Activation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7511720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Math.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7512860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/FusedAdam.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7514080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/ScatterGatherChecks.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7515270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/CPUBlas.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7516540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/CompositeRandomAccessorCommon.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7517840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/BatchLinearAlgebra.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7519060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/AmpKernels.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7520280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/DistributionTemplates.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7521520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/TensorIterator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7522810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/TensorConversions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7523710Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/nested 2025-01-24T02:56:10.7524680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/nested/NestedTensorUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/nested 2025-01-24T02:56:10.7526110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/nested/NestedTensorTransformerUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/nested 2025-01-24T02:56:10.7527520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/nested/NestedTensorMath.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/nested 2025-01-24T02:56:10.7528910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/nested/NestedTensorBinaryOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/nested 2025-01-24T02:56:10.7530390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/nested 2025-01-24T02:56:10.7531790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/FractionalMaxPooling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7533020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/ReduceOpsUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7534240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/TensorFactories.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7535130Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mkldnn 2025-01-24T02:56:10.7535720Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mkldnn/xpu 2025-01-24T02:56:10.7536360Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-01-24T02:56:10.7537460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mkldnn/xpu/detail/Utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-01-24T02:56:10.7538920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mkldnn/xpu/detail/Attr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-01-24T02:56:10.7540410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-01-24T02:56:10.7541910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-01-24T02:56:10.7543230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/PointwiseOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7544440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/BinaryOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7545570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Pow.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7546720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/EmbeddingBag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7547900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/im2col_shape_check.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7549190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/SegmentReduce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7550370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/FusedSGD.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7551510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Padding.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7552680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/TensorCompare.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7553880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/PixelShuffle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7555080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/LinearAlgebraUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7556300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/TypeProperties.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7557500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/Copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7558790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/CanUse32BitIndexMath.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7560120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/native/TensorIteratorDynamicCasting.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2025-01-24T02:56:10.7561310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ceil_div.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7562340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/EmptyTensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7563430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/NativeMetaFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7564490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/dlpack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7565490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Config.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7566590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ThreadLocalPythonObjects.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7567690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Backtrace.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7568450Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu 2025-01-24T02:56:10.7569250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/Utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu 2025-01-24T02:56:10.7570410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/FlushDenormal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu 2025-01-24T02:56:10.7571490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vml.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu 2025-01-24T02:56:10.7572280Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2025-01-24T02:56:10.7573150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec_half.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2025-01-24T02:56:10.7574010Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-01-24T02:56:10.7574990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec128/vec128_convert.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-01-24T02:56:10.7576450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-01-24T02:56:10.7577810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec128/vec128.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-01-24T02:56:10.7579120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-01-24T02:56:10.7580450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-01-24T02:56:10.7581800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-01-24T02:56:10.7583050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec_mask.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2025-01-24T02:56:10.7585450Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:10.7586470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:10.7587810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:10.7589120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vec256_mask.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:10.7590440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vec256_qint.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:10.7591780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:10.7593130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vec256_double.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:10.7594450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vec256_float.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:10.7595780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:10.7597100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vec256.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:10.7598050Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/zarch 2025-01-24T02:56:10.7599160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/zarch 2025-01-24T02:56:10.7600520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vec256_convert.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:10.7601460Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:10.7602480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:10.7603960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:10.7605390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:10.7606800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:10.7608200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:10.7609600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:10.7611000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:10.7612480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:10.7613980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:10.7615410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:10.7616820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:10.7618270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:10.7619710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-01-24T02:56:10.7621060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vec256_int.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:10.7622390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-01-24T02:56:10.7623630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2025-01-24T02:56:10.7624790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec_convert.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2025-01-24T02:56:10.7626000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/intrinsics.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2025-01-24T02:56:10.7627230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/functional_bfloat16.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2025-01-24T02:56:10.7632540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/functional.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2025-01-24T02:56:10.7633430Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:10.7634410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512/vec512_int.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:10.7635800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512/vec512_convert.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:10.7637140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:10.7638500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:10.7639860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512/vec512_mask.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:10.7640530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:10.7641180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512/vec512_double.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:10.7641980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512/vec512_qint.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:10.7642640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512/vec512_float.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:10.7643250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec512/vec512.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-01-24T02:56:10.7643820Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-01-24T02:56:10.7644780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/sve/vec_qint.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-01-24T02:56:10.7646580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/sve/vec_double.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-01-24T02:56:10.7647650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/sve/vec_float.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-01-24T02:56:10.7649150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/sve/vec_common_sve.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-01-24T02:56:10.7650200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/sve/sve_helper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-01-24T02:56:10.7651810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/sve/vec_int.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-01-24T02:56:10.7652780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec_n.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2025-01-24T02:56:10.7655690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/functional_base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2025-01-24T02:56:10.7658090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpu/vec/vec_base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2025-01-24T02:56:10.7659630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/SparseCsrTensorUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7661050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/TracerMode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7662000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/BlasBackend.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7663320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Backend.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7664560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/RegistrationDeclarations.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7670600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/CompositeImplicitAutogradFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7671340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/PTThreadPool.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7673180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/OpaqueTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7673950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/MapAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7675700Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7676380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/CUDADevice.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7677910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/CUDAUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7678730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/CUDABlas.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7681470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/CUDAGeneratorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7682380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/AsmUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7683900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/Sleep.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7684940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/PinnedMemoryAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7686420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/DeviceUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7687190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/jiterator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7688430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/cub_definitions.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7689580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/CUDASparseDescriptors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7691200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/EmptyTensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7692060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/ApplyGridUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7693330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/PeerToPeerAccess.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7694410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/CUDAEvent.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7695550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/PhiloxUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7697140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/CUDAContext.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7697810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/Exceptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7699500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/ScanUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7700200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/NumericLimits.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7701570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/CUDATensorMethods.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7702610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/cub.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7704450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/CUDAGraphsUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7705140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/CachingHostAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7706910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/CUDADataType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7707470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/cub.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7709170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/CUDAContextLight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7709840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/CUDAGraph.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7711000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/CUDAApplyUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7712890Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2025-01-24T02:56:10.7713520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail/TensorInfo.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2025-01-24T02:56:10.7715270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail/CUDAHooks.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2025-01-24T02:56:10.7716280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail/KernelUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2025-01-24T02:56:10.7717200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail/IntegerDivider.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2025-01-24T02:56:10.7718870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail/LazyNVRTC.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2025-01-24T02:56:10.7719750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2025-01-24T02:56:10.7720660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail/DeviceThreadHandles.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2025-01-24T02:56:10.7722200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail/OffsetCalculator.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2025-01-24T02:56:10.7722940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail/IndexUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2025-01-24T02:56:10.7724570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/detail/UnpackRaw.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2025-01-24T02:56:10.7725260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/ThrustAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7726320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/Atomic.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7728010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/llvm_jit_strings.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7729670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/CUDASparse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7730410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/PhiloxCudaState.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7732080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/jiterator_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7732950Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/tunable 2025-01-24T02:56:10.7733860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/tunable/TunableOp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/tunable 2025-01-24T02:56:10.7735440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/tunable/StreamTimer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/tunable 2025-01-24T02:56:10.7736280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/tunable/TunableGemm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/tunable 2025-01-24T02:56:10.7737910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/tunable/GemmCommon.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/tunable 2025-01-24T02:56:10.7740260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/tunable/GemmHipblaslt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/tunable 2025-01-24T02:56:10.7741290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/tunable/GemmRocblas.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/tunable 2025-01-24T02:56:10.7742800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/tunable/Tunable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/tunable 2025-01-24T02:56:10.7743970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/ATenCUDAGeneral.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7744760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cuda/CUDASparseBlas.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2025-01-24T02:56:10.7747550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/quantized 2025-01-24T02:56:10.7748180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/quantized/QTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/quantized 2025-01-24T02:56:10.7749690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/quantized/Quantizer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/quantized 2025-01-24T02:56:10.7750460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/record_function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7752280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/WrapDimUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7753470Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu 2025-01-24T02:56:10.7754020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/xpu/XPUEvent.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu 2025-01-24T02:56:10.7755370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/xpu/XPUDevice.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu 2025-01-24T02:56:10.7756330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/xpu/PinnedMemoryAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu 2025-01-24T02:56:10.7757940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/xpu/CachingHostAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu 2025-01-24T02:56:10.7758570Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu/detail 2025-01-24T02:56:10.7759460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/xpu/detail/XPUHooks.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu/detail 2025-01-24T02:56:10.7760940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/xpu/XPUGeneratorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu 2025-01-24T02:56:10.7761770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/xpu/XPUContext.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu 2025-01-24T02:56:10.7763290Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/miopen 2025-01-24T02:56:10.7763880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/miopen/Utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/miopen 2025-01-24T02:56:10.7764970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/miopen/Types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/miopen 2025-01-24T02:56:10.7766490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/miopen/Descriptors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/miopen 2025-01-24T02:56:10.7767370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/miopen/miopen-wrapper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/miopen 2025-01-24T02:56:10.7768930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/miopen/Exceptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/miopen 2025-01-24T02:56:10.7769620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/miopen/Handle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/miopen 2025-01-24T02:56:10.7771060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/RedispatchFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7804830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Context.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7806460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7807470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7809030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/div_rtn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7810490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ExpandUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7812850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/MPSFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7815310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/TypeDefault.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7816260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/MPSFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7817830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/VmapGeneratedPlumbing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7827420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/MethodOperators.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7830240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/CPUFixedAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7831230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/NamedTensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7832790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Scalar.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7834350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/TensorIteratorInternal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7834910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/LinalgBackend.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7836450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/LegacyBatchedTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7837380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ArrayRef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7838840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/SequenceNumber.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7839750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/FunctionalStorageImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7841190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ExpandBase.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7842090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Parallel-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7843610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/MatrixRef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7844610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/CUDAFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7846410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/CompositeExplicitAutogradFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7847320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/FunctionalTensorWrapper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7848660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/SparseCsrTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7850440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/NumericUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7851280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ATen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7852400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/TensorNames.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7853790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/TensorMeta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7854660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/TensorIndexing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7856620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Layout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7857270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/SparseTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7860170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/SavedTensorHooks.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7861700Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2025-01-24T02:56:10.7862390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail/PrivateUse1HooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2025-01-24T02:56:10.7864180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail/AcceleratorHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2025-01-24T02:56:10.7864910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail/CUDAHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2025-01-24T02:56:10.7866480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail/MAIAHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2025-01-24T02:56:10.7867270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail/XPUHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2025-01-24T02:56:10.7868660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail/FunctionTraits.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2025-01-24T02:56:10.7869630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail/HIPHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2025-01-24T02:56:10.7876620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail/MPSHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2025-01-24T02:56:10.7877490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail/MTIAHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2025-01-24T02:56:10.7878110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail/HPUHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2025-01-24T02:56:10.7878720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/detail/IPUHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2025-01-24T02:56:10.7879370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7879880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/StorageUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7880420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/WrapDimUtilsMulti.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7880930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/code_template.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7881470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/TensorOperators.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7882030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/CUDAFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7883040Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/hip 2025-01-24T02:56:10.7884290Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/hip/impl 2025-01-24T02:56:10.7884990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/hip/impl 2025-01-24T02:56:10.7885990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/hip/impl 2025-01-24T02:56:10.7888830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/hip/impl 2025-01-24T02:56:10.7889730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/hip/impl 2025-01-24T02:56:10.7890510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ScalarType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7891980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cpp_custom_type_hack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7892870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Dispatch_v2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7894670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Storage.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7895510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/DeviceGuard.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7897010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ParallelNative.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7897900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/OpMathType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7899060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/PythonTorchFunctionTLS.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7900470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/PadNd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7901300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7903020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/CPUGeneratorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7903910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ParallelFuture.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7905520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:10.7940510Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7941150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_vulkan_available.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7942780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_atan.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7943880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7945380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7946290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7947320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mode_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7948800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7949740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_ones.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7950860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pixel_shuffle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7952310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_min_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7953300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7954700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acosh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7955670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frexp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7956730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erf_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7958210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/repeat_interleave_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7959080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i0e_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7960340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pixel_unshuffle_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7962070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_trilinear3d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7962700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cummin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7964230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/choose_qparams_optimized_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7965520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nonzero_static_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7967140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/where_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7968210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_scatter_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7969760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7970630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isfinite_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7972390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7973340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7974840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7975670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erfinv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7977170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_vecdot_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7978110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7979760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7980490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_and_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7982260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_strided_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7983270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7984890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7985710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/result_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7987410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7988100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/min_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7989530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumulative_trapezoid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7990420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss2d_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7992160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/soft_margin_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7992940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardswish_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7994720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7995400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pow_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7996950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7997640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binomial_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.7999000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_padded_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8000100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cosine_embedding_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8001640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_ambiguous_defaults_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8002490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8004060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8005150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8006060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8007130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/signbit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8008840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_propagate_xla_data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8009650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8011370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8012150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multilabel_margin_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8013630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8014470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumprod_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8016100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_remove_batch_dim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8016900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/constant_pad_nd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8018670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8019510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8021030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_lstm_mps_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8022060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_values_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8023600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8024620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nan_to_num_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8026290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_bin_edges_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8026930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_int_mm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8028090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/i0_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8029570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/inverse_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8030490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8032120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8032840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8034210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8035810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8036550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_batch_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8038390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8039140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8040510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/floor_divide_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8041410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8042950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8043870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_k1_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8045550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8046340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/huber_loss_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8047750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8048950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8050600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8051500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8052510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fill_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8053930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8055320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8056450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8057980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_copy_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8058680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_lstm_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8059720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log10_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8061410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8062220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sub_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8063290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_linear_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8064310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trace_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8065840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8066610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_efficientzerotensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8068390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8069110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_efficient_attention_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8070160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8071770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8072440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_y1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8073910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cholesky_ex_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8074830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8075950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/polygamma_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8077560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_xor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8078210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nextafter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8079360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8080380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_sigmoid_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8081870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_y0_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8082660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Long_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8083960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_max_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8084960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pdist_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8086570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sobol_engine_ff_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8087310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_wrapped_linear_prepack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8088760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8089480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arctan2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8091020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_gru_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8091820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_factor_ex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8093280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8098790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8099410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/absolute_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8100060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8100680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8101390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8102010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8102680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8103380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8104030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool3d_with_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8105520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8106480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_zeta_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8107990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8109860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8110940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8111830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bilinear_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8113380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/topk_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8114340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8115920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eig_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8116610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matrix_exp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8118210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8119050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_rnn_layer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8120680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8121390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8122730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/concatenate_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8123710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8125260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8126910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8127920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_factor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8129420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8130320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_inference_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8131770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i1_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8133080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8133830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hstack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8135220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8136210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_ctc_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8137430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_differentiable_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8139110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8139920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8140990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_nonzero_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8142450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8143280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dot_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8144730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/positive_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8145720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8146960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8148010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Float_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8149770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8150410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lu_unpack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8151720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8152850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8154270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8155180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/narrow_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8156650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan2_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8157360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rnn_relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8158770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mixed_dtypes_linear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8159850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_max_seqlen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8161410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_slogdet_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8162050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8163630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8165390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8166180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bernoulli_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8167150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_jvp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8168650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8169770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matrix_exp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8170660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_rnn_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8172450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8173440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8174810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hann_window_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8176280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rrelu_with_noise.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8177370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution_add_relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8178890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8179890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/coalesce_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8181340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_log_softmax_backward_data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8182430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8183850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/where_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8184870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8186140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8188010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8188840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8190130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8191030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8192270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8194150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8194820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_factor_ex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8195820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_svd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8197460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8199100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8199720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arctan_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8200960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_efficient_attention_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8202680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8203450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_real_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8204650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8205770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/neg_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8207320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmax_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8208070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8209730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erfinv_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8210810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8212310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/chain_matmul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8213090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sign_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8214390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8215800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/affine_grid_generator_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8216930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8218450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8219230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vdot_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8220500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_resize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8221490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_abs_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8223250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8224120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8225080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/abs_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8226620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/col_indices_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8227480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_xor_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8229000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_group_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8229830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_c2c_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8231760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8232720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8233770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cat_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8235340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conj_physical_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8236290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8237710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_sparse_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8239310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8240080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logspace_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8241620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8242580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_same_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8243760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/igammac_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8245270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8246380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8247670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Double_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8248560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/prod_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8250150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ceil_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8251020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8252730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8253910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8254820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8256650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8257380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/and_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8259000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8259850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8261410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_backward_reduce_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8262160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8263880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8265630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8266440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sqrt_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8267450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nan_to_num_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8268920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vstack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8269830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_rfftn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8271380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/normal_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8272220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_csr_sum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8273840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_inv_ex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8274870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8276440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8277320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8278410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8279570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8281310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8282010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_factor_ex_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8283590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_sgd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8284630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8289570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_eigh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8290550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8291110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dequantize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8291740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_c2c_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8292270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/align_to.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8292900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8293570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad3d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8294310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8295280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acosh_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8296960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8297770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_assert_scalar.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8298620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8300230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/min_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8301190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8303030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8303880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_select_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8304620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mkldnn_reshape_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8306520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8307350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/std_mean_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8308920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8309820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_fill_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8311330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/repeat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8312160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_floor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8313330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_from_mask_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8314560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8316230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_sparse_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8317260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dropout_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8318110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matmul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8319470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/floor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8320500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8321950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_view_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8323100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8324160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8325790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_check_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8326660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rot90_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8328210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/signbit_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8328990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reciprocal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8330310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8331820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/selu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8332800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8334370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8335170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8336880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8337850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8339420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_spherical_bessel_j0_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8340460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/minimum_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8341350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8343060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8343790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8345160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/values_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8346130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/col2im_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8347360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ge_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8348730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8350030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8351090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cosh_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8352890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8353750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8354620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardtanh_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8356270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8357100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8358130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8359690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8360540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan2_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8361700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sub_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8363070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_real_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8364120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8365560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8366450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_jvp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8367850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sobol_engine_scramble.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8368820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mish_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8370080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_rfftfreq_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8371080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8372310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nanmean_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8373450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_batch_norm_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8374870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cross_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8375690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_dropout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8376870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool3d_with_indices_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8378420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addbmm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8379430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8380340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gt_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8382080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8382810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8383870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_rnn_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8385480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8386160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/detach_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8387400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8388800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8389940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8391550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8392360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8393480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8394730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_depthwise3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8396190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/norm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8396980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_select_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8398390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exponential_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8399320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i0_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8400790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8401590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8403010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_autocast_to_full_precision_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8404000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erfinv_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8405420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lcm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8406560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8407500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8408980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cross_entropy_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8410630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8411640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsqueeze_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8413040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8414080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8415270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8416940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cross_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8417700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8418690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_int8pack_mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8420430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8421220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8422210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/permute.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8423650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8424610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8426320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8427190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_linear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8428320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_group_norm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8429920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_with_sizes_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8430860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8431920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_functional_assert_scalar_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8432970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mse_loss_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8434690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8435500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8436500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/roll.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8438070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_svdvals_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8439070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/orgqr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8440780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8441490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_transpose2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8443040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/layer_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8444070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8445210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8446290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/std_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8447880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8448850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8450320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/take.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8451080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/igammac_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8452270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isin_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8453440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/record_stream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8454570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resize_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8456270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_and_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8457170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8458190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_group_norm_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8459760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_complex_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8460780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fill_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8461630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linear_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8463300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isinf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8464040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expand_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8465500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_with_update_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8466550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_min_seqlen_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8467870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8469120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8470190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_dropout_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8471780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8476100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8476880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multinomial.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8477430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/alias_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8478080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8478640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/allclose_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8479310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8480100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nuclear_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8481660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_slow_conv2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8482530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multilabel_margin_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8484080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8484780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pairwise_distance_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8486390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/broadcast_to_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8487130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8488740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_lengths_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8489550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8490640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8492110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8493020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nextafter_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8494580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8495250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_aminmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8496630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/complex_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8497590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardswish_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8498780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/digamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8500300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8501140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8502470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8503310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triangular_solve_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8504630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pdist_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8505580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8507230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8508230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8509390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8510510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_or_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8512060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/geometric_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8512960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_transpose2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8514040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8515140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumprod_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8516670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8517680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8518680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ldexp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8519780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arccosh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8521380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_rank.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8522260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_copy_from_and_resize_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8523330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8525070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/all_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8526030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8527680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_set_to_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8528570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_left_shift_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8530040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randn_like_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8530760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rnn_relu_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8532560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8533560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8534670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8536290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pack_padded_sequence_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8537850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nonzero_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8538950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8540040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8541590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mse_loss_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8542660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8543980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/eye_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8545250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_exp2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8546280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adamw.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8547510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8548570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8550100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_copy_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8550940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frac_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8551830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8553360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8554530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8556100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8556800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pdist_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8558420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8559200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/broadcast_tensors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8560540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv3d_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8561560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lt_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8563020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_chunk_cat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8564040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8565570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_distributed_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8566210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8567830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_masked_softmax_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8568510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_irfftn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8570070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8570980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_scatter_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8572130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8573020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fftn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8574570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adagrad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8575340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/all_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8577010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_gru_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8577790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/eye_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8579330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hypot_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8580070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sqrt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8581720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8582360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/set_data_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8583900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_vecdot_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8584660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8586170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acosh_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8586860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convolution_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8588730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8589440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_csr_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8591040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sinh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8591710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/moveaxis_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8593180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/positive.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8594000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sum_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8595500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asin_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8596550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8597750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8599200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_empty.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8600240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8601230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/any_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8602980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8603910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8605580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_propagate_xla_data_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8606540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8608090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8609230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_round_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8611550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_conj.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8613070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_coalesced_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8614020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flatten.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8615590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_dense_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8616640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_or_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8618700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bincount_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8620600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dot_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8621730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_resize_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8623460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8624270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linspace_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8625740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lerp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8626420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nanmedian.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8627750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8628780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8629880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sgn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8631280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_gather_sparse_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8632190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/topk_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8633440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flip_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8634430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/any_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8636160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8636900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8637920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_entr_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8639680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8640930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/where_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8642810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_mm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8643490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/igamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8645230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8646110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_choose_qparams_per_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8647760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ihfft2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8648740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kl_div.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8650340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_legendre_polynomial_p_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8652170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mps_convolution.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8653750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8654400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/values_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8656000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resize_as_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8657230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bucketize_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8658970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8659800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_svd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8661630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8662520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8663990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/any_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8664880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vsplit_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8666000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8671200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_gru_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8671950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8672530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mps_convolution_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8673230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8673860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/value_selecting_reduction_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8674580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8675140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_log1p_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8675770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8677000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8677820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/put_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8679180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8680160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8681350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8682780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_jvp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8683670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8685240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acos_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8685960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log10_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8687530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8688430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mixed_dtypes_linear_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8689830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_max_pool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8690630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binomial.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8691990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_max_pool1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8693230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_qr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8694480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ctc_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8695380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_propagate_xla_data_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8696970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8698240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_add_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8699240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/norm_except_dim_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8700710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_normal_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8701690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8703150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool3d_with_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8704000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8705260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/transpose_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8706280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8707500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8708560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smooth_l1_loss_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8710190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cholesky_solve_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8711090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8712180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_renorm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8713780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8714520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8715690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8716920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8718260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/remainder_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8719220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_interface_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8720230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/deg2rad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8721970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8723160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8724680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8725500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/zero_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8727090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_complex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8727870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/floor_divide.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8729470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/soft_margin_loss_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8730150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addr_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8731400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8732490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8733640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8735230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8736050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8737150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/corrcoef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8738670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_tensorsolve_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8739530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8740550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_gammaln_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8742070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8742890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erfc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8744400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ccol_indices_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8745300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8746880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_asin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8747530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adam.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8749020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/zeros_like.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8749980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8751060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reshape_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8752540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_cosh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8753590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lt_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8754640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_transpose3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8755870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8757310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gt_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8758160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8759780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8760580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8761660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8763280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8763990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unbind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8765660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_reduce_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8766520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_dim_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8768220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triangular_solve_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8769360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8770160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/baddbmm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8771250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linear_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8772810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8773780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8774750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/geometric_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8776320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multilabel_margin_loss_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8777150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lstm_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8778720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_cos_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8779520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8781030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/outer_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8781780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_buffer_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8783310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vdot_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8785020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8785670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/topk.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8787250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8788120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8789420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8790490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Short_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8791590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_gather_stats_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8793270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8794230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8795480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8796390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_bsc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8797940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8798890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8800050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8801100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8802820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/q_scale_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8803500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lgamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8804540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/stft_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8806130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_mask_projection.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8807100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/aminmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8807980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_trilinear_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8809320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mse_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8810580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8811560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/affine_grid_generator_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8813060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sinc_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8814090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8815170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_dim_consecutive_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8816710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8817550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8819120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8819780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8821430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsqueeze_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8822140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/random_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8823590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/repeat_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8824530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8826150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_rank_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8826950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8828040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/output_nr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8829570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8830310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/not_equal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8831920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cholesky_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8832620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/meshgrid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8834120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8835360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_storage_offset_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8836230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isneginf_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8837370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8838880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsqueeze_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8839630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rand_like.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8841210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8841990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mse_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8843570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8844380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8846070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8847120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8848200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/float_power_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8849800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8850990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8855340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_dilated3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8855900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/maximum_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8856540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool3d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8857130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multi_margin_loss_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8857730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8858500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8859300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8860300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_batch_norm_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8861280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cosh_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8862790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8863440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asinh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8864770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8865760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8867360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8868290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_masked_scale.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8869670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8870780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8872230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diff_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8872980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmax_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8874830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8875660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8877140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/eye_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8878030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8879660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8880330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ceil_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8881590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8882700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8883820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_storage_offset.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8885430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8886270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8887760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pixel_unshuffle_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8888550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8890280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8891020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_masked_softmax_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8892720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8893590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8894450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/and.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8896020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_dilated2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8896840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_csr_sum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8898430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8899390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8900380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gru_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8901970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp2_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8902850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8904100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8905160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/searchsorted_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8906710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmv_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8907730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8908820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_scatter_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8910450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8911440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8912710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8913950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8914960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hann_window.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8916500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_int8_weight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8917480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8918470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log1p_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8919970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Int.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8920820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nextafter_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8922600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8923240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erf_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8924250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8925740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_flash_attention_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8926660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_rnn_layer_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8928100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8929040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isneginf_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8930250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8931470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8932550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/concatenate_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8933750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_or_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8935390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8936240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8937330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_min_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8938900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmin_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8939610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_index_put_impl_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8941020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8942280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erfc_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8943320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8944300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lstm_mps_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8945730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/range.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8946510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8948340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_erf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8949140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8950680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_resize_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8951390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_linear_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8952580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sinc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8953820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_conj_physical.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8954880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/square_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8956370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copysign_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8957130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amin_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8959010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8959970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8961160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/margin_ranking_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8962690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_psi_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8963860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_ndtri_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8964780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8966470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8967280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_erfc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8968880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/selu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8969800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cdist_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8971280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8972150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/range_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8973700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/aminmax_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8974420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_solve_triangular.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8976210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8976890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cov.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8978190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8979500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/relu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8980610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_dim_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8982140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8983160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/min.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8984760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/chain_matmul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8985580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tile_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8987190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8988660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_reciprocal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8989530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardshrink_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8991150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_dim_consecutive.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8992280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_nonzero_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8993310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_prelu_kernel_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8994870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_batch_norm_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8995760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kthvalue_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8997090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linspace_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8998220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.8999250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9000930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_parallel_materialize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9001840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9003660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9004510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9005570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/int_repr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9007050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ne_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9008070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9009920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9010620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9011540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_mul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9013120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9014110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9015310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_int_mm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9016810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9017970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9018850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9019890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fill.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9021600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9022390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9023860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9025590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9026280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log1p_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9027450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triplet_margin_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9028910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lcm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9029810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argwhere_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9031510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9032440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_frac.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9033860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/orgqr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9034880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9036280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mps_convolution_transpose_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9037200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9038360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sgn_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9043220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nanmedian_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9044020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/crow_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9044560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ihfft_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9045190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/put_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9045800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9046360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/std_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9047110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9048140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9049190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lerp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9050430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_max.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9051770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_int_mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9052800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/var_mean_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9054250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9055160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arctan_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9056660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9057740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/div_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9058510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/round_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9060280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9060960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hypot_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9061890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9063220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_mkldnn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9064230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9065360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_permuted_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9066970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9067870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9069100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lt_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9070170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_householder_product_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9071200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_lstm_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9072720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_grid_sampler_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9073520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9075190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9075980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_scatter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9077410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_apply_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9078510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9079840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nnz.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9080780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9082340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9083340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9084440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_compressed_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9085970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9086670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hamming_window_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9088220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9089040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/zeros_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9090370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9091440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_k0_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9092920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convolution.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9095360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_j1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9096120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9097780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9098910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9099850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9101780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9102710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/chunk_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9104520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9105330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9107110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_k1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9107780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sgn_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9109490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9110750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9111480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9112520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/topk_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9114100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9114820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_numel_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9116510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9117410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mish_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9118910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_values_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9119850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9121490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9122260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_or_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9123800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_numel_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9124800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9125810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9126980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9128400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9129290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_logcumsumexp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9130880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pow_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9131760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9132740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9134470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9135220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_solve_triangular_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9136850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conj_physical_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9137670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9138760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9140330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multinomial_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9141200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_spsolve_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9142930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9143800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9145150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9146030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sspaddmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9147580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/maximum_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9148470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_impl_index.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9150090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9150800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eigh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9151860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9153500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_max_pool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9154340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9155460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9156840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cummax_helper_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9157720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i1_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9159150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9160160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_compressed_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9161470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9162680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9163810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9165300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Half.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9166240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9167800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9168650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9170180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9170930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9171960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9173230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addr_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9174510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9175550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/not_equal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9177090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/xlogy_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9177950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_exp2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9179690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9180520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_j0_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9182150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9183020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9184140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_complex_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9185740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9186760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_u.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9187640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9189070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_j1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9189960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_index_put.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9191530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/row_indices_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9192350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multiply_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9194010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9194810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dim_arange_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9196460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9197490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_csc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9198350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9200020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9200890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9201910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9203470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/equal_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9204450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9205420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/xor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9207030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9207610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_reduce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9209130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slogdet_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9210130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9210980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/std_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9212720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9213460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log1p_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9214500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9216400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9217230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9218150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9219580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hspmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9220540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9222010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/take_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9222710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/segment_reduce_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9224070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9225220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9226570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/squeeze_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9231000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9231540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/less_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9232090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_shape_as_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9232610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9233270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9234020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_legendre_polynomial_p_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9235190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9236530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9238040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_min_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9238920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9239940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_max_pool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9241570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mps_convolution_transpose_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9242460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cat_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9243540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/swapdims_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9245060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rrelu_with_noise_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9245970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9247530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_csc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9248350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9249300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rnn_tanh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9250910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9251730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_multigammaln_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9253060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9254050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amax_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9255170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9256230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_dense_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9257870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9258550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nan_to_num_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9260130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cummin_helper_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9261130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9262390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9263550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9265000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log10_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9265880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_parallel_materialize_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9267630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9268340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_left_shift.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9269280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pad_circular_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9281570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9282160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9282820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9283380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frobenius_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9284010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/count_nonzero_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9284550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rsub_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9285120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_qr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9285690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_transpose2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9286250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_det_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9286790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9287360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_lgamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9288030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9289010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ne_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9290500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_slogdet_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9291300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multinomial_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9292740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_max_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9293600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tan_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9295090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multinomial_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9295870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_empty_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9297380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9298260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/all_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9299820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rms_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9300570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_dense_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9301760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9303210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flip_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9303960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/svd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9305420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9306430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_max_pool2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9308000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9308680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_polygamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9310250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rshift_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9310980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9312560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i1e_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9313500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9314590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/squeeze_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9315880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9317530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9318360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_leaf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9319390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/maximum_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9320900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asinh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9321830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/broadcast_to_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9323620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_lengths_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9324340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9325900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tril_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9326600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sqrt_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9328320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9329210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randint_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9330090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slogdet.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9331630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9332400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_erf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9334040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_functional_assert_scalar.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9334710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_lazy_clone.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9336200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mps_convolution_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9337770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9338800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/equal_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9339940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_quantized_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9340880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_digamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9342880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9343730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9345310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9346350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/all_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9347810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cross.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9348690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convolution_double_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9350450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9351400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9353080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9353830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9354990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmin_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9356450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log1p.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9357330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/less.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9359030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tensordot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9360020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9361380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sample_dirichlet_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9363000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9363900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9365580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9366450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cholesky_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9368110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/div_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9369340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9370680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9372200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9373130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_not_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9374460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9376110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9376850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9378100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_dilated2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9379660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_acos_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9380580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gradient_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9382260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_transpose1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9382980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/or_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9384580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smooth_l1_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9385320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9386970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9387640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/median_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9389030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9390090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9391470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atleast_3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9392470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_chunk_cat_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9393520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_functional_sym_constrain_range_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9394930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/im2col.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9395760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9397390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9398370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9399410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mps_convolution_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9401070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9401750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/retains_grad_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9403320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9404030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sign_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9405490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_like.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9406200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9408000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9408710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9409840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/output_nr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9411220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sqrt_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9412140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lstsq.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9413640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/count_nonzero.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9414460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/feature_alpha_dropout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9416160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9416990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9421630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trunc_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9422420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9423030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9423620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided_scatter_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9424200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i0e_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9424770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/norm_except_dim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9425380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sort_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9426080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logit_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9427150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_stack_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9428640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_hfftn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9429650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9431310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9431970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9433530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9434210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_solve.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9435500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/divide.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9436500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_masked_index.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9438120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9439090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_neg.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9440570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9441600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_resize_output_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9442700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adamw_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9444310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_inverse_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9445270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardswish_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9446740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ihfft2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9447770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cufft_get_plan_cache_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9448710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/values_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9450000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/feature_dropout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9451050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resize_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9452600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9453210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gt_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9454910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9455790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_xlog1py_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9457380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_inv_ex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9458170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9459600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tril_indices_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9460680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9461630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_bsr_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9463170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9464020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tensor_split_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9465470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9466480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/std_mean_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9468160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9469110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9470650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9471500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expand_as.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9473190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9473910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/le_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9475550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9476450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9478020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardshrink_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9478820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmv_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9480430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_bsc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9481230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9482870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sobol_engine_scramble_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9483470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slogdet_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9484790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_dropout_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9485840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardswish_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9486970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lshift_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9488450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/set_data_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9489430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9490440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tril_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9491950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9493040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9494120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9495610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9496320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sinh_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9497890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sub_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9498740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9500440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9501050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9502170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_batch_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9503400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lcm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9505010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9505850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9506850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unique2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9508460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9509280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9510460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_full_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9511600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9513210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logspace.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9514040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9515710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9516430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_mkldnn_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9517440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eigvalsh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9519110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9519790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_inv_ex_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9521410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsqueeze.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9522510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isinf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9524010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_max.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9524930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/floor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9526450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/where_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9527570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9528890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_log_softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9529980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_addmm_activation_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9531420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9532280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_h.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9533880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/set_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9534710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bucketize_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9536300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asinh_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9537220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9538740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9539690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9540960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_conj_physical_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9542580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_sum_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9543390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9544860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/alias.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9545690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9547250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9548450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fft_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9549590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9550680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i1e_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9551780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9552690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/poisson.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9554140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_h_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9555190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9556630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9557500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9558530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nan_to_num_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9560340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9561040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logspace_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9562060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9563140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conj_physical_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9564410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/heaviside.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9565310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arccosh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9566970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mkldnn_reshape.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9567620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_slogdet_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9569160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9571320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcdiv_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9572480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9574150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9575130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9582460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/aminmax_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9583110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9583660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_det_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9584420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9584970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_coalesce_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9585590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_triton_scaled_dot_attention_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9586190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_backward_elemt_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9586790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9587450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_sigmoid_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9588120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9588820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i1_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9589360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9590210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/equal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9591170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unique2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9592510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9593500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acos_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9595000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/heaviside_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9595910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9597170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9598430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/heaviside_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9599530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_jagged_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9600680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9601850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fw_primal_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9603100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_from_mask.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9604270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_bsr_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9607330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9607940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sum_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9608530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/searchsorted.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9609510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9610800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_solve_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9611860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_solve_ex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9613460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_and.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9614490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/instance_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9615540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9616780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9617810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_slow_conv2d_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9619210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_dense_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9620230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/geqrf_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9621800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tile.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9622570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9623760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9624850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_clamp_min_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9626020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nanmean.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9627330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9628560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9630150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9631030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9632070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9633200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9634930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9635660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/topk_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9637260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9637970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/xlogy_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9639220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9640520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9641790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9643040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9644150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scalar_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9645160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_bag_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9646290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rnn_relu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9647700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i1e_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9648950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9650020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9650920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ones_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9652260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9653320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cholesky_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9654370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triu_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9656070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/count_nonzero_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9656870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/eq_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9658470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_rfftn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9659310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9660480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hypot_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9661490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9662490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/feature_dropout_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9664090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9665120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9666700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/q_per_channel_zero_points.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9667710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9670030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9670810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isclose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9672330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_complex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9673300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lstm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9674900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_eigvals_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9675870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mps_convolution_transpose_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9677390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kthvalue.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9678350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_euclidean_dist_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9679440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9680960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sin_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9681850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsafe_chunk_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9683530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_minimum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9684660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9685730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9687200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9688100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9689740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_maximum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9690450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cholesky_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9691770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hamming_window.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9692810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flatten_dense_tensors_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9694190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9695270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9696910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9697760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9698920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9700420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9701330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9702350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_factor_ex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9703920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9704770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_consecutive_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9705970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9707810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9708570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_neg_view_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9709540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trapezoid_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9711120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_xor_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9712090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9713710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9714910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9715910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_not_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9717350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9718480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9719860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tril_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9721500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9722630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dsplit_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9723950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_vulkan_available_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9725290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resolve_neg.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9726350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9727720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rad2deg.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9728700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mps_convolution_transpose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9730270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_segment_reduce_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9731500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_logit_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9732550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cummin_helper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9734280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9735490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9736340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_addcmul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9737650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_with_sizes_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9738740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_nd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9740290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9741420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9742660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/type_as.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9743890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dot_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9744860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardswish_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9746030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9747210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9748270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_masked_softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9750010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9750830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9752210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sign_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9753400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_tensorsolve.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9754380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argwhere_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9755460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erfinv_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9756890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resolve_neg_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9757860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9759460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_triton_multi_head_attention.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9760290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/alpha_dropout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9762420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9763420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9764440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/stride_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9766210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/soft_margin_loss_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9766990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lift.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9768490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9769390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9770930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_broadcast_to_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9771900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_floor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9773320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acos_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9774590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_dropout_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9775640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9777140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9778070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9779350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/stride.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9780330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9781580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9782970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_normal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9783840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/align_to_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9784900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9786400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9787570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9788480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sample_dirichlet.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9789830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_ndtr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9791400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_airy_ai_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9792250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9793180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clone_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9794970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9800660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9801550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9802100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_cpu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9802680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9803260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_jagged.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9803920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9804590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9805380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9805950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unique2_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9806630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9807600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9808680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trunc_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9810260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/retain_grad_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9811170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9812770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/histogramdd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9814210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9815110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9816290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nanquantile_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9817480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9818590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumsum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9820240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/instance_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9821310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9822550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mixed_dtypes_linear_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9824140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_select_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9825110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9826690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/refine_names_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9827660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_remove_batch_dim_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9829160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9830090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9831960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9832590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acos.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9834030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9835020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9836500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9837590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9839230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9839970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/chunk.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9841050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_functional_assert_async.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9842540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arange_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9843510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9845120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsqueeze_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9846150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triangular_solve.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9847060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_real_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9848730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_layer_norm_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9849530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9850810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/renorm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9852390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_local_scalar_dense.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9853160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/absolute.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9854340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_assert_async_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9855910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9857100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9857960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mT_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9859650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9860620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_amp_update_scale.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9862490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9863420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9864360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_copy_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9865810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_ambiguous_defaults_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9866830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mul_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9867950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_transpose3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9869400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rrelu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9870440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_or_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9871580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsqueeze_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9873040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/huber_loss_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9873850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/renorm_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9875640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/record_stream_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9876550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/promote_types_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9878270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9879100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9880590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9881350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_vecdot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9882920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sample_dirichlet_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9883690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rand_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9885540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9886300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9887710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9888680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_y1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9889830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_scatter_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9891080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_csc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9892150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9893700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cummin_helper_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9894550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9895650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9897120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/detach_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9897990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cauchy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9899600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9900670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9901530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/row_indices_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9903000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/add_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9903770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9905300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9906050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_svd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9907290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_sdp_choice.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9908590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9909820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log2_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9910870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/selu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9911770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9913250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9914870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_frac_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9915550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vander_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9916740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/segment_reduce_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9918420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_conv_depthwise2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9919090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_diagonal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9920300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/set_data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9921840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/alpha_dropout_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9922600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/take_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9924390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9925420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9926570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adjoint_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9927470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_reduce_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9929190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9930040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/convolution_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9931770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9932580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9933630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multi_margin_loss_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9935330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9936190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_add_relu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9938200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_sinc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9939900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9940920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9942430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9943470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_maximum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9944600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_csr_prod_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9946130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_autocast_to_reduced_precision_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9946820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_gammaln_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9948170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_bag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9949180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9950320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/greater_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9951870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9952960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9954100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sort_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9955510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fill_diagonal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9956530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9958080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_csc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9958790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/zeros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9960340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9961340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9962890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9963920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9965430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmod_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9966290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9967860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9968650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sobol_engine_draw_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9970120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9971050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tril_indices_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9972170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_left_shift_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9973910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arctanh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9974590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9975680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reciprocal_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9977340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9977980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nnz_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9979110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9980800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9981450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9982450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_lstm_mps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9988160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9988920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9989600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9990140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_spsolve_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9990720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_set_to_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9991260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log10_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9991780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flip.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9992530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9993210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_linear_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9994070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/roll_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9996140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9996970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9998150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:10.9999300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0000780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_factor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0001670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0003210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0003970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/round_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0005680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0006430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0007500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0009100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0009780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0011400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0012110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_standard_gamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0013510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/neg_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0014400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pinverse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0016080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0017000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_scatter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0018070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0019530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0020540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0022150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0023140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0023880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arccosh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0025160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0026380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0028040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0028880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0029780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fftfreq.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0031320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/im2col_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0032100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_mm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0033780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/narrow_copy_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0034480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/not_equal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0035680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/prod_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0037310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0038150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_select.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0039450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_ndtr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0040560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0041450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0042900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcmul_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0043960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_h_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0045290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convolution_mode_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0046310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0047880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0048620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mps_convolution_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0050330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0051280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0052340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erfcx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0053870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0054950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ge_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0055740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/polar_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0057030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0058020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0059630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0060600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0061570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/data_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0063150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0063790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0065680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0066630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0068370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unbind_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0069280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0070850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/eq_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0071640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/set_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0073220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_native_multi_head_attention_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0073990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_functorch_fallback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0075220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0076450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0077620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cufft_clear_plan_cache.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0078980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adagrad_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0079990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0081220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_linear_backward_input_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0082380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0083960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0084640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ger_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0085810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0086910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_values_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0088180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0089250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/set_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0090800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0091750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0093330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0094200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0095850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0096790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0098410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_det_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0099280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triangular_solve_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0101010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0101940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0103340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lshift_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0104510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_quantized.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0106200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_grid_sampler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0107320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0108940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0109880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0111580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0112470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_and_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0114050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/roll_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0114900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/remainder_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0116480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_flash_attention.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0117220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log10_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0118800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0119650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0121000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0121950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/convolution.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0123590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kl_div_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0124350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/roll_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0125540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0126760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0127790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0129310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multinomial_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0130850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_log_ndtr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0131500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0132490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0133930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmv_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0134740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_max_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0136260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_values_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0137020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clone.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0139180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0139850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0141730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0142470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_mm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0144070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reciprocal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0144900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0145930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_rnn_layer_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0147620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0148460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_or_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0149840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0150630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/values_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0152380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0153220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0154160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/swapdims.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0155950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0156830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0157880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cauchy_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0159430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0160500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0162170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0163070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/huber_loss_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0164530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/permute_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0165560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0167000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sub_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0168250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0169580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0170510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sinh_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0176110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log2_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0176790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0177510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0178120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_solve_ex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0178710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logsumexp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0179230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/all.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0179810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foobar.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0180990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_grid_sampler_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0182830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0183570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_normal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0184650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_lstm_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0186230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mvlgamma_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0187220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0188810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0189540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mish_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0190700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_rowwise_prune_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0191790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_acos_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0193250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0194380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0195450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0196950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0197860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0199360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0200080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_lerp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0201410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0202530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0203880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0204940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0206450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0207470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0208550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/movedim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0210370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0211230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arccos.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0212300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0213490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0215110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bucketize_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0215820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asinh_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0216860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dim_arange.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0218120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erfc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0219260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0220310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_nd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0221800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tan_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0222560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cdist_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0224060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardtanh_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0224900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0226650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0227400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_prelu_kernel_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0228210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gather.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0229840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_alias_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0230750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0232340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multi_margin_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0233050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0234550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_rfft_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0235390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0236560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0238190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0238970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acosh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0240560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0241250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcdiv_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0242570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0243420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_csr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0244970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0245930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0247630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0248390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0249900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0250890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0251950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0253030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_constrain_range_for_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0253990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0255480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matrix_power_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0256400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_transpose_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0257600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0259350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0260140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gather_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0261150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Long.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0262840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0263560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardshrink_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0264670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hstack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0265980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution_relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0267050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0268610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0269340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0270990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0271810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0273300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0274050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/div_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0275590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0276490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/deg2rad_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0277830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0279170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_group_norm_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0280170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0281140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rename_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0283020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0283850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0285520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0286230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0288040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0288580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tan_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0289660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0290960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0292040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0293260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_rowwise_prune.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0294800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rshift_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0295720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_depthwise_convolution_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0296760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0298240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arctan2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0299180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dequantize_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0300910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0302140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0303740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_local_scalar_dense_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0304510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0305970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0307080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0308760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0309450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_rfft2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0310890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gru.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0311900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sign_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0312980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atleast_1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0314570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_fill_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0315370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ifft2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0316930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isneginf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0317800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0319140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nanquantile.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0320270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0321480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0322920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/zeros_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0323740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_select_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0325300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nested_to_padded_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0326090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardtanh_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0327750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0328790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0329660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0331020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_irfft2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0332130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0333890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0334790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0336170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_add_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0337060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0338430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0339520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0340710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_sparse_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0342270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_psi_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0343190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardswish_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0344310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0345260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/std_mean_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0346690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0347620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_expm1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0349090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0350150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0351150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_trunc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0352740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0353540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_not.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0355020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_mul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0356250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bartlett_window_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0357060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0358260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0363200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_sigmoid_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0363780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/minimum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0364350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ccol_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0365000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_add_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0365670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multilabel_margin_loss_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0366240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/std_mean_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0366980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reciprocal_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0367680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0368540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cdist_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0370170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_sampled_addmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0371020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_add_relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0372780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0373700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0375130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randperm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0376130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0377610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0378910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0379790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_sum_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0381190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/i0.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0382410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sinh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0383440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_dropout_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0385160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_functorch_fallback_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0386000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0387540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flipud_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0388430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_ctc_loss_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0390100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0390960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_int_mm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0392490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0393470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0394540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/igammac_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0395900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_qr_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0396790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_erf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0398060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0399160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Char_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0400690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0401410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diag_embed_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0403030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_spdiags_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0403900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0405020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cov_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0406640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/q_scale_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0407400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0408980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0409730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/var.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0411360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0412260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_not_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0413690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_put.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0414610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dequantize_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0416180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/convolution_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0417020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0418120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0419720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i0e.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0420490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_log1p_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0422010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0422780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0424300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arange_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0425070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0426570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0427480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0429080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_fill_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0429890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/remainder.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0431310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0432150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/repeat_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0433820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0434710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0436120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool3d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0436940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_lerp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0439010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0439970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0441480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0442380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_from_bin_cts.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0443920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0444820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_rnn_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0446540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amax_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0447440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0448710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0449750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_rank_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0451200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_masked_scale_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0452140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_stack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0453630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/histc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0454740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0456170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0457130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0458550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_hfft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0459740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0460740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_padded_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0462210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0463130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0464790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/requires_grad_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0465480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gradient.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0467200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ihfft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0468030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0469110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0470750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0471680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_real_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0472720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copysign_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0474210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/values_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0475140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_prelu_kernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0476780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0477800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0479830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_add_batch_dim_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0480910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0482360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mH_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0483510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lift_fresh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0485230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ne_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0486210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0487690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multinomial_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0488820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_k0.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0490440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan2_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0491220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0492930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0494080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0495210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsafe_chunk_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0496850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0497730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_channel_shuffle_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0499470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0500350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmv_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0501480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rshift_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0503160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0504020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erfinv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0505670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_sdp_choice_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0506760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_copy_from_and_resize_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0507610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_log_softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0509110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_scatter_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0510880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0511690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0512610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/huber_loss_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0513770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/count_nonzero_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0515500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0516390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0517820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/true_divide_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0519020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0520460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0521560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ccol_indices_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0522900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcmul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0523980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adagrad_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0525690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erfc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0526580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_transpose3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0528020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resolve_conj.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0529530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_gru_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0530690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0532190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_erfc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0533420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0534280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0535820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0536530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cosh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0538490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0539220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0540990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0541990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0543920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcmul_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0544520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0545500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0547140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0548210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0549230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmod.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0550850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0555220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/inverse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0556010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_round_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0556610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_dense_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0557190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rshift_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0557900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0558410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/item.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0559130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0560400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0561390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hypot_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0562440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_zero.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0564000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/zeros_like_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0564940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0566490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_select_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0567230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_bsr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0568940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0570110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0570860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0572100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0573220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eig_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0574620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sgn_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0575670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0577140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eigh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0578160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0579650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lu_unpack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0580540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmax_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0582140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_vector_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0583130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_layer_norm_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0584140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0585830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0586640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0587710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_batch_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0589350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0590210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0592100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0593000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matrix_power.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0594340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sgn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0595780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ne_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0596880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0598580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_with_sizes_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0599420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0601110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conj_physical_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0602010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0603750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_power_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0604760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsafe_split_with_sizes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0606460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0607560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0609070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0610360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frac_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0611190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/less_equal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0612680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rrelu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0613750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0614940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rnn_tanh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0616570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0617390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0618800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mean_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0619960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_empty_strided.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0621230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0622030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pow_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0623660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/channel_shuffle_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0624520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0625740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_consecutive_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0627000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0628020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/alpha_dropout_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0629620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_abs_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0630440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0632130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kaiser_window.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0633280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0634960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nansum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0636260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0637860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/soft_margin_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0638540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/det_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0640030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0641000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addr_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0642570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0643500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_with_sizes_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0645350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0646120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_sigmoid_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0647700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_div_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0648490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/prelu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0649970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/maximum_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0651010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0652500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cslt_compress_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0653610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0655170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_ceil_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0656230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0657990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmod_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0659070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0660620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0662110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_index_put_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0662900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_not_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0664270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/crow_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0665350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logspace_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0666910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0668650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0669470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_sgd_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0671210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0672160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lift_fresh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0673820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0674910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0676170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_stride_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0677780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isreal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0678670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unbind_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0680260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_spdiags_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0681190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pad_enum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0682860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/equal_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0683850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_autocast_to_reduced_precision.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0685490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mse_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0686370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_addmm_activation_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0687870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pin_memory_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0688710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_unpool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0690030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0691590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0692610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0694430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0695320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/einsum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0696980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_ctc_loss_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0697860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/xlogy_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0699360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0700230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_conj.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0701810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0702690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution_relu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0703800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/permute_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0705230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multiply.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0706240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_stats_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0707850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0708540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0710350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0711410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0712400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trapezoid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0714210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/prelu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0715220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0716260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_strides_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0717720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/q_zero_point.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0718520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_resize_output_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0719850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isfinite_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0721150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_fill_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0722040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_resize_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0723640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0724490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0725680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0726890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcdiv_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0728570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0729320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_softmax_backward_data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0730320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_max_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0731840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0732710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0734560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0735330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_from_padded_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0736830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0737760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0739380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0740380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0741380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matmul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0742890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0744420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_y1_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0745140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reciprocal_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0746810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tril_indices_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0751530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isposinf_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0752290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_max_seqlen_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0752860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gcd_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0753450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convolution_double_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0754040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0754600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0755170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_ctc_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0756030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_neg_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0756980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0758160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nested_to_padded_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0759230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_add_relu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0760730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/round_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0761600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resolve_conj_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0763300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0764440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0765130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ones_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0766870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_clamp_max.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0768010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_sigmoid_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0769680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_slow_conv2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0770530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/neg_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0772100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0773330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0774280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0775990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lerp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0776620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0778160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_set_to_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0779020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logsumexp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0780890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0781690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pad_packed_sequence.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0782640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/round.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0784320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0785390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/roll_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0786970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/i0_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0787790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/alias_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0788980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mish_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0790550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0791250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcmul_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0792410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/std_mean_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0793710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0794750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/prod_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0795830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pow_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0797300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resize_as_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0798110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gcd_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0799930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0800760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0801770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log10.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0802960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0804660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0805870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0806840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0807860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0809460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scalar_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0810330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0811810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nonzero_static.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0812590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/im2col_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0814290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_spherical_bessel_j0_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0815230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cslt_sparse_mm_search_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0816840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/im2col_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0817840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0819040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0820530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0821340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copysign_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0823030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_from_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0823680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fw_primal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0825190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/qscheme_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0826090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0827430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_print.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0829010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0829700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/set_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0831360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0832190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_init_dropout_state.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0833310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0834830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0835870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/polygamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0837160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0838410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0839390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0841210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0842010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/swapaxes_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0843020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0844180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0845420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0846690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0847670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantile.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0849490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0850380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0851380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/convolution_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0852950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_scatter_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0853680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nnpack_available.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0855290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0856070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_zeros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0857640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0859140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0859990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0860900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0861990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/uniform_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0863660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0864600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax_backward_data_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0865540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0866860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mT_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0867890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nonzero_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0869180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pack_padded_sequence.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0870230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_neg.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0871850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_multi_dot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0872790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_weight_to_int4pack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0874320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0875880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arange_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0877390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0879020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ne.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0880610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0882340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rrelu_with_noise_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0883390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0885050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0885890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lu_unpack_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0887020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erfc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0888580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_sum_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0889440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_max_pool1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0890980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lstsq_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0892100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ormqr_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0893520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0894390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_nonzero.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0895820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0896660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0898230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_xor_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0898990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0900160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_cos.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0901190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randn_like_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0903540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_slow_conv2d_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0904470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/subtract_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0906010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_compressed_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0906870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_ceil_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0908520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/div_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0909550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_choose_qparams_per_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0911140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_div_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0912900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_or_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0913820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0914700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mul_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0916030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0917130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/swapaxes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0918420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/divide_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0919590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0920550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sub.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0922240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0923810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0924710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0926230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rrelu_with_noise_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0927060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_r2c_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0928330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_entr_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0929830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0930790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_real_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0932430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_svd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0933370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_batch_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0934480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0935920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/constant_pad_nd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0936930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0938440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_lstm_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0939510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0944560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_factor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0945290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0945830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_leaf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0946450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binomial_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0947120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0947790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0948420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log2_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0949120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0949970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resolve_conj_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0951820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0952520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/row_indices_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0954000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_exp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0954940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/layer_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0955930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0957820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0958660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_mask_projection_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0960390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0961250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_zeta_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0962220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0963740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_log_ndtr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0965080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0965980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copy_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0967430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_solve_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0968580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0969750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eigvalsh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0971200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0972110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0973320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0974590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0975960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0976920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0978100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_zeta_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0979510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_complex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0980660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0981770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0983230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/add_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0984280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0985330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_check_errors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0986680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/angle_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0987700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0989070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_min_seqlen_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0990130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_values_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0991290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0992430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0994150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0995130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sort_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0996560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_lazy_clone_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0997580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0999060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.0999920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/thnn_conv2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1001380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/baddbmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1002960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1142120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_renorm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1144140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1145950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multilabel_margin_loss_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1147390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reciprocal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1148590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/contiguous_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1150200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_channel_affine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1151930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_mask_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1153470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1603570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1606160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1608220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1609930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tril_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1611740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_not_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1613360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1615110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1616940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1618550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arcsin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1619920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/qr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1621780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_real_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1623710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1625390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frac_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1627550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1629230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_rnn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1631500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_native_multi_head_attention_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1633870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_segment_reduce_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1635960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_eigvals_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1638600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_string_default_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1640420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_csr_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1643060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1645000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1646770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pairwise_distance.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1648730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1650290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1652100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Long_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1653690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1655280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ifftshift_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1657000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1658570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1660290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cos_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1661880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1663590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mkldnn_transpose_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1665390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1666970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1668590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1670030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1671840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1673470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atleast_2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1675100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/choose_qparams_optimized.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1676650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_slogdet.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1678290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_slow_conv2d_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1680050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1681470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_y1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1683090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1684770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1686120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1687640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_spdiags.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1689170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matmul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1690730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1692040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_neg_view.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1693670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsafe_split.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1695060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sign_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1696870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1699300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp2_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1700850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1702190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/div_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1703700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trace_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1706460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1714780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_hfft_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1723890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1731630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linear_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1740770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1742320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_strides_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1749010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1755410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ifft_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1757240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/value_selecting_reduction_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1764090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triplet_margin_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1765550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1766990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1771860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1780910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1781980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/col2im_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1783420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_c2r_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1788380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arcsinh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1790060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/type_as_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1796460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eigvals_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1797890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1799400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1806440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_laguerre_polynomial_l_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1815760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_safe_softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1822080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_copy_from_and_resize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1823380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_solve_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1824470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logdet.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1829610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/align_as_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1830520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1837190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1838290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1839530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_impl_index_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1844900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1846610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_masked_index_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1853510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trunc_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1854440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cholesky_solve_helper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1855880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_laguerre_polynomial_l.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1862380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1863630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1870720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/min_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1875900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isnan_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1878670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unique2_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1880050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mkldnn_reshape_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1881520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1887340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pack_padded_sequence_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1895890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_trilinear3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1905910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/normal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1914550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1920850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1921670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1923190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1928770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/less_equal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1929430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_ones_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1937910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nonzero_static_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1938910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sinc_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1945530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binary_cross_entropy_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1947260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1952620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expand_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1954560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/complex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1955320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_interface_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1957010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1964130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1965920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isin_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1971460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i1_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1973320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pinverse_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1978880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_atan_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1981980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1988150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lstm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1989090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1995650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/xlogy_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.1997010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expm1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2003590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dist_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2004490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2006040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/maximum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2010890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/remainder_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2012720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ones.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2018260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2020430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_maximum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2026100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv3d_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2027690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/aminmax_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2028730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_i1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2035860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2036680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mse_loss_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2043490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cummax_helper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2044950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2051290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cross_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2052390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_resize_output_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2058860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gru_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2060460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2066210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/std_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2067330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/round_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2069920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_cpu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2077390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2078080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_irfft2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2086400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/block_diag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2087560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_offsets.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2088900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2090530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atanh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2091930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2097850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_bsc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2099130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exponential_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2105040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_depthwise_convolution_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2111980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gather_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2113270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2114670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/geqrf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2115830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2117000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_xor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2123860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2125610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2126980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_aminmax_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2132180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_layer_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2136430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_constrain_range_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2141340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2144950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frexp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2148810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2150180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2154100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_vander_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2157170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2162900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2164220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_with_sizes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2166440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2172370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2174700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sum_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2180020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vdot_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2181480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2182810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pinverse_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2188180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2189600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2195600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/add.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2196970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2203530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cummax_helper_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2204890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2206210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2211150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/eq_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2219160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_impl_index_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2220570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2226970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2228460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2229730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sort_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2235120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2236370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2240840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2244230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2248940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2250240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2253350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool1d_with_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2257800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2261410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool3d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2262560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2267390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sin_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2269820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sum_to_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2275500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2276900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2283260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_he_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2284470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gradient_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2291710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cslt_compress.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2292920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2294160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2300060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2301280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_optional_intlist_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2302490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_normal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2308510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hypot_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2309640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hypot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2310770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2315630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2317440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2324370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2325720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_qr_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2327020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2331920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2333450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2341610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2343940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2348680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2351120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2352390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cross_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2358550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_j0_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2359720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rsub_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2365650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sort_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2366940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_resize_and_clear_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2373520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/put_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2374840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/eq_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2376160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2381710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2389470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_floor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2390730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/signbit_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2396860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erfinv_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2398150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diag_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2399440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_functional_sym_constrain_range_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2405900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2407120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_logcumsumexp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2413930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2415130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_or.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2416330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2421180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2423390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pdist_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2429470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_permuted_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2430640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/topk_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2432030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2438550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2439820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bincount_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2445970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2448150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/i0_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2453670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2454820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asinh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2456140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2460670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resize_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2461860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logcumsumexp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2469110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ravel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2470600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2476240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_and_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2477820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2479120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_index_put_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2485960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isin_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2487230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2494800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Short.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2495940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_broadcast_to_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2502520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_scatter_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2503660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmod_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2504960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_scatter_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2509810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2511450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardtanh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2521050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2522330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_reduce_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2523470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_solve_ex_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2525340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2526630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/std_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2532910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vsplit_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2534210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2540690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2542040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_solve_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2543260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_csr_sum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2557590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2558750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ccol_indices_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2565560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resize_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2566820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2568080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/constant_pad_nd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2573910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2575180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2581750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/choose_qparams_optimized_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2582920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2584310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2589580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2591620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_version_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2598190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2599440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2600620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/corrcoef_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2606270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2607530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2614560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sin_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2615760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Half_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2617050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2622470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2624150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2629640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardswish_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2632030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2633380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2638850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2640190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_flash_attention_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2647720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2649070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2650310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2654770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matmul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2656120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_bsr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2662520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2664680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pad_circular.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2670850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2672190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2673420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_div.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2678250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2679640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2686130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_bsr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2687400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bmm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2691270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2694810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcdiv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2695980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/add_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2700090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multi_margin_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2703960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_xor_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2707520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp2_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2708660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_from_padded.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2714020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_bsr_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2722010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/combinations_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2724060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmod_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2726370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/broadcast_to.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2730770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2732050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardswish_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2737960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2739650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2745530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_solve_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2746820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_or_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2753660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i0e_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2754960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2760790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vdot_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2761900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_conj_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2972340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gt_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2973450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diag_embed.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2984660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sqrt_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2985830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nan_to_num_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2986980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.2988200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_with_update.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3004170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3005420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3006870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardshrink_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3008030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/heaviside_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3013080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pdist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3014300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3034500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cholesky_solve_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3035720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_signed.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3036970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3038390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ne_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3039660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_reduce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3040890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logit_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3042220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_multi_dot_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3043570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3044960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eig_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3046180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i1e_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3047400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3048740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_conj_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3049870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randperm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3086720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3088030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adamw_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3089280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rand_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3103890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3105120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_cosh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3106400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3107630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rename_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3108860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3131680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3132940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3134240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3135570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3136880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_is_zerotensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3138000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3139190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multilabel_margin_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3140400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_check_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3141630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_dense_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3142950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3144200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Float.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3145420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_neg_view_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3146590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acosh_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3147900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3149230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_assert_tensor_metadata_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3150450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3151630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3201680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_fill_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3202860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pad_sequence_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3214780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsafe_split_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3216080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3217360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mish_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3231240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3232630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3243320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3244570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3257680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convolution_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3258870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan2_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3260060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bucketize_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3261350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_layer_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3262510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tan.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3263670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3265050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3266290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ge_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3267500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3268710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lu_solve_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3269880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_tbc_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3271090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax_backward_data_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3272340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3312410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sobol_engine_draw_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3313590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardtanh_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3314770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_and_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3316030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_select_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3334030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lerp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3335200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matrix_exp_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3347360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erfc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3348540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cosh_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3361330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cross_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3362560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3363760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_multi_dot_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3364990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3366240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cslt_sparse_mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3367440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3368630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_add.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3369780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lt_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3397270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3398440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nonzero_static_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3410390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exponential_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3411760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3428590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3429950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3431200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3432370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cummin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3433550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_channel_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3434750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cauchy_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3435840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rsqrt_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3436920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linspace_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3438090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3439370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_i1_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3440650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frac_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3441990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3443270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3444450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3445650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_sum_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3446830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3448230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3449810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3451140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3452340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/inner_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3453530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_triton_scaled_dot_attention.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3454690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_coalesced.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3455840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_group_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3457090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3458270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fftfreq_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3467620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3468910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3470120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_standard_gamma_grad_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3471290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_inv_ex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3472530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3473800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_addmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3475150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3476470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hinge_embedding_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3477640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nanmedian_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3478790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dot_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3480080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3481330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/stack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3482500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_quantize_weight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3483780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smooth_l1_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3484980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sobol_engine_initialize_state_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3486360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3487790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3489180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3490490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3491750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3492960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_put_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3494230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3495520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3496720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3497850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sign_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3498970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_add_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3500100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_layer_norm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3614610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_padded_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3615770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_set_to_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3616950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3618160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3619390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/concatenate.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3620550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3640020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_backward_reduce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3641280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_eigvals.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3642390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/qscheme.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3643630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3644910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/movedim_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3667730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3668970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lu_unpack_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3681420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/thnn_conv2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3682740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3695290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3696610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3708960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_sampled_addmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3710180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/igammac_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3711450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3713000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_max_pool1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3730300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_airy_ai_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3731510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcdiv_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3732760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3749790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_max_seqlen_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3751030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3752350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcdiv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3753430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rsqrt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3754630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3755940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_lgamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3761360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmax_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3762610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3764000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3765260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erfc_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3766440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3767620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3768750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/svd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3769880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3771010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lift_fresh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3772130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_zero_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3773270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flatten_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3774420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_factor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3775640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_v.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3776830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/where_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3778130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3779440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3780620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pad_enum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3781890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3783220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3784360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/from_file.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3785540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/row_stack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3786640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3787870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3789080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/celu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3790210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matrix_exp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3791360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_logit_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3792620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3793820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lstm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3794900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3796050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cummaxmin_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3797260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_functional_sym_constrain_range.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3798590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3799980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3801230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3802410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/zero_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3803730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3804920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/row_stack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3805990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_transpose3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3807140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution_add_relu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3808350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3937370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/real.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3938590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3940090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pairwise_distance_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3941310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3942540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3943720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_dual.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3944890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_dual_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3946100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3947320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/renorm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3948500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/relu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3949820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3951280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3952570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3953720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3955010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3956290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3957410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ceil.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3958720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.3960080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4007410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sqrt_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4008790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4010010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/min_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4011280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4012720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4033170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nnpack_available_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4034390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_right_shift.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4035610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4036960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4038460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4039850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_autocast_to_full_precision.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4041130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4042380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_min_seqlen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4043540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/remainder_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4044690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_det_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4045940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4047310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4048690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4050040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4051250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randint_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4052470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4053740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nested_to_padded_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4055110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4056400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resize_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4057540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4058790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isclose_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4059940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resize_as_sparse_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4061110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4062290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4063580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4064800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triu_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4066010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_scaled_modified_bessel_k1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4067220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mish_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4068400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atleast_2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4069550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_lengths.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4070700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/renorm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4071880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_group_norm_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4073160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4074550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4075920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4077140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/take_along_dim_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4078330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_from_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4079480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hsplit_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4080630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gather_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4081920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4083220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4084440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/t_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4085570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triu_indices_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4086950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4088250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/absolute_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4093430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isnan_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4094570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_hfft2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4095770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest3d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4096980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atanh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4098230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4099570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4100790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fill_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4102040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4103260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4104530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4105780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_mask_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4107050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4108380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4109590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rsub_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4110900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4112230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sinc_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4113480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4114930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4116350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4116930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_from_padded_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4117500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randint_like_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4118210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4118860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4119520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4120030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/abs.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4120550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isin_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4121130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/huber_loss_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4121670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/retain_grad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4122250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_resize_and_clear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4122780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kron_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4123320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log1p_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4123950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4124720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_no_update_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4125700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bucketize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4127250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4128160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4129670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gather_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4130710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4328410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4329540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4330500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clip_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4332110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bernoulli_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4342170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_local_scalar_dense_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4343020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cslt_sparse_mm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4344540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4363580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4364470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4377550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4379020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4380140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4380970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4382500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4383170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pow_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4384710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Double.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4385540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frobenius_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4387000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sinc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4388080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4424190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_pow_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4425160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4426690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kthvalue_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4440260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_is_any_true.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4441180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reshape_as_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4444280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4445090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_y0_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4446670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/crow_indices_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4453940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_int8pack_mm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4454920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/uniform_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4456420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_dense_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4457360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_csc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4458920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reshape_as_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4483570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4484460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4486000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4486800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_safe_softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4488360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4489580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4490410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4492000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4524730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/set_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4525620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/numpy_T.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4527480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4528180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_batch_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4529250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4530790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4531490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/float_power.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4532960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/narrow_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4533930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4535470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_consecutive_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4536210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rot90.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4537750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/t.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4574800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4575780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/squeeze_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4576700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_min_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4578140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/greater.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4578960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/swapaxes_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4580770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4607950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4609060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4610080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sign.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4611410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4612390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_svd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4613800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/from_blob.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4614730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4616350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4616990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4618450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4619270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4620790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linspace_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4621640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4623040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_ndtri_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4624720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4625400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/put_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4626920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4627930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4629430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4630350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4631870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log1p_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4632850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4634330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tril_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4635250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4636780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4637550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_compute_linear_combination_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4639120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4639840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/put.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4641460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_airy_ai_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4642340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4643840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4644590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/eq_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4646250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4646950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/im2col_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4648500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4649380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumprod_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4650880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fill_diagonal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4651860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lgamma_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4653340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/equal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4654210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eigvals_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4655710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_flash_attention_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4656670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4658240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4659320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4666480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4667340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4667990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/value_selecting_reduction_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4668580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unpack_dual.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4669170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_log_ndtr_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4669980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4670540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_csc_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4671100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log1p_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4671770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4672350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flatten_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4672870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_numel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4673550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_svdvals_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4674490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4676000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_select.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4676770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4678890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_airy_ai.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4680330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/min_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4681140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4682660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logit_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4683640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4684960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4685990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4687850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_rnn_layer_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4688790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4690370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_efficient_attention_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4691090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4692720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4693920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/polar_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4694770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linspace.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4696380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_power_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4697300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4698820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4699700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arccos_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4701350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4702330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/digamma_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4703260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_is_acceptable_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4704610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4706150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4707170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4708730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erfcx_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4709440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cdist_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4710910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mean_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4712270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4714450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_mul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4715100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4718800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/round_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4719840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/moveaxis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4726640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_efficient_attention_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4727490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4735210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4736190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4737650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4743240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acos_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4744190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nansum_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4751000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4751820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4753400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4758810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4759640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diag_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4766800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4767750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4774100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4775630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4776460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mean_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4782760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4783890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4785900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_ctc_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4794590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4799420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trunc_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4800280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_jagged_to_padded_dense_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4803410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/detach.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4808040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_he.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4811700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4812690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4817960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/random_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4820030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_aminmax_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4825350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4826840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_select_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4829030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/row_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4835200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expand.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4836790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asinh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4842920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atanh_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4844570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4845360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sub_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4851840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/affine_grid_generator_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4853320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rnn_tanh_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4859220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ger_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4861900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4867230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4868080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4869780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4874630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/result_type_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4875630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_prelu_kernel_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4879600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ormqr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4888260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/floor_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4891420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4892300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4897690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_inverse_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4900520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4905890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4906830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4909260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4915580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4918000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4923660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_ndtri_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4924490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_addmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4925990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_xlogy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4931270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4932060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_floating_point_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4938600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4940060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_pow.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4946480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_irfftn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4947480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4949520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4956330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4957280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4964440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/median_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4965680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ifft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4972700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4973570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ceil_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4975040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4980820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/full_like.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4981890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4989050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4989970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rad2deg_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4991690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4992470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmax_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.4998250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/refine_names.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5005250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cond_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5006280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5009270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5013590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5014410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tensordot_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5021030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_from_padded_and_nested_example.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5023280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5028810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sqrt_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5030860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5032540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_jvp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5038270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_elemt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5039370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5046460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5053700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erfcx_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5054810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nextafter_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5056300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5061730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5062530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5069350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_stats_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5070230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_tbc_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5077400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_linear_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5078320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_assert_tensor_metadata.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5079750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5085630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/add_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5086460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rnn_tanh_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5092970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5094230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5095250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expand_as_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5102460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5106990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5110360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_scatter_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5111290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5117930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5118710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_aminmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5120260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/istft_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5125270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5126140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5132990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_expit_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5133830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_stack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5135740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fliplr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5142480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acos_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5143400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log10_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5150630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmax_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5151530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triu_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5159050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_dim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5160020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_and_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5161500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5166660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5168030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/prod.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5174980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mul_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5175730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_pinned.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5177260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_add_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5182650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5183560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5190480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5191380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5192890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rrelu_with_noise_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5198410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5199410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_trilinear3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5204790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_householder_product.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5207560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5212460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/aminmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5221230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_real.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5224360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5228910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5229750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/huber_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5233600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_native_batch_norm_legit_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5237380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5241880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5242730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5246920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5250730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5254230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagflat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5255170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amax_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5259710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5263340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i1e.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5268300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5270900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5278410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/zero_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5279520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5286320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5287700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5293800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arange_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5295410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mish_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5296070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/chalf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5301240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_svdvals.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5303610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5308670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_spherical_bessel_j0.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5310280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_int4pack_mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5312240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expm1_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5318740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5319630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5326680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5327480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/std_mean.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5334810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5335730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_eigh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5337270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smooth_l1_loss_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5342680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/igamma_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5343560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5350370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/remainder_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5351560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5353040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_select_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5358080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_sum_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5359510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5365550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5367810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/baddbmm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5373750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/poisson_nll_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5374780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/baddbmm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5376200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ger.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5381280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_conv_depthwise2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5389220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5390840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5397780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5398600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lift_fresh_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5400240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss2d_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5400920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/imag_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5406400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/full_like_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5410790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Float_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5415240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5419180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5424230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lt_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5427400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copysign.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5431930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_indices_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5432960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5436320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_fill_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5440740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_tbc_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5444490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5448710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_xor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5449640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logit_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5453810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5457720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5461850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5462890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ceil_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5466450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5470760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nanquantile_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5473550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_dep_token_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5475170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5479260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_backward_elemt_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5482730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_round_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5488630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_alias.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5489590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/le_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5496150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5496840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resolve_neg_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5498710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binomial_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5505250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mvlgamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5506880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lshift_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5513960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5514810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_efficient_attention_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5521820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5522760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_gammaincc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5524340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5529610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cosh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5530900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5538420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binary_cross_entropy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5539230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/concat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5540700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mul_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5546300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5547630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_multigammaln.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5554580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5555470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ifftn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5557150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5562600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nonzero_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5563420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nonzero.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5570890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fliplr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5571810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/negative_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5573310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fftn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5578810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_batch_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5580760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5582960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_empty_strided_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5588110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5588980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_add_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5593300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5594160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/eye_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5601200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cartesian_prod_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5603780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5609270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5609970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_transpose2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5611960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5618310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/geometric_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5619140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cosh_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5623830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copysign_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5631400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5636930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/output_nr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5639940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argsort_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5644220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_hfft_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5648790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sinh_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5649550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5653750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unique_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5658230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5659040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/range_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5663040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_log_softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5667300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5670350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5672250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5676800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/detach_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5679780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5684400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isnan.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5685920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_xlogy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5691820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5693300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/all_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5699550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5700630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5702170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5709130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumsum_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5710140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided_scatter_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5716950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_reduce_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5717710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5725090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_det_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5726150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sin_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5727640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/random_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5732890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pdist_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5733840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5740540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5741640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumprod.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5743130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_entr_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5747980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_lgamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5749700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/any_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5755590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_add_batch_dim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5757330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5763270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5765100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5766010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5771670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5978300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5979100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5980670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cholesky_ex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5981680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5982940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5984490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/geqrf_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5985170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_rfftn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5986760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5987530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv3d_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5989080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/qr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5989830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cholesky.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5991210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5992210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lerp_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5993930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5994600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_scatter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5996090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flip_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5996920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/topk_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5998520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_neg_view_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.5999230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6000770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6003820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/col_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6004880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6067670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6068530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rand_like_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6070130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foobar_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6087480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/histogram_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6096740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/all_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6098270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_channel_shuffle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6098960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vdot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6116600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_dilated3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6126780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/any_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6127830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6129310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_log_softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6130250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6131730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dirichlet_grad_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6132660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_coalesced_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6133760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/baddbmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6134980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6136470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trace_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6137360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nextafter_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6138910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6139640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6141270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_dropout_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6142040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_native_multi_head_attention.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6143700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6144610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6145730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6147430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6148240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6149760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/renorm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6150570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6152090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/t_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6152920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsafe_split_with_sizes_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6154460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6155260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmin_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6156790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_sum_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6157720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_sinc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6159150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_nd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6160100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6161100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6162660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_batch_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6163460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/angle_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6165040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6165880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gather_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6167420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6168180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/relu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6169630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/poisson_nll_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6170750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_not_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6171610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/item_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6173100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_native_batch_norm_legit_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6174070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6175540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6176340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_legendre_polynomial_p.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6178010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_batch_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6178960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6180020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6181590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6182450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6183960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pixel_shuffle_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6184670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rshift.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6318930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6319900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_update_stats_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6321390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/squeeze_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6326880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i0e_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6327920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6347750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mish.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6348810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/subtract.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6350420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trunc_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6351900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6369920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6370820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6383400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6384320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6397780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution_relu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6398630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6400380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6401080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_from_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6402660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6425480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/blackman_window_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6426460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_elemt_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6429570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6430490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6448250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sobol_engine_ff_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6449060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sort_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6450560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logit_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6451390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cat_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6452970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/le_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6474140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mean_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6475000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_inference.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6476710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ihfftn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6477510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mode_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6478850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/segment_reduce_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6479850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/detach_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6481170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_triton_multi_head_attention_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6482740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6483550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/corrcoef_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6485110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6517140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6522450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6530420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unflatten_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6531350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6544560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ldexp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6545560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_log1p.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6549220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6550170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6566970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/le_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6567780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6571210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6571850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/align_as.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6592210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linspace_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6593150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_ragged_idx_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6594900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6606870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_transpose2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6607580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/narrow.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6609070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6609960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hspmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6611660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_saturate_weight_to_fp16.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6612320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6613870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6614710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/var_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6615710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erfinv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6617250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6618230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6619200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dot_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6620710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_dim_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6621630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6622670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6624130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6625090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6626500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erfc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6627500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_not_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6629000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6629750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_bsr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6631420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/digamma_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6632100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lstm_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6633540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/digamma_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6634450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6635880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/col_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6636580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tile_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6638040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6638850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/movedim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6640320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bincount_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6641220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tril_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6642810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_xor_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6643580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_jagged_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6645030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matrix_H_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6645800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6647310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_not_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6648170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_indices_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6650310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addbmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6650980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_storage_offset_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6652580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ctc_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6653300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_max_pool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6654810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6655670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_broadcast_to_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6657120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/eq_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6657940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/angle_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6659450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/take_along_dim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6660240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dimI_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6661680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6662560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6783270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_sparse_matmul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6784280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_debug_has_internal_overlap.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6785390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_ndtri_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6787450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6788360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resize_as_sparse_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6789850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_mkldnn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6790630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/le.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6819960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ihfftn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6820850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lstm_mps_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6822230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6823560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/transpose_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6824350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/meshgrid_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6848400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6849190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_rnn_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6879810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6880630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adam_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6882270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copy_sparse_to_sparse_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6883200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6884800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6885560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_gammainc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6913720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_sparse_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6914560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6916120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6916940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6918370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_hfft2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6919330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6920750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6921520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_permuted.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6922930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6923830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_expm1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6925490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6926170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_conj_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6927630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fftshift_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6967300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convolution_mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6968230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_scatter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6970030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_constrain_range_for_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6983950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unique_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6984870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cdist_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.6986010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_tbc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7003250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triangular_solve_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7004280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7017100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_dim_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7018090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/searchsorted_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7019610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logspace_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7033750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/record_stream_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7034690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7047360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7048260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frac.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7064730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binomial_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7065680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ihfft_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7077570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amin_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7078460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hamming_window_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7080050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7081060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7082620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7083580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7107810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_and_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7108980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/searchsorted_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7110680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/histc_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7112060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7112900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_pinned_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7114350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_quantized_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7137230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cholesky_inverse_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7138310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7150330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7151160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arctanh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7152650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/alias_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7153860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7167390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_pinv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7179790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/instance_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7180870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7193530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7194760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_add_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7196400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7197780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kron_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7220920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7222130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arctan2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7223340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/eye.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7224470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log1p_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7225710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7246210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sqrt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7247720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7249050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7250270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7251470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7252620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rnn_relu_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7253820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_or_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7254990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bartlett_window.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7256180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7257580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7258940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7260150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7261500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7262760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7263900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_check_errors_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7265080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_batch_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7266290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_gather_sparse_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7267510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_strided_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7268690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7269930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_entr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7271160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sinh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7272310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_from_padded_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7273540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7274950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7276340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7277550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frac_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7278730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i1_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7280150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7281500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_tan_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7282620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tan_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7283740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frobenius_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7284920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_exp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7286030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sgn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7287170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7288350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_trilinear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7289410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7290670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7292010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_add_relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7293330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7294560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7295880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_optional_floatlist_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7297220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7298470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7299600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7300820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_xlog1py.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7302020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7303170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/inner_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7304340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7305550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_round_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7306700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/equal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7307870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7309080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7310180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unbind_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7311420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7312700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7313930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pin_memory_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7315120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7316370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7317520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_det.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7318680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/chalf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7319800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sobol_engine_scramble_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7320930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/floor_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7322210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7474460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_polygamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7484980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/values.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7486290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7492160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7493540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7494880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7496050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7497220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7498330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumsum_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7501290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bernoulli_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7502530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_assert_async_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7530310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isposinf_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7531600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7532960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7534260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7535490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i0_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7536620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cond_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7560470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7561650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_svd_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7562790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/angle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7567350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7568640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/allclose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7569770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7570910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7572050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kaiser_window_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7573270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unpack_dual_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7574490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_affine_grid_generator_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7575750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7577000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7580390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_min_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7581560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expand_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7582770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7584030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binary_cross_entropy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7585280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7586530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_debug_has_internal_overlap_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7587920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7589320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7590610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/soft_margin_loss_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7591860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7593450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7594730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_k1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7595880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rsqrt_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7597070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_dense.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7598140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7599290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7600450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7601630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scaled_dot_product_attention.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7602820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mode_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7604010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7605250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7606480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_select_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7607630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_rsqrt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7608780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_ambiguous_defaults.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7610020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7611190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7612370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7613650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7614960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7616330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7617630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_from_padded_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7618820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7620160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7621470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_csc_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7622670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gcd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7623720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dimV.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7624820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7626040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7627410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7628700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_layer_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7629880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_ndtr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7631170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7632440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/retain_grad_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7633570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7634780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7636020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/column_stack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7637200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_int8pack_mm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7638430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7639700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_flash_attention_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7641010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7642340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7643690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7644990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logit_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7646240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_normal_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7647370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/qr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7648570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7653490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trunc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7654690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_rnn_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7655950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7657180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sub_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7658400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7659640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_wrapped_linear_prepack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7660890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7662080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_min_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7663190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_leaf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7664440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7665780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7666930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ldexp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7668140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7669530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7670860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7671980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7673060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_inv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7674230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7675680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7677140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7678410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pack_padded_sequence_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7679630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randperm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7680770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_reduce_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7681840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lu_solve_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7682880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dense_dim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7685610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7686920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7693190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7694490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/margin_ranking_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7695710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_right_shift_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7702310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_csr_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7703620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7710160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sqrt_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7711700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7718540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_fill_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7723460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/maximum_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7727460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asinh_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7731350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_not_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7732500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/random_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7737170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7739800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_expm1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7745470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_spherical_bessel_j0_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7746770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_entr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7749580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7960210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7961300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Char.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7962820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7964110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trace_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7965290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hinge_embedding_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7966480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bartlett_window_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7967770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7969020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/indices_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7970230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7971420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsafe_chunk.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7972770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7974090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dirichlet_grad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7975310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7976570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_use_cudnn_ctc_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7977760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_backward_jvp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7978900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/igammac_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7980100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7981460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7982850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7984110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7985500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7986920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7988140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7989300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nnpack_available_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7990440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fft_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7991690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7992940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/relu_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7994120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7995380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7996760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7998050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_shape_as_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.7999180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_and.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8000420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8001620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diff.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8002730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/round_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8003960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8005240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8006410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bincount_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8007620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8012690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8013940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mkldnn_transpose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8015190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8016430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8017670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8018870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_digamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8020210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8021560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8022790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8023980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isposinf_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8025300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8026720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8027940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/floor_divide_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8029230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8030440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8031550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Char_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8032670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_renorm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8033760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/promote_types_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8169890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8171200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8172520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8173640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cov_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8174770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/greater_equal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8176020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gather_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8197180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scaled_dot_product_attention_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8198410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_is_all_true_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8199670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nonzero_numpy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8200920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_scatter_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8202120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8203420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8226870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/msort.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8228140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8229380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hstack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8230760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unique2_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8232100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/divide_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8233320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8234720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/var_mean.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8236040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8237380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8238690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8239970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_svd_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8241140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8242330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/q_per_channel_axis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8243540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8244730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adamw_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8245970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/complex_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8247100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fix_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8248270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8249510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8250740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cat_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8251900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_empty_affine_quantized.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8253260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8254580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8255780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8256960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_div_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8258280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8259710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8261040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/segment_reduce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8262200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cos_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8263400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_tensorinv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8264550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ifft2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8265740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8266960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8268270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8269690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8270980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8272250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_stride.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8273440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_h_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8274640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tan_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8275880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8277200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8278540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8279810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8281000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8282220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardshrink_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8283380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8284570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8285770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randn_like.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8286880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/histogram_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8288000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dstack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8289080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_csc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8290300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binary_cross_entropy_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8295240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_int_mm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8296390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_lu_with_info_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8297550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bilinear2d_aa.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8298870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8300190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8301350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trace.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8302560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matrix_exp_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8303730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/indices_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8305030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8306290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gru_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8307440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8308690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8310010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8311230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_warn_in_autograd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8312380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arcsin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8313680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8315010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8316210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8317530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8318800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atleast_3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8319960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kthvalue_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8321070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_spsolve.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8322180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8323350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smooth_l1_loss_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8324620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8325800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8326940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_max_pool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8328290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8329510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trapz.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8330610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_trilinear_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8331730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_batch_norm_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8332880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linear_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8333950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_ctc_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8335030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dropout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8336280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8337540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randperm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8338750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8339920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/less_equal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8341000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mse_loss_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8343240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8344450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/qscheme_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8345630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumprod_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8350720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8352790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8358950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8360150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/blackman_window.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8367850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8369070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8370200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triu_indices_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8375610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_transpose3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8377060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8383220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8384790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8386210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8391140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_select_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8392320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dropout_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8398980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lstm_mps_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8400470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cartesian_prod.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8407080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8408300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_indices_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8409640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8414500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ormqr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8416510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardshrink_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8422520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8424180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8425610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8432220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8433570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8440170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8441470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/channel_shuffle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8448180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8449410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/indices_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8450580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8455890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ge_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8458030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8463650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/minimum_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8464930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dimI_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8471130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resize_as.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8472430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8479180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8480440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/or.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8487120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_same_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8488270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumsum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8493480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8496120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/set_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8497340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exponential_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8503970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8505350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8506800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8511970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copysign_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8516260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asin_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8521210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8522460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8529720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8531120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8537400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8538770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8540070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sigmoid_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8545500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/alias_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8547670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ormqr_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8553730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hsplit_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8555800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/heaviside_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8561140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kaiser_window_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8564280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fftfreq_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8569060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/greater_equal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8570280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8572790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8577940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8579370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8586150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8587410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8594610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8595900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_k0_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8597170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vsplit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8602580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_eigh_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8603780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_i1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8610390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8611650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8612750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8618110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8619380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/channel_shuffle_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8625440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_jvp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8627050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_storage_offsets.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8632400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_convolution_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8634570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_is_all_true.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8635660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/le_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8641910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8643150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/polygamma_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8649880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8651100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8657980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8659190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_he_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8660460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_values_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8665910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8668020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8670330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8674710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8679020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8684610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8687710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8692210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_bag_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8693430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flatten_dense_tensors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8696400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_hfftn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8701470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mvlgamma_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8702650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_rnn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8705490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isreal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8710750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumprod_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8713920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_xor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8718560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8719750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_index_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8722920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cos_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8727710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fftn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8730300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8731960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8737100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8738700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rnn_tanh_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8744640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8746690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8752060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/eq.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8754930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_efficient_attention_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8756480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8763460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumprod_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8765840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmod_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8770790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8772890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_c2c.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8778670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8779900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_bsc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8786270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pad_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8787570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_i0.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8794460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8795740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arcsinh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8797010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8802140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8803360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8804640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8811770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8813100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8819070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lu_unpack_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8821340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_coalesced_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8827160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erfcx_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8828030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/var_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8829930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_max_pool3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8834430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8839190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8842300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_triton_multi_head_attention_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8843220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8849890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/var_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8850680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8852220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8859110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8859850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lgamma_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8866280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_mm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8867760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8874230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_mkldnn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8875080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8876820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8879870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binary_cross_entropy_with_logits.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8888080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8888930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad3d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8895590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bmm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8897650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_dense.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8903210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8904130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8906820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/igamma_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.8912880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9113370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_full.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9114540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9116080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9116810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_slogdet.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9118340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_rfft2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9119290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_atan_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9120710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clip.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9121440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reshape.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9122710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9124280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9125200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9126830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9127420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cslt_sparse_mm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9128960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isneginf_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9129810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9131930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9132880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_complex_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9134320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mvlgamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9135430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/permute_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9136910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sign_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9137800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9138860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9140460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_minimum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9141240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/int_repr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9142920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/heaviside_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9143570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/column_stack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9145070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9145940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/minimum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9147460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_bsc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9148390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9149850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/from_file_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9150990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution_transpose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9151940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9153380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sinc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9154300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9155750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/real_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9156770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9158570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9159430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/align_tensors_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9160310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acos_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9161770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/minimum_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9162650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_y0.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9164210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sspaddmm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9165330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9166140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logdet_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9167430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cauchy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9169070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9170180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_vulkan_available_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9171060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9172550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gt_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9173310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ccol_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9174400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/normal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9176130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9177030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9178290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9179440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_bsc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9180290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eigh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9181840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9182630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9184220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rnn_relu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9185330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9186190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9187790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9188560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9190310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9190890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_constrain_range_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9192070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9193540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9194340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9195960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9196650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_factor_ex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9198300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9199010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/heaviside_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9200640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9201360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/histc_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9202350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pad_packed_sequence_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9203850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/q_per_channel_zero_points_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9204710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_dense_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9206270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/square.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9207060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_empty_per_channel_affine_quantized.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9208750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagflat_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9209620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9211350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9212020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/prod_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9215250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cdist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9216220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9218700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_expm1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9224700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atleast_1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9226860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9232450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9233360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9236330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_transpose1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9241170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_assert_async_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9242090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_rfftfreq.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9248610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9250670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cummax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9256270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9257110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/normal_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9259280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9266250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9268630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumsum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9275880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9276890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9283730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/histogram_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9284660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_acos.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9286170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9291130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9293390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amin_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9299020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9301910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9308140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_jagged_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9308980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_power.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9316170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9317880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9324310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_no_update_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9325270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9326580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9332980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/norm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9333680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trunc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9340770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_qr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9341760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9343300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9348670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9350150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9355990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9357690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9358450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lt_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9365820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9366720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/crow_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9373330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_dense_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9374570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/minimum_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9381680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pixel_shuffle_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9382520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9384030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_complex_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9394650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_clamp_min_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9395490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9396100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9399720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_expit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9402780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9611130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9612800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lstm_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9613600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binary_cross_entropy_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9615270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9621540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9622300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rename.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9624030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addbmm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9625820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9626900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9660250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9661500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/xor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9663780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9664650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9666310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log2_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9667770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sub_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9668760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_real_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9670190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9671280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9672540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/norm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9674100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_transformer_encoder_layer_fwd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9675600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9676640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_like_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9678470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9680040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9703570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9704460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_is_zerotensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9706040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9707000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/col_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9708540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_scatter_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9709440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_select_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9711030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gt_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9750490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vander.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9752220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9753530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9755670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_masked_index_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9756530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9757840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9759320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/signbit_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9760080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_add_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9761660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/add_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9762630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_addmm_activation_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9764070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/maximum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9765160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9766600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9767540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_max_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9769200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9769910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tril_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9771420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_j0_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9772400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9773520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_optional_floatlist_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9775120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_lazy_clone_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9775800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9777360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_slow_conv2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9779810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9780670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/result_type_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9782130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lcm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9783760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9784660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/q_per_channel_zero_points_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9786180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9787260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9788830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_dep_token_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9789900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/poisson_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9791570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9792270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pad_packed_sequence_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9793290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_irfft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9794800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9795650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sum_to_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9797140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/transpose_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9797980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trace_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9798930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_rfft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9801050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9802010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9803440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/one_hot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9804400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9805940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9806730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atleast_2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9808250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmin_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9809020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_from_padded_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9810450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randint.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9812040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9812990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9814610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9815290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smooth_l1_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9816930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/broadcast_tensors_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9817750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_max_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9840150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_constrain_range.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9841190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9842630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fftshift_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9843440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9957150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9957850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9959340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mse_loss_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9960150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gather_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9961800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9962490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/median.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9963940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rnn_relu_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9964810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cummin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9966390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9967060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cummax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9968550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_layer_norm_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9969460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_complex_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9970920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/igammac_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9971980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9973320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_qr_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9974920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9975640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/celu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9977200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_functional_assert_scalar_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9978070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9979570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/where.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9980340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_strided_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9981960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9982800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:11.9984260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0057460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0058240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0060160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0061090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0093500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0094450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fill_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0119790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/relu6.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0120710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_coalesce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0122380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_right_shift_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0123140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nextafter_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0124640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0125420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nonzero_static_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0126850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sobol_engine_initialize_state.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0127750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/range_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0157430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0158540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0160110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0183060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0184070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0197410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_add_relu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0198620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0200310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/negative.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0201270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lstsq_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0202740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0203620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmax_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0205170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_cpu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0206160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_group_norm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0207380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0208820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arcsinh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0209720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/q_per_channel_scales.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0211190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0212070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_optional_intlist_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0213610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0214490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_tensor_affine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0215860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0216830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pdist_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0218320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_string_default.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0219240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0220740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/narrow_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0225980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_tile.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0226530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0227100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_sdp_choice_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0227700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_signed_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0228360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0228930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_optional_intlist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0229660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0230270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0231330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0232450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0233500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atanh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0234700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0235900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/var_mean_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0237070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/polar_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0238170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/square_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0239590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argsort.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0240430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0242030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erf_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0242950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0244430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cholesky_ex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0245320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_log_softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0246470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0247930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/norm_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0248760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0250360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mean.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0251030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_assert_tensor_metadata_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0252480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_addmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0253340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cufft_clear_plan_cache_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0254810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_strided_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0255740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0257260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0258130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/chalf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0259270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0260920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0261880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0263400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0264350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0265880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_amp_update_scale_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0266900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardswish_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0267830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pow_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0269260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frexp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0270140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cholesky_solve.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0271580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dim_arange_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0272470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/median_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0273900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0274850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0276420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0277150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0278650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bernoulli_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0279500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_values_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0280820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_select_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0281930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0283010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sigmoid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0284480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_and_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0285420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0286900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_is_acceptable_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0287710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0289220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0290080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lcm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0291120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rrelu_with_noise_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0292720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0293460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_i0_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0294920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_strided_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0295750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_dep_token.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0297190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/complex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0297940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0299700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/count_nonzero_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0300650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0305980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0306880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0313010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0314000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0315530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_i1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0320600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nansum_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0322060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cholesky_inverse_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0328240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0329730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0335510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0337290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0338170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0344560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0345490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_reduce_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0352060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/floor_divide_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0353720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_efficientzerotensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0359360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0361150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0362210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0368650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/polygamma_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0369470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lgamma_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0376600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_scaled_modified_bessel_k0.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0377500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0384430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cholesky_inverse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0385850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0393170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rsqrt_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0395020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0402070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/row_stack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0416680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_per_channel_quantized_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0418310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/segment_reduce_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0419260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0424180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_strided.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0432120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0434150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0440690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/abs_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0441650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/moveaxis_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0443130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0449240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0450280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0457100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conj_physical.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0458080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_asin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0459700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0465540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0466390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/deg2rad_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0472730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/median_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0474660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0475480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0482660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/polygamma_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0483490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_solve_ex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0490520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0491260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_stats.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0494960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/baddbmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0498300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0499290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0504580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_solve_ex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0506490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0512730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0513460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0515000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_complex_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0521150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0521960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/huber_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0529390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_ctc_loss_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0530420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pin_memory.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0537750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0538580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp2_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0540060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/stft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0544900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0546900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0553280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0554420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0555930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0560610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_slogdet_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0561530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0567940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0569990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0575750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_ndtri_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0576780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0584900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logit_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0585810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0592560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nanmean_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0593700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0600690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0601820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0602770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0608090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/polygamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0610060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/normal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0616170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0621350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0622140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0625960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/add_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0627000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0633530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_gammainc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0634350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_gather_stats.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0640980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0642490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sspaddmm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0643410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/stack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0648910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0650790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multi_margin_loss_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0657560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0659000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/svd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0659910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_bsc_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0665030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hspmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0666010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conj_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0673010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0673890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0675530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0680830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clone_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0682490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0688090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0690920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0695340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0697060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0699700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eigvals.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0704330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_vander_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0707400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0708380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0713930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_tbc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0716190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isposinf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0721260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_grid_sampler_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0722940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0729340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_w.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0730460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0731390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0738690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_add.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0739600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0746940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_batch_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0755730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fill_diagonal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0756570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_digamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0758190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0763450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_serialization_subcmul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0765160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0770890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_values.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0772460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0773180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/neg_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0779240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_tensorinv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0780580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0786030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_dim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0787680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0789320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0795130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_exp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0796570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_copy_from_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0803530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0804430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0805920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_vector_norm_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0811200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0812280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0819400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0820370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dequantize_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0826990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erfinv_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0828570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0829250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sign_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0834660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0836000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dimV_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0842840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0843690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0850620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0851430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0852640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0858560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0859410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0866680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_prelu_kernel_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0867530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0874850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/relu6_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0875840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_k1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0877360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0880870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expm1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0883790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kron.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0889400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0890200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cat_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0892090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_check_errors_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0898040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triplet_margin_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0898830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tril.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0905910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0907710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_rfft_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0914270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0915260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0916740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_remove_batch_dim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0921330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cholesky_ex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0929660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_rnn_relu_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0930670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0932070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0937670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0939020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0945070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_semi_structured_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0946980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0953190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_stride_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0953980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_dual_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0955440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardswish_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0960870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0961860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_batch_norm_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0968860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0970710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/abs_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0977090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_transpose1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0978010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isneginf_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0979490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0984650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/poisson_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0986590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_renorm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0992430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0994250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.0995040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/minimum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1001690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_sigmoid_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1002640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sobol_engine_ff.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1009520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_batch_norm_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1010400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/block_diag_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1017430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1018360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1019890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1025610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1026530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1033750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acosh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1034650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/roll_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1036180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_copy_from_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1041800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1043320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1049650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linear_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1050720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1052430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1059210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_transform_bias_rescale_qkv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1060110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_batch_norm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1068220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/digamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1069210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1076550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1077410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_dropout_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1078890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conj_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1084910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_dropout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1085870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_index.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1087120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cosh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1094440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_jagged_dummy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1100450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/record_stream_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1101430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_transpose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1102840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unique2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1108730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i1e_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1109580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1116930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_dropout_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1117800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1125060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1125860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_dense_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1132880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1134400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_parallel_materialize_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1140460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bernoulli.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1141490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pad_circular_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1142980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1148820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_select_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1150730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1160610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1161350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1161930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1165760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad3d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1166480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_psi.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1173760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1174700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcmul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1181730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1182650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1184250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_multigammaln_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1188460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp2_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1190130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_addcmul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1196660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmv_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1197520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1198640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/type_as_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1204500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_tensorsolve_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1205650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/range_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1212170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1213700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_backward_jvp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1219680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1221290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1222170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1228800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1229570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bincount.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1236900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1237560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hann_window_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1244620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1245460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1246430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1252240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1253220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cummaxmin_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1259580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1260610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/affine_grid_generator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1268320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_and_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1269130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1274340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1277030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_channel_shuffle_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1281440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/greater_equal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1282350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/imag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1285850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmin_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1290290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i0e_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1294720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_unpool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1295590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1298620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1302930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1306770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matrix_H.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1310450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/transpose_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1311340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1316370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fill_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1320220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1323290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copysign_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1328340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amin_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1332130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rms_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1338170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asin_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1341430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1345690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fliplr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1346710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1349450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1354460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1355560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1362210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1364220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1370000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_sampled_addmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1370840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log10.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1372370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/aminmax_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1378040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_max_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1378800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_scatter_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1386400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/i0_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1387410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1394930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1395960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1397460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_add_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1402340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_alias_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1404490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1410690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lcm_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1411720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1413330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1419090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1426960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1427780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_padded_dense_to_jagged_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1434650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardshrink_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1435680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1437180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conj_physical_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1443000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1443790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erfinv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1450590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1451720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_gather_sparse_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1453210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addbmm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1458670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_trilinear3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1459750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1466600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1467320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matmul_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1468470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/coalesce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1475470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log10_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1476320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_lu_with_info_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1483430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1484820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expm1_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1491410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1492350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1493900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_interface_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1499070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1500930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ne_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1507250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcmul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1508120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_logsumexp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1509630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1514790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_csr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1517350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_round.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1522180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/floor_divide_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1524350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1526040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/margin_ranking_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1531320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1532220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1539670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triangular_solve_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1546690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1547620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dstack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1549090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_sigmoid_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1554670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1555450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_xlog1py_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1562430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/maximum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1564370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1570630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nnpack_spatial_convolution_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1571500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/contiguous.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1572960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1578870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1579660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/group_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1586560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_dropout_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1594590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sgn_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1595510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1596940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multiply_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1602760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1603600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1610840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_affine_grid_generator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1611640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_signed_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1613080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_ndtri.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1618740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1619410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lt_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1626700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/requires_grad_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1627490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hypot_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1629100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1634370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1635400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1642260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/round_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1644140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1650470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1651560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_prelu_kernel_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1653040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nonzero_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1658630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1659580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_backward_reduce_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1662480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmin_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1668130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_copy_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1671220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rand.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1676430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/searchsorted_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1677250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/prod_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1679380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1684110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/q_per_channel_scales_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1685650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1692470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erfc_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1696740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/i0_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1701000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1702170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1703270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1708820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_values_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1709790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_he_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1715810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1717860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1718670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cslt_sparse_mm_search.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1725450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1726280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_csr_prod_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1733960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1734850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1741520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool3d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1742630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1744190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1750790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pin_memory_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1755910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nuclear_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1759710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1764650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ceil_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1767980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_empty_affine_quantized_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1768790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/zero_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1774140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1776770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1781500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isnan_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1782270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frac_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1786000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1790370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1793900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1794710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1798440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_max_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1803090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1807390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1810790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1811540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erf_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1816940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/eye_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1819510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argsort_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1824660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/column_stack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1826650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1828410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/uniform_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1834430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fw_primal_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1835400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sum_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1841820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asin_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1843690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cross_entropy_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1849260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_irfft_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1850480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1852420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bicubic2d_aa.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1859020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/permute_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1859910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cdist_forward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1867430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1868240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1875140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/row_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1876250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1877780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matrix_exp_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1883590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_channel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1884550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1891290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_dilated2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1892050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/histogram.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1893520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_conv_depthwise2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1899980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1900960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1907740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1908720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_xlog1py_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1910290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_functional_assert_async_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1915470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amax_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1917800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/retains_grad_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1924270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mean_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1926170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1931770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smooth_l1_loss_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1932810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1935470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1941830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1943390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1949220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1950140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1957680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1958560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/numpy_T_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1961620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1966950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_rfftfreq_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1970010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cauchy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1974330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1975170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1978920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unflatten_dense_tensors_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1983540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atanh_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1988060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution_add_relu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1991090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1992180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.1997540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_masked_softmax_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2000080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/floor_divide_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2005460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_expm1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2006320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fftshift.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2008570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2014660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2015610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2022660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2023600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2029740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2030890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Short_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2032120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linspace_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2037800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logit_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2038650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/remainder_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2046250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bilinear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2047140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2054970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2055890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_asin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2057520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2062760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2064590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2071240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/any_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2072230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2073760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2079210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2080020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2087610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ccol_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2088630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2089620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_r2c.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2094620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/outer_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2102820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2103630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hypot_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2106630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2112390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adjoint.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2113530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2115990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flip_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2120980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flipud.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2122240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmin_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2128650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_exp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2130110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2136400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addbmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2137240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_fill_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2138720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2145170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_ctc_loss_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2146120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flipud_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2152890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2154540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2157310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2162990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dimV_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2165520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2170470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mvlgamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2172130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2178000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2179070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_with_update_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2185260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_normal_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2186150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_sum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2187760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_aminmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2194910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2195880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution_transpose_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2203490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_rnn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2204350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/normal_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2210270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2212030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2212690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2218540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2219580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/angle_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2226090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2227040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2228680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2239010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_dual_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2239760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_rowwise_prune_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2243760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erfcx_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2244720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2251400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cosine_embedding_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2252690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2261280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2262120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2266570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_view.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2268310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_conj_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2269840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2270690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_log_ndtr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2273810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asinh_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2274620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2279110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumulative_trapezoid_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2487190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2488490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2489820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_sgd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2490990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adam_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2492200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mish_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2493420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/can_cast_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2706400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ge_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2707660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_consecutive.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2708820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2709940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2711140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2712380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_euclidean_dist_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2713550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2714730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_and_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2715970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2717120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2718240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2719410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2720590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_constrain_range_for_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2721700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/soft_margin_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2722870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isinf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2724050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2725240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_max_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2726350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_max_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2727480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_rsqrt_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2728580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linear_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2729820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2731170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2732610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2733860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.2734970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5063630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5081820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5089850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5099810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution_transpose_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5107990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/zeros_like_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5116370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triangular_solve_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5124050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5132800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5141790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5149160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sinh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5155170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5160910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_semi_structured.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5169330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5178000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5185990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logspace_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5192980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5203280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5211810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cholesky.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5225710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_masked_scale_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5232620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ihfftn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5253200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/or_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5257110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_coo_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5261390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5265690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest3d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5270550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5274920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5279830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5283390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_min.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5287220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5291070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/repeat_interleave.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5294990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5298830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/item_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5303030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_relu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5307060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nextafter_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5311200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5315280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fft2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5319700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5323000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5325410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_convolution.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5326860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5328170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_r2c_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5329300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5330620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_optional_filled_intlist_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5331810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cat_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5333080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5334320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_warn_in_autograd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5335710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_coalesced_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5336890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_relu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5338140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5339350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_gammaln.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5340500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_ctc_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5341610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fill_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5342860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5344300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5345700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5347080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5348380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_bsc_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5349520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gcd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5350950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_add_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5352230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logit_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5353680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5355030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_hfftn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5356240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_flash_attention_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5357530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5359030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5360410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_trunc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5361570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arccos_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5362680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5363800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_tbc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5364960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_frac_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5366160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_empty_strided_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5367470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5368730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_mask.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5369930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5371160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atanh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5372390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multilabel_margin_loss_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5373630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exponential_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5374840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_apply.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5376070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lift_fresh_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5377350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5378610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sign_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5379800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adjoint_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5381070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcdiv_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5382330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5383690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5385050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5386270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mish_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5387380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/full.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5388540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5389760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_real_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5391090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5392420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5393600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linear_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5394760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5395890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reshape_as.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5397050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5398240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/prod_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5399350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/abs_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5400450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lift_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5408580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5410030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5411280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erfc_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5412570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5413880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5415200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_slogdet_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5416410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5417580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pad_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5418690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/signbit_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5419960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5421400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5422770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/convolution_backward_overrideable_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5424170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5425470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_max_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5426590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sort_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5427720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triu_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5428940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5430350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5431710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5432960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i0.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5434590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atleast_3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5435940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_select_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5440550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5443050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_airy_ai_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5448170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5449420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_compressed_sparse_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5452680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_gammaincc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5456860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mish_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5460360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/min_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5465130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acosh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5470180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pad_enum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5472880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/inverse_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5477590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_safe_softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5478730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mm_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5482040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/broadcast_tensors_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5487030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5490630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/zero_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5494430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_tanh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5495710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5499710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5503420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5511200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5512610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5519070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/renorm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5520410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5526790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5528240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5529580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_depthwise3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5533770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pack_padded_sequence_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5536100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_reciprocal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5542110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5543570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5545870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5550560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rsub_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5551760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5558580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5559830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isneginf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5566770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5567980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5569060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_gru_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5573850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_rnn_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5575080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rand_like_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5581050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5582780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trapezoid_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5588610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/relu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5589910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5591280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_jagged_dummy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5598050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_max_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5599310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unpack_dual_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5605810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5607120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5613120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/var_mean_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5614310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/polar_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5615470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/narrow_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5620800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vstack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5622910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/convolution_overrideable_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5629390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5630640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/transpose_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5639050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5640260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5646840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bucketize_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5648200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5654680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5659800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5661110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cdist_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5662290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5663770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5669810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_sigmoid_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5671170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_ctc_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5672380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5674100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5678450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5682760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5687500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/eye_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5689940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5691220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5697270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expm1_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5699520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5704670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5706320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5713230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rsqrt_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5714440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triu_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5719460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/convolution_overrideable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5722290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diag_embed_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5728850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5730160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5736880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lift_fresh_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5738100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atanh_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5739250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reciprocal_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5744590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/im2col_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5746040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5751960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_buffer_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5753230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5754480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ifft_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5761110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/combinations.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5762320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_csr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5769410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_r2c_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5770570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardtanh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5776750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/promote_types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5777870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cross_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5779010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nansum_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5785000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5786250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log1p_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5792950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sub.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5794220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5795470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Int_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5802640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5803870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lshift_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5811120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5812620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/negative_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5818950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Byte.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5820190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5821500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp2_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5822660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mish_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5828290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5829530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5835330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cross_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5836740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5843660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_complex_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5844820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cos.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5846030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bernoulli_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5851230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5852400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rrelu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5858740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5860090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5861500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5868240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_sparse_csr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5869520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/median_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5876360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5877750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5884340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/uniform_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5885630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5886870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_diagonal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5893480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_reduce_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5894640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foobar_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5901830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5903190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5904340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_or_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5909000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5910290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/neg.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5911400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/igamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5920120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5921490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5927930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5932900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trace_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5935310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_sigmoid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5936520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_factor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5942570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/eq_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5943810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/put_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5945160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hinge_embedding_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5952000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5953290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5959600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_dropout_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5960960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmin_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.5967320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vstack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6126210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6173120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6175190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/can_cast_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6176760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6178350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6179770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/topk_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6181230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_tan_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6182540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expm1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6183860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_values_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6185140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_masked_softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6186400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_lerp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6187630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matmul_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6189020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_zeta_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6211310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/huber_loss_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6212550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6213840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_transpose2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6215030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6247250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6248660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6249990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/signbit_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6263310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6264720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6266080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logsumexp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6267350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_neg_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6280430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_forward_only_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6281660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6282800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/neg_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6299900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/take_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6301180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6304710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/i0_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6305940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6326650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_gammainc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6327800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/squeeze_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6329110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_broadcast_to.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6330290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardtanh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6331610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6333100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6343560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6344870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6356850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6358080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_reduce_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6359270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6360580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dsplit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6361800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gather_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6363160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6394170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6395510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6396810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_debug_has_internal_overlap_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6406410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_assert_scalar_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6407810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6409100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unique.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6423550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6424970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6426210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6440780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resize_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6441970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/range_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6453650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool1d_with_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6454860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6467810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/int_repr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6468980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6492180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6493420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6494610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_lstm_mps_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6500120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6501570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6513690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6514950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cos_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6517970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6519200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp2_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6536470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6537820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6550920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/coalesce_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6556910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6558280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6559580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6563860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6565150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/add_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6566370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6586860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6588160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bmm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6591170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_mkldnn_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6592500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6609550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_y0_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6610870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6613110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/real_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6614280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6624220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6625530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6626670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_alias_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6627830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/col_indices_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6629000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logcumsumexp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6634040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6635290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmod_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6668330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_clamp_max_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6669650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6680840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6682240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_max_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6683510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6700550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6702100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6713870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6715170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6727540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6728930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6731880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6733210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6734570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6753320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_solve_triangular_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6754490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_unpool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6766470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_xor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6767690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/feature_alpha_dropout_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6770520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_empty_affine_quantized_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6771790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6779940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_standard_gamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6781240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6802970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_has_compatible_shallow_copy_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6804240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_update_stats_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6805590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i1e_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6806770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/baddbmm_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6807890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cummax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6809170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6816560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6817770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/norm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6839670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6840930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/concat_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6853910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/uniform_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6855010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gcd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6866240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6867520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_zeros_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6868690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6870050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6893290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Int_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6894490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_index_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6906020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lerp_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6907120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_add.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6908370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6909680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool1d_with_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6911010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6912220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_fill.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6913380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax_backward_data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6914800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6916100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6946230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unflatten_dense_tensors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6947390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_ones_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6948810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcdiv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6950020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6951310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_bsr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6952580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6953850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ravel_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6954970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_addcdiv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6956330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6957630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_pinv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6958920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6960200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6965490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6966620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/msort_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6967710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/q_per_channel_scales_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6968930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.6970100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/random_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7016650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7018040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7029230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cross_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7030500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7043370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_linear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7044520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7057150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7058600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7059860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lerp_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7075970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7077340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7089840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7091240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7092470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_add_relu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7111190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ihfft2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7112430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7124100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7125280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7137530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmin_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7138660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardshrink_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7140000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hsplit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7152890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7154100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/signbit_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7174740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7175940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardtanh_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7189470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_i0_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7190740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mps_convolution_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7191940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/repeat_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7193060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7194450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7217290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7218570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/less_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7219720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/one_hot_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7220850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gcd_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7222080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_c2c_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7242580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7243890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7245170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log1p.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7259940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cauchy_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7260720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rsqrt_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7262300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_trunc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7263870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7264790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expand_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7276710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mps_convolution_transpose_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7277920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7278930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_linear_backward_weights.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7280520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7281420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mul_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7282570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_batch_norm_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7284110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7313210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7315350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7316580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_svd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7317760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_and_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7319080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7341590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7342770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fft2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7343910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/var_mean_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7356340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/normal_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7357580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7360120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7361500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7362800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ifft2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7363940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmax_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7365130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7366330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7367670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7397500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amax_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7398970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7400290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7416610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7417890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_view_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7434100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7435460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7436800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_compute_linear_combination_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7438060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7454830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_fill_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7460900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/polygamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7462110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/l1_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7463270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trace_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7464510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7484780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7486070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sort.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7487440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7488680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mish_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7507410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_set_to.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7508560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unflatten_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7509920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adam_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7511140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dirichlet_grad_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7512290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/einsum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7513500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nan_to_num.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7514770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/q_zero_point_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7516030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7517280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/t_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7546770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_and_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7547980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7549220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7550570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_addmm_activation_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7551830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lerp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7552980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nansum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7554530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7555820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_c2r_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7557100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7558460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7559730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cosine_similarity_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7560860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fix_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7561980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_alias_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7563300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flatten_dense_tensors_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7564740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7566150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7567410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/igamma_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7568690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/poisson_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7569970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/full_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7571420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/convolution_backward_overrideable_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7572840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_conj_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7574170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7575490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eig_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7576880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7578230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7579520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7580940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7582180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expm1_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7583460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7584820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7586020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sinh_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7587230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7588460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/baddbmm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7589670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7590860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/group_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7592110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7593380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_autocast_to_full_precision_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7594630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7595970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7597320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7598740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7600240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7601750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7603280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7604740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7606110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7607480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_max_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7608800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7610130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7611280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arange.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7612440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_tensor_dynamic.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7613620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardshrink.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7614860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7616110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_round_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7617250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7618410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7619540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_fill.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7620670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ceil_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7621830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/convolution_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7625590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7626810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_diagonal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7627990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nonzero_numpy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7629190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_index_put_impl_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7630380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/istft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7631640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_erfc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7632850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logit_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7638910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/chain_matmul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7640060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_conj_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7641350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7642560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_addcmul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7643700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7644860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_compute_linear_combination.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7646100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7647260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nnz_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7648390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cummaxmin_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7649540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_rfft2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7650610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_stack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7651810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7653000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cartesian_prod_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7654190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_optional_filled_intlist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7655380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/huber_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7656560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_select_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7657700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7659010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_real_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7660310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7661610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_add_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7662710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7663820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_unpool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7665110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7666360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_batch_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7667670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7668840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fw_primal_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7669990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isnan_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7671130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/full_like_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7672410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7673740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmax_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7678360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randint_like.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7680340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_neg_view_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7682440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lshift_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7687280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7690920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7694720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/istft_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7899790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unique_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7901140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmin_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7902380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7916460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7917750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rsqrt_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7918990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/searchsorted_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7920170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ones_like_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7921350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7922570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7923870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax_backward_data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7925070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7926230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7927360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sinh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7928630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7929930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7931170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsafe_split_with_sizes_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7932390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/geometric_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7933650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7934890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/erf_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7936020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/align_as_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7937110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/zero.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7938190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/xlogy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7939410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7940610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mT.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7941720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/uniform_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7942920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_dense_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.7944080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/orgqr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8013670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8014850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumprod_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8016000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/range_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8017420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8018830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8019990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_masked_softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8021150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_solve.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8022470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8023960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8025280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8026450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/random_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8027660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8028870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8030160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8031480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8032710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/floor_divide_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8033950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8035200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_det_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8036360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sin_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8041590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/can_cast.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8042820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumsum_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8044160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atanh_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8045440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8046680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kl_div_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8048050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8049550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8050820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8052010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_vector_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8053160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8054300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/igamma_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8055460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_bsc_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8056640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_i0e_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8057930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_floating_point.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8059120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fft2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8060300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/xlogy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8061540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8062890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ceil_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8064110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8065300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_scatter_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8066480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ge_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8067600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_check_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8068830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8070040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/squeeze.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8071220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8072520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8073850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8075190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/permute_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8076430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_distributed_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8077580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_bin_edges.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8078760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8079900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/relu6_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8081010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8082320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8083740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8084940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_hfft2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8086060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rad2deg_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8087230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8088400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8089690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8091060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8092300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8229380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_solve.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8230670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_zeta_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8232010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_rnn_tanh_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8233340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8234750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8236060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sigmoid_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8237220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lshift.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8238370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/outer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8239480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bilinear_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8240600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rms_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8241760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8243060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8244420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8245730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8246990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8248290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8249640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8250880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/stft_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8252220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8253510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8254870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8256220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8257390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_det.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8258510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cholesky_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8259650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asin_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8260820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/from_file_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8261940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_softmax_backward_data_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8336560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_serialization_subcmul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8337910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8350140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_assert_async_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8351280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nansum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8352600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8354020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8355410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8356780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8358140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8359350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/norm_except_dim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8360480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_irfft2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8361610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_dual_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8362820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8364030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_solve_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8369060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8370350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log1p_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8371530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_complex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8372710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/repeat_interleave_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8373850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_complex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8375030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8376300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8377650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_int4pack_mm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8378870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_version.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8380110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8381320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8382480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8383650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8384860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_add_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8386030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tril_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8387340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8388590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clip_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8389710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matmul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8390840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_solve_ex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8392040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8393260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_mkldnn_transpose_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8394410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_ndtri_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8395570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tensor_split_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8397040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/align_to_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8486820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8488190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/convolution_backward_overrideable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8489480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8490720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/geometric.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8491960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8493330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8494550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/i0_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8495900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardshrink_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8497100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/requires_grad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8498210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8499360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8500630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_entr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8501960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8503350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8504570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_xor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8505730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_xlogy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8506870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acos_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8508010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumprod_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8509240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8510460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lgamma_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8511690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_amp_update_scale_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8512850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expm1_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8514080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8515420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8516800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8518050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_index_put_impl_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8519240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8520500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8521810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_fp16_weight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8523010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addbmm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8524170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matrix_power_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8525340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8526530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matmul_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8527730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool3d_with_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8528920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_lstm_mps_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8530110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax_backward_data_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8531470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8532820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mps_convolution_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8534090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8535300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_coalesce_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8536430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_exp2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8537570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erfcx_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8538760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/min_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8540100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8541420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logit_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8542550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scalar_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8543900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8545210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cholesky_solve_helper_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8546520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8547870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8549160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_legendre_polynomial_p_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8550430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8551670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8552820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8553950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_reciprocal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8555120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8556290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_inference_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8557400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/any_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8562380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/digamma_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8563580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/abs_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8564960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8566310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8567410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mH_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8568690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8569940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cross.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8571030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/inner.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8572140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nanmedian_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8573360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8574580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kthvalue_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8575700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conj.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8576840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_group_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8578100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_linear_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8579260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8580430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_log_softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8581590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reshape_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8582700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcmul_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8583810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8584990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_serialization_subcmul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8586140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8587430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8588700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/neg_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8589790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_int4pack_mm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8590860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8591950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardshrink_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8593120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8594320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8595530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copy_sparse_to_sparse_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8596640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mse_loss_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8597870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8599080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/vander_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8600390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8601610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumprod_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8602890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8608470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8610010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matrix_H_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8611420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_resize_output.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8617640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8618980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8624960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cond.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8626390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_polygamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8633860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8635120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8641230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8642610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8648800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8650920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/smm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8656380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8657610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_addmm_activation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8663790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ormqr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8665010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8671530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/floor_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8674040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8679030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_spdiags_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8681190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/float_power_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8682360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/imag_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8688260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8689490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_pow_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8696730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sinh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8697910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8704270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8705490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/crow_indices_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8706660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ifftn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8712790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8714090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sum_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8720390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp2_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8721650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8722880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_assert_scalar_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8728280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8729940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_as_complex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8735620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8736820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8739200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8744490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8745740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8752850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8754060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_neg_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8760700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/floor_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8761930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8763120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/prelu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8767710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/take_along_dim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8770320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8776180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_backward_jvp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8777460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8784830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unsafe_index_put_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8793900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8801610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8816080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_rnn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8818370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8819620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_from_bin_tensors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8824790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_det_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8834640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.8835920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cdist_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9033600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9034890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9036200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9037520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9038810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cdist_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9039960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multi_margin_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9041220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_add_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9042640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/group_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9043830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erfcx_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9045030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_minimum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9046280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9047590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9048830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9049990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_coalesced.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9051240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9052530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_ragged_idx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9053810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9055040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9056170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_logsumexp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9057410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eigvalsh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9058710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9060000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9061200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dsplit_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9062450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9063790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9065000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/igammac.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9066180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_efficientzerotensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9067390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arange_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9068610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9069840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_min_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9071190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9072620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9073820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/celu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9074990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9076320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9077640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9078870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_addcdiv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9080070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9081430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9082720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_chunk_cat_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9083960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9085140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9086290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9087480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ifftshift_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9088850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9090210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9091470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9092820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9094160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_fill_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9095380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_max_pool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9096600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9097180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arange_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9097770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nnpack_spatial_convolution.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9098370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_not_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9098920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_depthwise3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9099590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9100260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9101250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9102020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9103510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_impl_index_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9104360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9106070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9106740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sub_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9108190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sub_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9109150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_semi_structured_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9110610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unbind_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9111550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9113020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/signbit_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9114200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9115130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_neg_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9116560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/numpy_T_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9117460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9118920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9119710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9121330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9122200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_floating_point_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9123510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9125190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9125880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_strides.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9127380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9128440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9129880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/all_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9130620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9132320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9133900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9134920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9136530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_select_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9139540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_flash_attention_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9140550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logit_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9147900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9153470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/chunk_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9154360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foobar_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9155050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan2_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9157060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nextafter_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9367090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9368250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9370030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_init_dropout_state_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9370950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_csr_prod.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9372530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cholesky_solve_helper_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9373380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frexp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9374850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/alias_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9376030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9376800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gru_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9378290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isclose_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9379240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_gather_stats_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9380730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gather_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9381430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_linear_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9382930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9383820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9385300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sspaddmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9386240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9387290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_string_default_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9388830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_logcumsumexp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9389650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9391180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9391930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_unique_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9393380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sobol_engine_draw.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9394990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9395790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/feature_dropout_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9397310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagflat_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9398210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_values.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9399900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9400980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_add_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9401870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9403340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_wrapped_linear_prepack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9404290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9405940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/combinations_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9406880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9408060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9409690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9410420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/swapdims_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9412000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9412990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9414160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9415340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isreal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9416260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addcmul_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9417530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9419070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumulative_trapezoid_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9419850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arctan.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9421460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9422260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_sum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9423760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sinh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9424570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad1d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9426060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arctanh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9426830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/col2im.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9428440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9429300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9430820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9431560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_t.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9432910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9433810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_rnn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9435320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9436210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9437640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/histc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9438590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_dim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9440370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9441170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9442410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9443360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9444850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9445530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/geometric_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9447020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logit_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9447940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9449340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mH.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9450670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/count_nonzero_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9452130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmax_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9452950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_buffer_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9454430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9455830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9456720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trace_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9458400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_interface_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9459450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addbmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9460580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_strided_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9461470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9463180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9464320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tensor_split.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9465910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9466690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/var_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9468160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9469020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/feature_alpha_dropout_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9470750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softshrink.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9471490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9473010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lgamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9474060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9475770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9476500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/polar_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9478250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9479390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mean_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9481290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9483430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9487900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pow.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9489220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_zero_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9493070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9497040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_cosh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9501600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9502470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/repeat_interleave_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9506550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9510980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9514220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9515780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_not.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9520700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9522810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9527830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9529470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_max_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9530890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cross_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9537490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9538470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9545060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unbind_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9546810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frac_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9552610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9554410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9555530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9561550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_inverse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9563460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9569130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ravel_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9570620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_select_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9577310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9578160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/floor_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9579780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9584700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9587250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9592220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/renorm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9593980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9595270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_mm_reduce_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9601310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bernoulli_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9602090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumsum_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9609020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/from_file_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9610280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/layer_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9617430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9618200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9619850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9624940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9627310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9634870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9635720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/allclose_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9640630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_j0.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9642400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tensordot_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9648800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_tanh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9649810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_factor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9651280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/thnn_conv2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9656990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_alias_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9659090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9664970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_forward_only_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9666750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_lu_with_info.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9673060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bincount_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9674160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9679380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9680350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9682380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/digamma_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9688760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/positive_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9689540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log10_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9691060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/remainder_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9698110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_not_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9698990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_euclidean_dist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9706330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9707870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_autograd_multiple_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9714220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9715690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_xor_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9716630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9722090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9723990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resize_as_sparse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9730190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/col2im_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9731260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/clamp_max_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9732680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/einsum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9738540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/align_tensors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9739680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9746460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mode_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9747320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9749270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rnn_tanh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9754340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9755240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_set_to_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9759200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_householder_product_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9763880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9767510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9768510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_rnn_relu_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9773350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9776940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9780700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9781360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Byte_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9786230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dstack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9789380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9794320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sign.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9798690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9804610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_distributed.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9807160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9811880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unflatten.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9812820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_segment_reduce_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9814960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9820800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9821720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9828090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9829960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9835640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9836650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9838600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_offsets_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9844830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9845770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gru_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9852640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log2_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9853650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adam_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9860390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/one_hot_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9861520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9863060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/as_strided_scatter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9868480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9870210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9877410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9878320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_zeros_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9884270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9886110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9892080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_saturate_weight_to_fp16_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9893960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tan_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9894710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lu_solve.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9901990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantized_batch_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9902810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sgn_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9909440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9910430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_functorch_fallback_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9916450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fw_primal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9917550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9919040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_reduce_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9924270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_irfftn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9926170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addmm_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9932150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9933980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/blackman_window_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9934770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9940540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9941350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9948150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/transpose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9949060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_sgd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9956750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amin_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9957680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acosh_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9964260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_rsqrt_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9965170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sum_to_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9972520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/var_mean_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9973400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/histc_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9979900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/align_tensors_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9980750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9982480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9987900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9988620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9996230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantile_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:12.9997300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0003560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ge_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0004520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triangular_solve_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0006090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0011530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0013340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/amax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0019180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0021050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0021850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ifftn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0026930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0027720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pow_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0035520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_bin_edges_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0036350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/q_scale.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0043760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0044580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0046030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rot90_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0051330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_eig.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0052270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0059740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0060830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0062430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0067600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/stride_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0069530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_is_acceptable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0075320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_zeta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0076610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0084290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/renorm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0085240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0092400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_coalesced_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0094340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/affine_grid_generator_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0099830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_view_from_buffer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0100720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/true_divide_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0102240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_solve_ex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0107130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0109530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/histogram_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0114780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0116760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0118690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/poisson_nll_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0124870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_dim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0125930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rshift_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0134350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0137770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsafe_split_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0140970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0141780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dense_dim_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0147550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_right_shift_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0148990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_fill_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0155800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_fill_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0156810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0165770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0167320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Byte_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0168700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0169750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/any.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0172950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0176430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/convolution_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0177690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0185080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0187510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0191330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_alias_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0192360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0198630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_forward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0200040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0206570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_vector_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0207990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0209110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/contiguous_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0214510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/le_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0215470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/convolution_overrideable_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0222800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardtanh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0223630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0230570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0231280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0232820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/angle_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0238420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cross_entropy_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0239220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_gammaincc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0246410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/subtract_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0247720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0248730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/poisson_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0254280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/floor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0256210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/retains_grad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0262440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sspaddmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0263420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0264960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_reduce_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0271720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0272640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scatter_add_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0279670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_copy_from.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0280640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/narrow_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0287120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/flip_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0288670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0294620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_not_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0303010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0303830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mse_loss_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0310620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool3d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0311610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_linear_backward_input.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0313200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_logsumexp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0318670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_avg_pool1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0319790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0326250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0327400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_or_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0328920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/l1_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0334880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/geqrf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0336410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0337920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isposinf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0343440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_masked_scale_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0346590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0351630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reciprocal_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0352580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lcm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0355360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/frexp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0361130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0363740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0368610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0369510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_xlog1py_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0371690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp2_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0377850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mean_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0378940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0385410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/le_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0387730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0393310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/stack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0394380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0395820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erfinv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0402260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/var_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0403040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rsqrt_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0405530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convolution_double_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0412220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/polar.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0413090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax_backward_data_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0419890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_make_dual_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0420680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trunc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0422020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/meshgrid_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0427680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_transpose2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0429860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0435860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0436830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0438700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0444530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_logit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0445470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/affine_grid_generator_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0452210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/full_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0453430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lgamma_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0460010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isneginf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0461790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0468060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_inv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0469020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0475990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_put_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0476910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/data_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0478450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0484590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0485360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0493440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/div_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0497160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0498190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0502370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/permute_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0503760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dense_dim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0509770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/xor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0512290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_unpool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0517610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_inv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0519500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_sparse_matmul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0525520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0526600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0527540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ge.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0534410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_clamp_min.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0535160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0542280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tanh_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0544170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cos_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0550110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0551020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0552570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/div.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0558450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/msort_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0559360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/refine_names_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0566910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/t_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0567900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isneginf_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0569600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0575050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0576560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0582970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_mask_projection_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0584160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/complex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0585130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0590500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copy_sparse_to_sparse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0591510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bmm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0598620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_log_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0599790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0606740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logaddexp2_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0607760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0608820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/softplus_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0614160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0615390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trapz_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0621600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0623570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0624330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0631000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arcsin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0638470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_update_stats.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0640810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0646330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cosine_embedding_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0647260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_sparse_matmul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0648930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0653860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0654760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/col_indices_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0661350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lgamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0663200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0666580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pin_memory_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0670480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_addcdiv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0671990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_factor_ex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0675810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_j1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0680160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/div_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0683300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_copy_from_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0684190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_neg_view_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0694690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/concat_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0695450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0696120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/histogramdd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0703270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_native_batch_norm_legit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0704210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0710680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0712480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0718760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/igamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0720320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_offsets_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0721430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0728830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_standard_gamma_grad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0729670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/zero_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0736830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0737700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0745590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0746390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_clamp_max_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0747970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pixel_unshuffle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0752900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0754750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0761080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logcumsumexp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0762060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0763710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0768810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_mkldnn_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0771160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0777460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0778250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0779760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0784060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_is_any_true_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0784840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_tensorinv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0792330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/random.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0793440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0801310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exponential.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0802240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gt_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0807790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_det_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0809100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_select_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0816210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/xlogy_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0817250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0824960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cudnn_convolution_transpose_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0826000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0827180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0832320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_sqrt_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0834090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atleast_1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0840400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isin_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0841320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0842820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_csr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0847800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sinc_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0849240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dist_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0855670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0856470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardtanh_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0858640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0864960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copysign_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0866110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0872990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_trilinear3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0873880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0880560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_reshape_alias_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0881540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0882970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/histogramdd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0888020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/aminmax_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0889580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_reduce_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0895670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_get_ragged_idx_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0896600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/leaky_relu_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0898270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lshift_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0902960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_irfft_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0904620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/digamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0910880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0918470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0919400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_addmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0923640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gather_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0927400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_has_same_storage_numel_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0928120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dimI.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0932550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exponential_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0936270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0939910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lu_unpack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0941010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0945650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_ceil.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0949400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_weight_to_int4pack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0953920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0954740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/matmul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0958960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_print_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0962880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_dense_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0968680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0970250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nanmedian_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0971770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantize_per_channel_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0978050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0978940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0985910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ctc_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0987740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/argwhere.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0993490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_tan.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0994380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/asin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.0995970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_add_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1001540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1005000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_or.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1011050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1011960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1018110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diff_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1018990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fix.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1026850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_standard_gamma_grad_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1028320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_expit_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1028980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rsub.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1034500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1036540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1041890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1042690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/std.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1044770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_is_all_true_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1050850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1051830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1058740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/polygamma_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1059520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1066580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1067630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_optional_floatlist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1069230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1073710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_forward_only.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1076110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1081150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/aminmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1082560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_log_softmax_backward_data_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1085070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1090480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tril_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1091950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1099100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1100560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmod_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1106750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randint_like_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1107610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1109190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1114410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1115380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1118240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_expm1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1123780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_erfinv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1124720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_solve_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1131540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_qr_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1132420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pad_sequence.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1140200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardswish.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1141030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/geqrf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1147740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1148800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1155480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logit_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1156940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ones_like.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1162810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_optional_filled_intlist_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1163930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/split_with_sizes_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1165420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_warn_in_autograd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1170450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/neg_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1171440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isfinite.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1178330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1179350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/q_per_channel_axis_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1185950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1186780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_batch_norm_no_update.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1188530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1193830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1194750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1201130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1203190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1208860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_coo_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1209740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_is_zerotensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1211420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/xlogy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1217320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_conj_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1218840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log10_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1226130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_standard_gamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1227020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1237040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/dequantize_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1237680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1238320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1241040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pin_memory.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1242120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1249160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gcd_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1249920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convolution_mode_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1251250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/convolution_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1258370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cosine_similarity_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1259270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_shape_as_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1265860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1266910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isposinf_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1273760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/conv_transpose3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1274470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_from_mask_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1275990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1280890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unflatten_dense_tensors_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1282400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_version_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1288100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pdist_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1289900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1290600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/empty_like_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1297710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/uniform.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1305950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/grid_sampler_3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1306790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/masked_scatter_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1313840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rshift_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1314720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumprod_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1316120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1317600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mse_loss_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1321700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1322590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_from_tensor_list.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1325290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/avg_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1331210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1332120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_coo_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1339390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1340090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bmm_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1343720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/detach_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1347730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/set.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1348720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1352280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1356830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1360400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/silu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1364200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1365100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1369860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_add_relu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1373690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1377610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1378200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randperm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1383150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1386070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/det.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1390710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1391430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/exp_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1395790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_k0_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1399490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_c2r_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1403430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_add_batch_dim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1404340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1409330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1412250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_tanh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1416650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_vander.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1417740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sigmoid_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1424240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mish_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1426690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1432470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_has_same_storage_numel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1433690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1435020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1441660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Double_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1442680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1449640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1450380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1457250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_full_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1458690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isposinf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1459620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/new_empty_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1465030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1466620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/triu_indices_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1472850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1474970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_round.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1481880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1482830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_has_same_storage_numel_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1489400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/quantile_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1490280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1497120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/index_select_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1497920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_dyn_quant_matmul_4bit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1499480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pad_sequence_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1506280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1507220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_native_batch_norm_legit_no_training.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1512040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/elu_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1513210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1515090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1515860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1521120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fw_primal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1521980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sym_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1524630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_attention_math.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1530730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1533130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/hardsigmoid_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1538810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1539630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1541320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/row_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1547700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_backward_elemt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1548480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1555730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1556730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_bessel_j1_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1563440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/t_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1564270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/det_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1565750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_bsr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1571870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/randperm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1572820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expand_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1579620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fft_c2r.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1581030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sqrt_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1587390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cosine_similarity.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1588190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_add_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1589730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nonzero_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1595190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1596230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_csc_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1603430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1604400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1606100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/q_per_channel_axis_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1610690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logdet_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1611720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/take_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1618430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_rnn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1619920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/minimum_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1626740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1627630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/greater_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1629350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1634370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_resize_and_clear_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1642990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/prod_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1643830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tril_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1645540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/miopen_depthwise_convolution.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1650390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_functional_assert_async_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1652040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1658400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_is_any_true_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1659450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1666300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_fused_adam_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1667720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_unpool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1668520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_pinv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1674860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cast_Half_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1675840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1682360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/native_batch_norm_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1684870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/unique_dim_consecutive_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1690540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1691200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/col2im_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1692930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/replication_pad2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1699250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1700120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/crow_indices_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1706770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cosh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1707680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1709280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/threshold_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1714400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_semi_structured_tile_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1716030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1722650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_exp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1723770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1725490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binary_cross_entropy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1732130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_softmax_backward_data_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1733050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/log_softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1739600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_modified_bessel_i0_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1741570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1747910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_sparse_csr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1748920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1750440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lu_unpack_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1756440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1760790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1764940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_pinned_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1766590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1767390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isposinf_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1773440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1774130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cslt_compress_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1781390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/slow_conv_dilated3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1782220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_abs.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1783970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1789730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1790400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/histc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1798030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_trilinear3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1799620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_sum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1800430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1805430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/relu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1808130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1808960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_matrix_exp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1814460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_index_put_impl_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1816930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1822270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_mm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1823230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_weight_norm_interface_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1824880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/trapz_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1830710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/block_diag_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1831560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/logical_or_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1838430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1839520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1845610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1846840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cumsum_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1848740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_entr_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1854850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fft_ifftshift.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1855810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/batch_norm_elemt_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1862280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_assert_async.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1864010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/q_zero_point_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1870290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_zeta_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1870960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_values_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1872400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/is_same_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1877700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/atan2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1879250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1885070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/diagonal_scatter_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1887520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1892800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1893440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/isnan_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1895480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scaled_dot_product_attention_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1901050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/bitwise_left_shift_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1902500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/l1_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1909160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1910700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1917060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cholesky_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1917860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nuclear_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1919350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/lift_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1925850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1926860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1934180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1935040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1936090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/and_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1941970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/select.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1942770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1950070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/true_divide.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1951190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1952230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1958260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1959150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nonzero_numpy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1966020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_sinc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1967300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1968230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_foreach_cos_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1974070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1975200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1981460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_pdist_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1982660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cos_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1988800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1989510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/tan_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1991220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ones_like_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1997870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_conj_physical_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.1998780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/nll_loss2d_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.2006120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.2006900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_to_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.2014390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cos_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.2015260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.2016890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/mkldnn_convolution_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.2021120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_linalg_eigh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.2022940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_print_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.2029470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.2030460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.2032050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/cat_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.2038330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/ne_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.2039200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/expand_as_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.2045860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.2047380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/complex_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.2054620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/linalg_ldl_solve_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.2055740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2025-01-24T02:56:13.2058000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ParallelOpenMP.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2062670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/jit_macros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2064080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/CPUApplyUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2071050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ThreadLocalState.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2072040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ScalarOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2073630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/NativeFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2078790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/DynamicLibrary.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2079940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/TensorGeometry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2086240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/TensorIterator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2087500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/NamedTensorUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2088930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Dimname.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2093670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/ROCmFABackend.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2094690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2101320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/autocast_mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2102750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Parallel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2109420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/DimVector.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2110940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/MetaFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2112980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/InferSize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2117620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/LegacyVmapTransforms.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2119100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/SmallVector.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2125540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2127360Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2025-01-24T02:56:13.2128260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch/BatchedFallback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2025-01-24T02:56:13.2129810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch/FunctionalizeInterpreter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2025-01-24T02:56:13.2135010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch/ADInterpreters.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2025-01-24T02:56:13.2135870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch/Interpreter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2025-01-24T02:56:13.2142140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch/TensorWrapper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2025-01-24T02:56:13.2143960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch/BatchRulesHelper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2025-01-24T02:56:13.2149870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch/PlumbingHelper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2025-01-24T02:56:13.2150920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch/VmapInterpreter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2025-01-24T02:56:13.2151930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch/Macros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2025-01-24T02:56:13.2157850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch/BatchingMetaprogramming.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2025-01-24T02:56:13.2158800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch/BatchedTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2025-01-24T02:56:13.2165420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch/LegacyVmapTransforms.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2025-01-24T02:56:13.2166440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/functorch/DynamicLayer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2025-01-24T02:56:13.2172950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/Generator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2173770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/AccumulateType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2175270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/TensorAccessor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2180770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/SDPBackend.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2182460Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cudnn 2025-01-24T02:56:13.2183080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cudnn/Handles.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cudnn 2025-01-24T02:56:13.2189320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cudnn/Utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cudnn 2025-01-24T02:56:13.2190210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cudnn/Types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cudnn 2025-01-24T02:56:13.2191830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cudnn/Descriptors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cudnn 2025-01-24T02:56:13.2197170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cudnn/Handle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cudnn 2025-01-24T02:56:13.2198620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/cudnn/cudnn-wrapper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cudnn 2025-01-24T02:56:13.2205190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/ATen/CachedTensorUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2025-01-24T02:56:13.2207270Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10 2025-01-24T02:56:13.2208370Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2209200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/RefcountedDeleter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2212810Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2213460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl/InlineStreamGuard.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2215050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl/SizesAndStrides.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2215890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl/InlineDeviceGuard.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2221160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl/GPUTrace.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2221920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl/COWDeleter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2229160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl/LocalDispatchKeySet.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2229870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl/alloc_cpu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2236460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl/VirtualGuardImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2237450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl/HermeticPyObjectTLS.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2238810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl/PyObjectSlot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2244540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl/TorchDispatchModeTLS.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2245310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl/PyInterpreter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2252540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl/PythonDispatcherTLS.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2253240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl/COW.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2260510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl/InlineEvent.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2261380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl/DeviceGuardImplInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2267370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/impl/FakeGuardImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2025-01-24T02:56:13.2268280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/QEngine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2269770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/TensorOptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2276410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/SymFloat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2277180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/GradMode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2278630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/Device.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2284140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/CPUAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2286610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/DefaultDtype.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2292330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/DefaultTensorOptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2293040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/alignment.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2294530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/Event.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2301100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/Backend.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2302270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/CompileTimeFunctionPointer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2309320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/DeviceArray.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2310180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/PyHandleCache.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2317750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/ConstantSymNodeImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2318520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/WrapDimMinimal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2319950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/QScheme.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2325260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/SafePyObject.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2327150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/Stream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2334120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/UndefinedTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2334760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/Scalar.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2337220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/AutogradState.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2341940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/SymIntArrayRef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2342800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/thread_pool.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2349830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/CopyBytes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2350770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/SymNodeImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2352260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/StreamGuard.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2357560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/DynamicCast.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2365790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/Layout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2367190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/GeneratorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2368760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/DispatchKeySet.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2374310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/Allocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2382150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/TensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2391030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/Contiguity.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2392090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/ScalarType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2398540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/Storage.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2399420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/DeviceType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2406070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/DeviceGuard.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2407110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/StorageImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2408360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/SymbolicShapeMeta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2413930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/MemoryFormat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2415740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/SymBool.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2421890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/DispatchKey.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2423420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/ScalarTypeToTypeMeta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2424790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/InferenceMode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2431500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/SymInt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2433890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/OptionalRef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2440800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/core/CachingDeviceAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2025-01-24T02:56:13.2443400Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2444250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2445580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/order_preserving_flat_hash_map.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2447200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Float8_e4m3fn-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2448490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/quint4x2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2449770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/FbcodeMaps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2450990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/signal_handler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2452150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/error.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2453350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/safe_numerics.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2454470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Half.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2459090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/flat_hash_map.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2462420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/env.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2467410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/llvmMathExtras.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2468630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Gauge.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2472320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/WaitCounterDynamicBackend.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2477540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Synchronized.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2481200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Bitset.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2484840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/typeid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2486060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Float8_e4m3fnuz-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2489860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/TypeSafeSignMath.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2493620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/intrusive_ptr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2497670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/string_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2498990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/win32-headers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2503280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/AlignOf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2507010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/static_tracepoint.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2510600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/ssize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2511690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/numa.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2516210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/qint32.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2519450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/CallOnce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2527510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Float8_e5m2fnuz.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2528690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/MaybeOwned.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2529760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Half-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2533670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/TypeTraits.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2537580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/DeadlockDetection.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2538760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/FunctionRef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2543100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Backtrace.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2546090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/overflows.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2551360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/ExclusivelyOwned.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2552510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Load.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2555920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/BFloat16-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2560510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/static_tracepoint_elfx86.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2563220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/ConstexprCrc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2564400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/ThreadLocal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2570580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/IdWrapper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2572010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Flags.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2578540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/overloaded.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2579710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Float8_e4m3fnuz.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2580860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/quint8.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2587510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Float8_e5m2-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2588680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/StringUtil.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2595800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Logging.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2598010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/MathConstants.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2603500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Registry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2605940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Optional.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2607100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Float8_e5m2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2611610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/tempfile.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2612760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/copysign.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2620530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/ArrayRef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2621640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/thread_name.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2622730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/strides.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2626460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Unicode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2634550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/TypeCast.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2637690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/sparse_bitset.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2638960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/OptionalArrayRef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2641120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/BFloat16.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2642220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/TypeList.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2644260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/TypeIndex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2645440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/NetworkFlow.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2648060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Array.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2652100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/logging_is_google_glog.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2653310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Metaprogramming.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2654490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/WaitCounter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2660750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/quint2x4.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2661890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/floating_point_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2668960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/ParallelGuard.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2670980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/BFloat16-math.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2676610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/int128.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2678810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Lazy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2679990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Deprecated.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2685160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/irange.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2687690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/SmallBuffer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2693980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/ScopeExit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2695100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Unroll.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2696310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/LeftRight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2702450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/bit_cast.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2703550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/qint8.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2704650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/complex_math.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2711280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/logging_is_not_google_glog.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2712470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/DynamicCounter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2719950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Exception.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2721150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/UniqueVoidPtr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2728440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/ThreadLocalDebugInfo.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2729680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Float8_e4m3fn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2730860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/AbortHandler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2736120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/DimVector.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2737270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/accumulate.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2744190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/C++17.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2745310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/strong_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2746600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/ApproximateClock.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2753190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/SmallVector.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2754480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Float8_e5m2fnuz-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2761260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/hash.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2762420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/python_stub.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2763540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/complex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2769770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/bits.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2770850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/string_view.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2777630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/Float8_fnuz_cvt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2778760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/complex_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2779970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/ExclusivelyOwnedTensorTraits.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2782680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/util/generic_math.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2025-01-24T02:56:13.2787260Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/metal 2025-01-24T02:56:13.2788080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/metal/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/metal 2025-01-24T02:56:13.2793020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/metal/special_math.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/metal 2025-01-24T02:56:13.2793840Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2025-01-24T02:56:13.2794360Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda/impl 2025-01-24T02:56:13.2795180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/impl/CUDATest.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda/impl 2025-01-24T02:56:13.2798850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/impl/CUDAGuardImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda/impl 2025-01-24T02:56:13.2804790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/CUDADeviceAssertion.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2025-01-24T02:56:13.2805970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/driver_api.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2025-01-24T02:56:13.2807130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/CUDAMathCompat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2025-01-24T02:56:13.2808280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/CUDAAlgorithm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2025-01-24T02:56:13.2809450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/CUDAStream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2025-01-24T02:56:13.2812830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/CUDAGuard.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2025-01-24T02:56:13.2814860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/CUDAMiscFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2025-01-24T02:56:13.2816520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/CUDAGraphsC10Utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2025-01-24T02:56:13.2820240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/CUDAMacros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2025-01-24T02:56:13.2822850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/CUDAAllocatorConfig.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2025-01-24T02:56:13.2827580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/CUDAFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2025-01-24T02:56:13.2831640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/CUDAException.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2025-01-24T02:56:13.2832860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/CUDACachingAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2025-01-24T02:56:13.2839090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/cuda/CUDADeviceAssertionHost.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2025-01-24T02:56:13.2840060Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu 2025-01-24T02:56:13.2841460Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu/impl 2025-01-24T02:56:13.2842360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/xpu/impl/XPUGuardImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu/impl 2025-01-24T02:56:13.2843510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/xpu/XPUStream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu 2025-01-24T02:56:13.2848500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/xpu/XPUDeviceProp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu 2025-01-24T02:56:13.2850830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/xpu/XPUCachingAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu 2025-01-24T02:56:13.2856500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/xpu/XPUMacros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu 2025-01-24T02:56:13.2857760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/xpu/XPUException.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu 2025-01-24T02:56:13.2864520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/xpu/XPUFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu 2025-01-24T02:56:13.2865550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/macros 2025-01-24T02:56:13.2866480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/macros/cmake_macros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/macros 2025-01-24T02:56:13.2867710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/macros/Export.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/macros 2025-01-24T02:56:13.2872250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/c10/macros/Macros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/macros 2025-01-24T02:56:13.2873400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/psimd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2025-01-24T02:56:13.2880210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/experiments-config.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2025-01-24T02:56:13.2881280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/include/fxdiv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2025-01-24T02:56:13.2884360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/torch_version.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.2888650Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends 2025-01-24T02:56:13.2889290Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/opt_einsum 2025-01-24T02:56:13.2890240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/opt_einsum/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/opt_einsum 2025-01-24T02:56:13.2891430Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/mha 2025-01-24T02:56:13.2892300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/mha/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/mha 2025-01-24T02:56:13.2896250Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/nnpack 2025-01-24T02:56:13.2897050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/nnpack/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/nnpack 2025-01-24T02:56:13.2898250Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/mps 2025-01-24T02:56:13.2899030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/mps/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/mps 2025-01-24T02:56:13.2900610Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/cpu 2025-01-24T02:56:13.2901360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/cpu/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/cpu 2025-01-24T02:56:13.2903700Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/_coreml 2025-01-24T02:56:13.2904540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/_coreml/preprocess.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/_coreml 2025-01-24T02:56:13.2905770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/_coreml/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/_coreml 2025-01-24T02:56:13.2906900Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/cuda 2025-01-24T02:56:13.2907800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/cuda/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/cuda 2025-01-24T02:56:13.2911620Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/quantized 2025-01-24T02:56:13.2912450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/quantized/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/quantized 2025-01-24T02:56:13.2913640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends 2025-01-24T02:56:13.2915030Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/mkl 2025-01-24T02:56:13.2915790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/mkl/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/mkl 2025-01-24T02:56:13.2921110Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/xnnpack 2025-01-24T02:56:13.2921920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/xnnpack/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/xnnpack 2025-01-24T02:56:13.2923440Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/kleidiai 2025-01-24T02:56:13.2924260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/kleidiai/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/kleidiai 2025-01-24T02:56:13.2928910Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/cusparselt 2025-01-24T02:56:13.2929780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/cusparselt/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/cusparselt 2025-01-24T02:56:13.2930790Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/mkldnn 2025-01-24T02:56:13.2931590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/mkldnn/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/mkldnn 2025-01-24T02:56:13.2937050Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/xeon 2025-01-24T02:56:13.2937810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/xeon/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/xeon 2025-01-24T02:56:13.2938910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/xeon/run_cpu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/xeon 2025-01-24T02:56:13.2939980Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/_nnapi 2025-01-24T02:56:13.2940790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/_nnapi/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/_nnapi 2025-01-24T02:56:13.2942010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/_nnapi/serializer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/_nnapi 2025-01-24T02:56:13.2943440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/_nnapi/prepare.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/_nnapi 2025-01-24T02:56:13.2945190Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/openmp 2025-01-24T02:56:13.2946050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/openmp/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/openmp 2025-01-24T02:56:13.2946970Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/cudnn 2025-01-24T02:56:13.2947750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/cudnn/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/cudnn 2025-01-24T02:56:13.2952890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/backends/cudnn/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/cudnn 2025-01-24T02:56:13.2953800Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_decomp 2025-01-24T02:56:13.2954650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_decomp/decompositions_for_jvp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_decomp 2025-01-24T02:56:13.2955980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_decomp/decompositions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_decomp 2025-01-24T02:56:13.3128610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_decomp/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_decomp 2025-01-24T02:56:13.3129850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_decomp/decompositions_for_rng.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_decomp 2025-01-24T02:56:13.3131060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_VF.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.3136860Z creating build/bdist.macosx-11.1-arm64/wheel/torch/xpu 2025-01-24T02:56:13.3137550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/xpu/streams.py -> build/bdist.macosx-11.1-arm64/wheel/torch/xpu 2025-01-24T02:56:13.3138440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/xpu/memory.py -> build/bdist.macosx-11.1-arm64/wheel/torch/xpu 2025-01-24T02:56:13.3139310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/xpu/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/xpu 2025-01-24T02:56:13.3140190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/xpu/_gpu_trace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/xpu 2025-01-24T02:56:13.3141100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/xpu/random.py -> build/bdist.macosx-11.1-arm64/wheel/torch/xpu 2025-01-24T02:56:13.3141960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/xpu/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/xpu 2025-01-24T02:56:13.3142810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_streambase.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.3143460Z creating build/bdist.macosx-11.1-arm64/wheel/torch/masked 2025-01-24T02:56:13.3144150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/masked/_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked 2025-01-24T02:56:13.3145040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/masked/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked 2025-01-24T02:56:13.3145950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/masked/_docs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked 2025-01-24T02:56:13.3147950Z creating build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2025-01-24T02:56:13.3148860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/masked/maskedtensor/binary.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2025-01-24T02:56:13.3150050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/masked/maskedtensor/creation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2025-01-24T02:56:13.3151360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/masked/maskedtensor/_ops_refs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2025-01-24T02:56:13.3152710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/masked/maskedtensor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2025-01-24T02:56:13.3153960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/masked/maskedtensor/core.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2025-01-24T02:56:13.3156280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/masked/maskedtensor/unary.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2025-01-24T02:56:13.3157470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/masked/maskedtensor/reductions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2025-01-24T02:56:13.3158660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/masked/maskedtensor/passthrough.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2025-01-24T02:56:13.3159680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_tensor_docs.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.3161930Z creating build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3162630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/lr_scheduler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3216220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/rmsprop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3217280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/_adafactor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3218630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/sparse_adam.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3219840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/rprop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3221170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/sgd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3222380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3223520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/adamax.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3224770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/adagrad.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3226590Z creating build/bdist.macosx-11.1-arm64/wheel/torch/optim/_multi_tensor 2025-01-24T02:56:13.3227410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/_multi_tensor/__init__.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/optim/_multi_tensor 2025-01-24T02:56:13.3228760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/_multi_tensor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim/_multi_tensor 2025-01-24T02:56:13.3229760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/adamw.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3230690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/swa_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3231800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/lbfgs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3233020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/radam.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3234250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/adam.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3236130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/optimizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3237150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/nadam.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3238310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/asgd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3240960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/_functional.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3241910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/optim/adadelta.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2025-01-24T02:56:13.3243060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_weights_only_unpickler.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.3244270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.3246750Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3247510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/dtype_propagation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3248590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/cudagraph_trees.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3250600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/select_algorithm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3252060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/ops_handler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3253130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/metrics.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3255590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codecache.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3257560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/mock_cache.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3258570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/optimize_indexing.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3259720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3260720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/cpp_builder.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3262070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/cpu_vec_isa.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3264340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3265500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/comms.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3266800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/memory.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3268160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/mkldnn_lowerings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3269460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/async_compile.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3271910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/pattern_matcher.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3273300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/quantized_lowerings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3275070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/triton_bundler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3276230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/aoti_eager.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3277390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3278820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/lowering.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3281550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2025-01-24T02:56:13.3282540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime/cache_dir_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2025-01-24T02:56:13.3283780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime/triton_heuristics.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2025-01-24T02:56:13.3285850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime/runtime_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2025-01-24T02:56:13.3286970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime/halide_helpers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2025-01-24T02:56:13.3288130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime/coordinate_descent_tuner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2025-01-24T02:56:13.3289340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime/triton_compat.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2025-01-24T02:56:13.3290450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2025-01-24T02:56:13.3291530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime/compile_tasks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2025-01-24T02:56:13.3292640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime/triton_helpers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2025-01-24T02:56:13.3294140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime/autotune_cache.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2025-01-24T02:56:13.3295420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime/hints.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2025-01-24T02:56:13.3296660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/runtime/benchmarking.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2025-01-24T02:56:13.3301910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/jagged_lowerings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3302950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/test_operators.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3303940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3304840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/compile_fx.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3397830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/cudagraph_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3398930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/sizevars.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3400270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/ir.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3403150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/analyze_preserves_zero_mask.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3404260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/index_propagation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3406610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/constant_folding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3409220Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3410090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cpp_grouped_gemm_template.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3411320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cpp_wrapper_gpu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3412620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/wrapper.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3414080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/mps_device_op_overrides.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3415310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/triton_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3416490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/triton.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3418750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cpp_bmm_template.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3419840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/mps.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3422100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/aoti_hipify_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3423230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/simd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3424900Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2025-01-24T02:56:13.3425790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda/cutlass_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2025-01-24T02:56:13.3427010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2025-01-24T02:56:13.3428220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda/cuda_template.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2025-01-24T02:56:13.3429400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda/gemm_template.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2025-01-24T02:56:13.3430610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2025-01-24T02:56:13.3431790Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-01-24T02:56:13.3432970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-01-24T02:56:13.3434510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-01-24T02:56:13.3435900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda/device_op_overrides.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2025-01-24T02:56:13.3437100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda/cuda_env.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2025-01-24T02:56:13.3438260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda/cuda_kernel.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2025-01-24T02:56:13.3439160Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/xpu 2025-01-24T02:56:13.3440020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/xpu/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/xpu 2025-01-24T02:56:13.3441230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/xpu/device_op_overrides.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/xpu 2025-01-24T02:56:13.3442420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/triton_combo_kernel.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3443560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/memory_planning.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3444640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3445780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cpp_flex_attention_template.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3447000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cpp_micro_gemm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3448160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cpp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3450650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cpp_wrapper_cpu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3452230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/block_analysis.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3453520Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/aoti_runtime 2025-01-24T02:56:13.3454500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/aoti_runtime/implementation.cpp -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/aoti_runtime 2025-01-24T02:56:13.3455800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/aoti_runtime/interface.cpp -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/aoti_runtime 2025-01-24T02:56:13.3458230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3460220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cpp_template_kernel.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3461410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cpp_gemm_template.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3462690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cpu_device_op_overrides.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3463940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3465190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cpp_prefix.h -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3467060Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/rocm 2025-01-24T02:56:13.3467980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/rocm 2025-01-24T02:56:13.3469190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm/rocm_kernel.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/rocm 2025-01-24T02:56:13.3470410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm/rocm_template.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/rocm 2025-01-24T02:56:13.3471580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/rocm 2025-01-24T02:56:13.3472790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm/compile_command.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/rocm 2025-01-24T02:56:13.3474000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm/ck_conv_template.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/rocm 2025-01-24T02:56:13.3475220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm/rocm_template_buffer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/rocm 2025-01-24T02:56:13.3476460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm/ck_universal_gemm_template.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/rocm 2025-01-24T02:56:13.3477670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm/ck_template.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/rocm 2025-01-24T02:56:13.3478880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/rocm/rocm_benchmark_request.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/rocm 2025-01-24T02:56:13.3480070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/triton_split_scan.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3481160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/halide.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3482320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cpp_template.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3483520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cuda_combined_scheduling.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3484700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/multi_kernel.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3485910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/cpp_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3487120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/debug_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3488550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/codegen/simd_kernel_features.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2025-01-24T02:56:13.3489660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/inductor_prims.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3490780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/virtualized.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3493280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/test_case.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3494300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autotune_process.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3496110Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/compile_worker 2025-01-24T02:56:13.3497050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/compile_worker/watchdog.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/compile_worker 2025-01-24T02:56:13.3498300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/compile_worker/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/compile_worker 2025-01-24T02:56:13.3499590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/compile_worker/subproc_pool.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/compile_worker 2025-01-24T02:56:13.3501920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/compile_worker/__main__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/compile_worker 2025-01-24T02:56:13.3503140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/exc.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3504200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3506190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/debug.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3507310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fuzzer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3509000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/comm_lowering.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3516380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/decomposition.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3517200Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/autoheuristic 2025-01-24T02:56:13.3517800Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-01-24T02:56:13.3518820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-01-24T02:56:13.3520160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/artifacts/_PadMMA100.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-01-24T02:56:13.3521510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-01-24T02:56:13.3522840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/artifacts/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-01-24T02:56:13.3524110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-01-24T02:56:13.3525360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-01-24T02:56:13.3526600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/autoheuristic.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/autoheuristic 2025-01-24T02:56:13.3556250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/autoheuristic_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/autoheuristic 2025-01-24T02:56:13.3557550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/learned_heuristic_controller.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/autoheuristic 2025-01-24T02:56:13.3558780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/autoheuristic 2025-01-24T02:56:13.3560050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/autoheuristic/learnedheuristic_interface.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/autoheuristic 2025-01-24T02:56:13.3561050Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3562000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/post_grad.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3563790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/replace_random.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3564960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/ddp_fusion.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3566230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/numeric_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3567500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/decompose_mem_bound_mm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3568720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/reinplace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3570090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/quantization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3571930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/split_cat.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3574050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/dedupe_symint_uses.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3575220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/efficient_conv_bn_eval.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3577410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3578530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/group_batch_fusion.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3579720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/pre_grad.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3580990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/binary_folding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3582480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/fuse_attention.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3583830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/micro_pipeline_tp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3585690Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3586810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3588510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3589970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3591450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3592860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3594280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3595750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3597510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3598940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3600370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3601790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3603410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3605980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3608540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3609970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3611470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3614120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3616390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3618320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3620750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3623080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3624540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3626200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-01-24T02:56:13.3627460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/joint_graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3628930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/b2b_gemm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3630330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/mkldnn_fusion.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3631830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/pad_mm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3633400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/freezing_patterns.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3634600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_passes/misc_patterns.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2025-01-24T02:56:13.3635680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/fx_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3636800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/scheduler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3638950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/mkldnn_ir.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3640110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/wrapper_benchmark.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3642470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/choices.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3644760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/remote_cache.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3646970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/comm_analysis.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3648050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/compiler_bisector.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3649180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/extern_node_serializer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3650270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/bounds.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3651380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/output_code.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3653170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/custom_graph_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3654170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/freezing.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3655180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/dependencies.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3656830Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2025-01-24T02:56:13.3657750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel/unpack_mixed_mm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2025-01-24T02:56:13.3659140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel/mm_common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2025-01-24T02:56:13.3660400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel/flex_decoding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2025-01-24T02:56:13.3661690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2025-01-24T02:56:13.3662950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel/mm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2025-01-24T02:56:13.3664300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel/bmm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2025-01-24T02:56:13.3665530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel/mm_scaled.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2025-01-24T02:56:13.3670950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2025-01-24T02:56:13.3672010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel/mm_plus_mm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2025-01-24T02:56:13.3673090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/kernel/flex_attention.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2025-01-24T02:56:13.3673870Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/package 2025-01-24T02:56:13.3674690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/package/package.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/package 2025-01-24T02:56:13.3675780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/package/build_package.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/package 2025-01-24T02:56:13.3676870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/package/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/package 2025-01-24T02:56:13.3677970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/package/pt2_archive_constants.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/package 2025-01-24T02:56:13.3679020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/loop_body.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3680010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_inductor/subgraph_lowering.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2025-01-24T02:56:13.3680720Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3681390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_pytree.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3682170Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark 2025-01-24T02:56:13.3682990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark 2025-01-24T02:56:13.3684370Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-01-24T02:56:13.3685510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/op_fuzzers/binary.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-01-24T02:56:13.3686820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/op_fuzzers/sparse_binary.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-01-24T02:56:13.3688090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/op_fuzzers/sparse_unary.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-01-24T02:56:13.3689340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/op_fuzzers/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-01-24T02:56:13.3690640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/op_fuzzers/spectral.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-01-24T02:56:13.3691860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/op_fuzzers/unary.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-01-24T02:56:13.3692740Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2025-01-24T02:56:13.3693610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/timer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2025-01-24T02:56:13.3694830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2025-01-24T02:56:13.3696090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/sparse_fuzzer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2025-01-24T02:56:13.3697310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2025-01-24T02:56:13.3698810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/compile.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2025-01-24T02:56:13.3700110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/fuzzer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2025-01-24T02:56:13.3701430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/timeit_template.cpp -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2025-01-24T02:56:13.3702940Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-01-24T02:56:13.3704060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-01-24T02:56:13.3705560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-01-24T02:56:13.3708850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-01-24T02:56:13.3710380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/valgrind_wrapper/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-01-24T02:56:13.3711880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-01-24T02:56:13.3713360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-01-24T02:56:13.3714660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/cpp_jit.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2025-01-24T02:56:13.3715850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/compare.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2025-01-24T02:56:13.3717000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/utils/_stubs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2025-01-24T02:56:13.3717860Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/examples 2025-01-24T02:56:13.3718800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/examples/op_benchmark.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/examples 2025-01-24T02:56:13.3720040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/examples/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/examples 2025-01-24T02:56:13.3721310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/examples/simple_timeit.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/examples 2025-01-24T02:56:13.3722560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/examples/fuzzer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/examples 2025-01-24T02:56:13.3723890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/examples/blas_compare_setup.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/examples 2025-01-24T02:56:13.3724580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/examples/spectral_ops_fuzz_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/examples 2025-01-24T02:56:13.3725610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/benchmark/examples/compare.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/examples 2025-01-24T02:56:13.3726620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_foreach_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3728060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3729470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_traceback.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3730420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_cpp_extension_versioner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3731780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_mode_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3733120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/checkpoint.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3734470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/show_pickle.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3735900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/deterministic.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3736850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/file_baton.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3738270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_freeze.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3739630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/backend_registration.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3740520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/module_tracker.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3741940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/model_zoo.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3742760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_zip.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3744300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/collect_env.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3745870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/throughput_benchmark.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3746440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/dlpack.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3747940Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2025-01-24T02:56:13.3748490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy/functions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2025-01-24T02:56:13.3750200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2025-01-24T02:56:13.3750960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy/symbol.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2025-01-24T02:56:13.3752540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy/numbers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2025-01-24T02:56:13.3753260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy/reference.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2025-01-24T02:56:13.3755840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy/singleton_int.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2025-01-24T02:56:13.3756790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy/value_ranges.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2025-01-24T02:56:13.3758730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy/printers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2025-01-24T02:56:13.3760140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy/solve.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2025-01-24T02:56:13.3761120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_sympy/interp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2025-01-24T02:56:13.3762540Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/serialization 2025-01-24T02:56:13.3763150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/serialization/config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/serialization 2025-01-24T02:56:13.3764600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/serialization/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/serialization 2025-01-24T02:56:13.3765860Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/backcompat 2025-01-24T02:56:13.3766430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/backcompat/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/backcompat 2025-01-24T02:56:13.3769780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_cxx_pytree.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3771190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3777460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_functools.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3778840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_import_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3779690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_cpp_embed_headers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3786600Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/hipify 2025-01-24T02:56:13.3787210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/hipify/version.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/hipify 2025-01-24T02:56:13.3788810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/hipify/cuda_to_hip_mappings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/hipify 2025-01-24T02:56:13.3989690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/hipify/constants.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/hipify 2025-01-24T02:56:13.3990540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/hipify/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/hipify 2025-01-24T02:56:13.3991990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/hipify/hipify_python.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/hipify 2025-01-24T02:56:13.3993350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_config_typing.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3994370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/bundled_inputs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.3996110Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/bottleneck 2025-01-24T02:56:13.3996700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/bottleneck/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/bottleneck 2025-01-24T02:56:13.3997620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/bottleneck/__main__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/bottleneck 2025-01-24T02:56:13.3999000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/mkldnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4000310Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/viz 2025-01-24T02:56:13.4000860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/viz/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/viz 2025-01-24T02:56:13.4002270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/viz/_cycles.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/viz 2025-01-24T02:56:13.4004370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/cpp_backtrace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4005240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_contextlib.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4006780Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/jit 2025-01-24T02:56:13.4007280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/jit/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/jit 2025-01-24T02:56:13.4008300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/jit/log_extract.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/jit 2025-01-24T02:56:13.4009820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_python_dispatch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4011360Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2025-01-24T02:56:13.4011930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard/_pytorch_graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2025-01-24T02:56:13.4014410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard/_proto_graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2025-01-24T02:56:13.4015470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2025-01-24T02:56:13.4016470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard/_embedding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2025-01-24T02:56:13.4018030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard/_onnx_graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2025-01-24T02:56:13.4018730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard/summary.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2025-01-24T02:56:13.4020400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard/_convert_np.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2025-01-24T02:56:13.4021300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard/writer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2025-01-24T02:56:13.4022990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/tensorboard/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2025-01-24T02:56:13.4029530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_exposed_in.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4030130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_filelock.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4030580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_thunk.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4031080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_config_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4031510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_device.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4031960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/flop_counter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4032420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_typing_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4032870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_stats.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4034000Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/model_dump 2025-01-24T02:56:13.4034560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/model_dump/code.js -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/model_dump 2025-01-24T02:56:13.4036090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/model_dump/preact.mjs -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/model_dump 2025-01-24T02:56:13.4037080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/model_dump/skeleton.html -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/model_dump 2025-01-24T02:56:13.4038540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/model_dump/htm.mjs -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/model_dump 2025-01-24T02:56:13.4039240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/model_dump/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/model_dump 2025-01-24T02:56:13.4040820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/model_dump/__main__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/model_dump 2025-01-24T02:56:13.4041590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/cpp_extension.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4043620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_backport_slots.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4045010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_get_clean_triton.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4045750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_triton.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4047220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_content_store.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4048870Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2025-01-24T02:56:13.4049830Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/_utils 2025-01-24T02:56:13.4050460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/_utils/fetch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/_utils 2025-01-24T02:56:13.4051970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/_utils/worker.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/_utils 2025-01-24T02:56:13.4054250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/_utils/collate.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/_utils 2025-01-24T02:56:13.4056740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/_utils/pin_memory.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/_utils 2025-01-24T02:56:13.4057500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/_utils/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/_utils 2025-01-24T02:56:13.4058970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/_utils/signal_handling.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/_utils 2025-01-24T02:56:13.4059770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/graph_settings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2025-01-24T02:56:13.4061300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2025-01-24T02:56:13.4062190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2025-01-24T02:56:13.4063690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/dataset.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2025-01-24T02:56:13.4065120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/distributed.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2025-01-24T02:56:13.4066070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/backward_compatibility.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2025-01-24T02:56:13.4067520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/dataloader.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2025-01-24T02:56:13.4069050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/sampler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2025-01-24T02:56:13.4071320Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes 2025-01-24T02:56:13.4072080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/_decorator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes 2025-01-24T02:56:13.4073840Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-01-24T02:56:13.4074490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/dataframe/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-01-24T02:56:13.4075790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/dataframe/datapipes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-01-24T02:56:13.4077470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/dataframe/dataframe_wrapper.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-01-24T02:56:13.4078330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/dataframe/structures.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-01-24T02:56:13.4079470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/dataframe/dataframes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-01-24T02:56:13.4082060Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2025-01-24T02:56:13.4082690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter/fileopener.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2025-01-24T02:56:13.4084260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter/callable.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2025-01-24T02:56:13.4085300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter/sharding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2025-01-24T02:56:13.4086830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter/grouping.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2025-01-24T02:56:13.4089050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2025-01-24T02:56:13.4090020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter/selecting.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2025-01-24T02:56:13.4092140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter/combining.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2025-01-24T02:56:13.4093380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter/filelister.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2025-01-24T02:56:13.4094990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2025-01-24T02:56:13.4095860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter/combinatorics.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2025-01-24T02:56:13.4097420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter/streamreader.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2025-01-24T02:56:13.4098370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/iter/routeddecoder.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2025-01-24T02:56:13.4099910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/_typing.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes 2025-01-24T02:56:13.4102200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/_hook_iterator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes 2025-01-24T02:56:13.4103240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/datapipe.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes 2025-01-24T02:56:13.4104800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes 2025-01-24T02:56:13.4106450Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/utils 2025-01-24T02:56:13.4107080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/utils/decoder.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/utils 2025-01-24T02:56:13.4108610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/utils/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/utils 2025-01-24T02:56:13.4109240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/utils/common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/utils 2025-01-24T02:56:13.4112030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/utils/snapshot.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/utils 2025-01-24T02:56:13.4112860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/datapipe.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes 2025-01-24T02:56:13.4114760Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/map 2025-01-24T02:56:13.4115380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/map/callable.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/map 2025-01-24T02:56:13.4116650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/map/grouping.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/map 2025-01-24T02:56:13.4117480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/map/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/map 2025-01-24T02:56:13.4119100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/map/combining.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/map 2025-01-24T02:56:13.4119960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/map/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/map 2025-01-24T02:56:13.4121480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/map/combinatorics.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/map 2025-01-24T02:56:13.4122370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/data/datapipes/gen_pyi.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes 2025-01-24T02:56:13.4124590Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/_strobelight 2025-01-24T02:56:13.4125290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_strobelight/cli_function_profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_strobelight 2025-01-24T02:56:13.4126980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_strobelight/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_strobelight 2025-01-24T02:56:13.4127650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/_ordered_set.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4129300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/weak.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4130470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/utils/mobile_optimizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2025-01-24T02:56:13.4132150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/overrides.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.4133900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_namedtensor_internals.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.4135250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/return_types.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.4137490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/types.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.4138820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_linalg_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.4139640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/__config__.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.4141070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.4143110Z creating build/bdist.macosx-11.1-arm64/wheel/torch/contrib 2025-01-24T02:56:13.4143700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/contrib/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/contrib 2025-01-24T02:56:13.4145080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/contrib/_tensorboard_vis.py -> build/bdist.macosx-11.1-arm64/wheel/torch/contrib 2025-01-24T02:56:13.4145880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/random.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.4289660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/hub.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.4291780Z creating build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2025-01-24T02:56:13.4292700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/observer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2025-01-24T02:56:13.4294210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fuse_modules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2025-01-24T02:56:13.4295110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/quantization_mappings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2025-01-24T02:56:13.4296600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/quantize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2025-01-24T02:56:13.4297920Z creating build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2025-01-24T02:56:13.4298550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx/graph_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2025-01-24T02:56:13.4300080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx/fusion_patterns.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2025-01-24T02:56:13.4301310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx/_equalize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2025-01-24T02:56:13.4302840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx/quantization_types.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2025-01-24T02:56:13.4303500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx/convert.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2025-01-24T02:56:13.4304970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2025-01-24T02:56:13.4305910Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2025-01-24T02:56:13.4306950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx/pattern_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2025-01-24T02:56:13.4308450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx/fuse.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2025-01-24T02:56:13.4309330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx/match_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2025-01-24T02:56:13.4310380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx/prepare.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2025-01-24T02:56:13.4311960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fx/quantization_patterns.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2025-01-24T02:56:13.4312660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/_numeric_suite.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2025-01-24T02:56:13.4314100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fake_quantize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2025-01-24T02:56:13.4315020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/qconfig.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2025-01-24T02:56:13.4316380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2025-01-24T02:56:13.4317200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/_quantized_conversions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2025-01-24T02:56:13.4318700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/stubs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2025-01-24T02:56:13.4319480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2025-01-24T02:56:13.4321080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/fuser_method_mappings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2025-01-24T02:56:13.4321960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/quantize_jit.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2025-01-24T02:56:13.4323410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/quant_type.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2025-01-24T02:56:13.4324420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/quantize_fx.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2025-01-24T02:56:13.4325350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/quantization/_numeric_suite_fx.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2025-01-24T02:56:13.4326710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_tensor_str.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.4328100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_sources.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.4329510Z creating build/bdist.macosx-11.1-arm64/wheel/torch/special 2025-01-24T02:56:13.4330090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/special/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/special 2025-01-24T02:56:13.4332090Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4332560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_profiler.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4333720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_onnx.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4335210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_distributed_c10d.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4336530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_autograd.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4337450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_monitor.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4338830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_itt.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4339740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_lazy.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4340900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/__init__.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4344280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_nvtx.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4345130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_cpu.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4346500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_nn.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4347970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_cusparselt.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4348710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_instruction_counter.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4350220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_lazy_ts_backend.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4351520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_functorch.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4352300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_VariableFunctions.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4359260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_distributed_rpc.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4360590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_verbose.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4361360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_aoti.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4362750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_functions.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4364200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_distributed_rpc_testing.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4364830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_cudnn.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4366630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_distributed_autograd.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4367230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C/_export.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2025-01-24T02:56:13.4368830Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing 2025-01-24T02:56:13.4370140Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4371050Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/generated 2025-01-24T02:56:13.4371730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/generated/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/generated 2025-01-24T02:56:13.4372800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/generated/annotated_fn_args.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/generated 2025-01-24T02:56:13.4377000Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo 2025-01-24T02:56:13.4377610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo 2025-01-24T02:56:13.4383340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/core.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo 2025-01-24T02:56:13.4384150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo 2025-01-24T02:56:13.4384760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/refs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo 2025-01-24T02:56:13.4385140Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:13.4385810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/definitions/signal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:13.4386600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/definitions/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:13.4388160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/definitions/_masked.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:13.4389720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/definitions/linalg.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:13.4391290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/definitions/sparse.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:13.4392880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/definitions/fft.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:13.4393940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/definitions/special.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:13.4395620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/opinfo/definitions/nested.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-01-24T02:56:13.4397180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/common_dtype.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4398120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/common_pruning.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4401010Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/test_module 2025-01-24T02:56:13.4401680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/test_module/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/test_module 2025-01-24T02:56:13.4403230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/test_module/future_div.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/test_module 2025-01-24T02:56:13.4403980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/test_module/no_future_div.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/test_module 2025-01-24T02:56:13.4405440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/fake_config_module3.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4406290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/hop_db.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4407980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/triton_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4410330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/static_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4411100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/subclasses.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4412710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/common_nn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4414790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/custom_op_db.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4415690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/fake_config_module2.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4416870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/autocast_test_lists.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4418410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/common_fsdp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4424110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/two_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4425610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/torchbind_impls.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4432360Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2025-01-24T02:56:13.4433110Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_tensor 2025-01-24T02:56:13.4434100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/_tensor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_tensor 2025-01-24T02:56:13.4435150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/_tensor/common_dtensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_tensor 2025-01-24T02:56:13.4436850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2025-01-24T02:56:13.4440070Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/nn 2025-01-24T02:56:13.4440750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/nn/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/nn 2025-01-24T02:56:13.4442140Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/nn/api 2025-01-24T02:56:13.4442820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/nn/api/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/nn/api 2025-01-24T02:56:13.4443960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/nn/api/remote_module_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/nn/api 2025-01-24T02:56:13.4609370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/fake_pg.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2025-01-24T02:56:13.4610280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2025-01-24T02:56:13.4611860Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_shard 2025-01-24T02:56:13.4612610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/_shard/test_common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_shard 2025-01-24T02:56:13.4613930Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-01-24T02:56:13.4614730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-01-24T02:56:13.4615990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-01-24T02:56:13.4617190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-01-24T02:56:13.4618250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/_shard/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_shard 2025-01-24T02:56:13.4619830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/checkpoint_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2025-01-24T02:56:13.4620670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/distributed_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2025-01-24T02:56:13.4622220Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:13.4623010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:13.4624390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:13.4626820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:13.4627630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/dist_autograd_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:13.4629780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:13.4630680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:13.4632310Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-01-24T02:56:13.4633030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/jit/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-01-24T02:56:13.4633880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-01-24T02:56:13.4634980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/jit/rpc_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-01-24T02:56:13.4636750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-01-24T02:56:13.4637810Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-01-24T02:56:13.4638700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/examples/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-01-24T02:56:13.4639790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-01-24T02:56:13.4641100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-01-24T02:56:13.4642180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/rpc_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:13.4644780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc/dist_optimizer_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-01-24T02:56:13.4645800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/distributed_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2025-01-24T02:56:13.4649520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/multi_threaded_pg.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2025-01-24T02:56:13.4650860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/common_state_dict.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2025-01-24T02:56:13.4652530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/distributed/rpc_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2025-01-24T02:56:13.4653730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/common_optimizers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4655560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/common_device_type.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4657030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/autograd_function_db.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4658540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/common_mkldnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4659240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/inductor_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4660750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/common_distributed.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4662210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4663470Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/optests 2025-01-24T02:56:13.4664050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/optests/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/optests 2025-01-24T02:56:13.4665190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/optests/fake_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/optests 2025-01-24T02:56:13.4666720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/optests/aot_autograd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/optests 2025-01-24T02:56:13.4667590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/optests/make_fx.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/optests 2025-01-24T02:56:13.4669190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/optests/generate_tests.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/optests 2025-01-24T02:56:13.4670080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/optests/autograd_registration.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/optests 2025-01-24T02:56:13.4671660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/common_methods_invocations.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4678780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/custom_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4680070Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/codegen 2025-01-24T02:56:13.4680660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/codegen/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/codegen 2025-01-24T02:56:13.4682100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/logging_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4683040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/hypothesis_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4685570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/common_cuda.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4687880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/common_quantization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4689590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/common_modules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4691860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/common_jit.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4694010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/jit_metaprogramming_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4695620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/dynamo_test_failures.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4696560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/check_kernel_launches.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4697990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/common_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4700420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/quantization_torch_package_models.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4701730Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/data 2025-01-24T02:56:13.4702350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/data/network1.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/data 2025-01-24T02:56:13.4703920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/data/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/data 2025-01-24T02:56:13.4704670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/data/network2.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/data 2025-01-24T02:56:13.4706140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/common_quantized.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4707130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/common_dist_composable.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4708460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/common_subclass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4710010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/composite_compliance.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4710990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/logging_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4713130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/dist_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4713960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/fake_config_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4715590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_internal/jit_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2025-01-24T02:56:13.4717120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_creation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing 2025-01-24T02:56:13.4718000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing 2025-01-24T02:56:13.4719460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_comparison.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing 2025-01-24T02:56:13.4721350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/testing/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing 2025-01-24T02:56:13.4799310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_vmap_internals.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.4801030Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_library 2025-01-24T02:56:13.4801590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_library/triton.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_library 2025-01-24T02:56:13.4803130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_library/infer_schema.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_library 2025-01-24T02:56:13.4804040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_library/simple_registry.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_library 2025-01-24T02:56:13.4805540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_library/custom_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_library 2025-01-24T02:56:13.4807190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_library/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_library 2025-01-24T02:56:13.4807940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_library/fake_impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_library 2025-01-24T02:56:13.4809330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_library/autograd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_library 2025-01-24T02:56:13.4810740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_library/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_library 2025-01-24T02:56:13.4812150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_library/fake_class_registry.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_library 2025-01-24T02:56:13.4814300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/functional.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.4815940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_lowrank.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.4817220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_appdirs.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.4818870Z creating build/bdist.macosx-11.1-arm64/wheel/torch/accelerator 2025-01-24T02:56:13.4819440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/accelerator/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/accelerator 2025-01-24T02:56:13.4820950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/accelerator/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/accelerator 2025-01-24T02:56:13.4822390Z creating build/bdist.macosx-11.1-arm64/wheel/torch/amp 2025-01-24T02:56:13.4822980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/amp/autocast_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/amp 2025-01-24T02:56:13.4824860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/amp/grad_scaler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/amp 2025-01-24T02:56:13.4825760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/amp/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/amp 2025-01-24T02:56:13.4827400Z creating build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4827930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_ir_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4829490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_monkeytype_config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4831010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_decompositions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4831680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_recursive.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4833210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_logging.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4834570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_serialization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4835350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/quantized.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4836930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_script.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4838360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_script.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4839150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_shape_functions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4840930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_decomposition_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4841630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_freeze.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4843140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_pickle.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4843960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_check.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4845580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/unsupported_tensor_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4846260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/frontend.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4847920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/supported_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4848780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4854360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_fuser.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4855070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_builtins.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4855530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_dataclass_impls.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4855970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_trace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4856180Z creating build/bdist.macosx-11.1-arm64/wheel/torch/jit/_passes 2025-01-24T02:56:13.4856690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_passes/_property_propagation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit/_passes 2025-01-24T02:56:13.4857320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_passes/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit/_passes 2025-01-24T02:56:13.4858110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/generate_bytecode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4859620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_state.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4860840Z creating build/bdist.macosx-11.1-arm64/wheel/torch/jit/mobile 2025-01-24T02:56:13.4861380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/mobile/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit/mobile 2025-01-24T02:56:13.4862800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_async.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4864120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/annotations.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4865000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/jit/_await.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2025-01-24T02:56:13.4866760Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4867400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/cache_size.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4868920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/callback.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4869720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/comptime.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4872220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/logging.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4873810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/_trace_wrapped_higher_order_op.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4874380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4875880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4877200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/guards.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4878980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/test_minifier_common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4879830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/create_parameter_op.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4881190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/graph_region_tracker.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4883510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/device_interface.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4885960Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2025-01-24T02:56:13.4886510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends/registry.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2025-01-24T02:56:13.4888130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2025-01-24T02:56:13.4888840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends/debugging.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2025-01-24T02:56:13.4891350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends/distributed.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2025-01-24T02:56:13.4892750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends/common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2025-01-24T02:56:13.4893510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends/inductor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2025-01-24T02:56:13.4895190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends/onnxrt.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2025-01-24T02:56:13.4896760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends/tvm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2025-01-24T02:56:13.4897650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends/cudagraphs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2025-01-24T02:56:13.4899180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends/tensorrt.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2025-01-24T02:56:13.4900100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/backends/torchxla.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2025-01-24T02:56:13.4901500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4903000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/mutation_guard.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4903640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/types.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4905100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/metrics_context.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4906620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/bytecode_analysis.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4907350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/tensor_version_op.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4908810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/external_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4909830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/test_case.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4910790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/distributed.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4912280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/resume_execution.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4913510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/output_graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4915130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/compiled_autograd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4916580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/exc.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.4917930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5027520Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5028070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/functions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5092280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/iter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5093780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/misc.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5101720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/lists.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5103200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/script_object.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5105630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/torch_function.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5107120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5107890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/user_defined.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5109700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/nn_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5111160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/builder.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5112890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5114550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/higher_order_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5156170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/sdpa.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5157820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/distributed.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5159810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/optimizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5162060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/builtin.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5163780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/constant.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5164650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/lazy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5166150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/torch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5167580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/ctx_manager.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5169020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/dicts.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5170450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/variables/base.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2025-01-24T02:56:13.5171890Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/repro 2025-01-24T02:56:13.5172420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/repro/after_dynamo.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/repro 2025-01-24T02:56:13.5174060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/repro/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/repro 2025-01-24T02:56:13.5174780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/repro/after_aot.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/repro 2025-01-24T02:56:13.5176470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/repro/aoti.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/repro 2025-01-24T02:56:13.5177890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/replay_record.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5178580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/side_effects.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5180520Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/polyfills 2025-01-24T02:56:13.5181090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills/functools.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/polyfills 2025-01-24T02:56:13.5182630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills/builtins.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/polyfills 2025-01-24T02:56:13.5183470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills/operator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/polyfills 2025-01-24T02:56:13.5185120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills/os.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/polyfills 2025-01-24T02:56:13.5185840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/polyfills 2025-01-24T02:56:13.5187400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills/loader.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/polyfills 2025-01-24T02:56:13.5188340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills/sys.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/polyfills 2025-01-24T02:56:13.5190000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills/pytree.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/polyfills 2025-01-24T02:56:13.5192290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/polyfills/itertools.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/polyfills 2025-01-24T02:56:13.5193050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/trace_rules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5195300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/bytecode_transformation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5196770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/convert_frame.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5198040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/funcname_cache.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5199540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/testing.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5201620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/pgo.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5203000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5203950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/symbolic_convert.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5230160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/codegen.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5231900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/source.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5250440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/eval_frame.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5252120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/code_context.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5253030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/graph_deduplication.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5255760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/current_scope_id.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5257290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/debug_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5258270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_dynamo/decorators.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2025-01-24T02:56:13.5266770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_environment.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.5268370Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2025-01-24T02:56:13.5286410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy/metrics.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2025-01-24T02:56:13.5287760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy/config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2025-01-24T02:56:13.5295500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2025-01-24T02:56:13.5297000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy/tensor_factory_functions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2025-01-24T02:56:13.5309060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy/debug.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2025-01-24T02:56:13.5309950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy/extract_compiled_graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2025-01-24T02:56:13.5311400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy/ir_cache.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2025-01-24T02:56:13.5326330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy/ts_backend.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2025-01-24T02:56:13.5327250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy/computation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2025-01-24T02:56:13.5328930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy/closure.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2025-01-24T02:56:13.5330430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_lazy/device_context.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2025-01-24T02:56:13.5331300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/storage.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:13.5333320Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao 2025-01-24T02:56:13.5334120Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn 2025-01-24T02:56:13.5344190Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat 2025-01-24T02:56:13.5345150Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/dynamic 2025-01-24T02:56:13.5345860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/dynamic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/dynamic 2025-01-24T02:56:13.5347590Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2025-01-24T02:56:13.5348270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/dynamic/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2025-01-24T02:56:13.5352980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/dynamic/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2025-01-24T02:56:13.5353830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat 2025-01-24T02:56:13.5371160Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/modules 2025-01-24T02:56:13.5371790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/modules 2025-01-24T02:56:13.5372970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/modules 2025-01-24T02:56:13.5375360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/modules 2025-01-24T02:56:13.5376250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/qat/modules/embedding_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/modules 2025-01-24T02:56:13.5383230Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized 2025-01-24T02:56:13.5384170Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/dynamic 2025-01-24T02:56:13.5399980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/dynamic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/dynamic 2025-01-24T02:56:13.5401560Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-01-24T02:56:13.5402260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/dynamic/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-01-24T02:56:13.5404730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-01-24T02:56:13.5405690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/dynamic/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-01-24T02:56:13.5407350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/dynamic/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-01-24T02:56:13.5409630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized 2025-01-24T02:56:13.5410560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/functional.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized 2025-01-24T02:56:13.5423020Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2025-01-24T02:56:13.5423660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules/batchnorm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2025-01-24T02:56:13.5433070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules/functional_modules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2025-01-24T02:56:13.5434020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2025-01-24T02:56:13.5436990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2025-01-24T02:56:13.5437800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules/activation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2025-01-24T02:56:13.5439340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2025-01-24T02:56:13.5443180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules/dropout.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2025-01-24T02:56:13.5443990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2025-01-24T02:56:13.5456650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules/normalization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2025-01-24T02:56:13.5469210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2025-01-24T02:56:13.5470120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/modules/embedding_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2025-01-24T02:56:13.5477020Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference 2025-01-24T02:56:13.5477710Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/reference/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference 2025-01-24T02:56:13.5478010Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-01-24T02:56:13.5478720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/reference/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-01-24T02:56:13.5479390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/reference/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-01-24T02:56:13.5480070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/reference/modules/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-01-24T02:56:13.5480780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/reference/modules/sparse.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-01-24T02:56:13.5481770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/reference/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-01-24T02:56:13.5484320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantized/reference/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-01-24T02:56:13.5485640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn 2025-01-24T02:56:13.5486860Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantizable 2025-01-24T02:56:13.5487420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantizable/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantizable 2025-01-24T02:56:13.5489020Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantizable/modules 2025-01-24T02:56:13.5489630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantizable/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantizable/modules 2025-01-24T02:56:13.5565440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantizable/modules/activation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantizable/modules 2025-01-24T02:56:13.5567060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/quantizable/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantizable/modules 2025-01-24T02:56:13.5568450Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic 2025-01-24T02:56:13.5569880Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/qat 2025-01-24T02:56:13.5570540Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/qat/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/qat 2025-01-24T02:56:13.7883220Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-01-24T02:56:13.7890170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/qat/modules/conv_fused.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-01-24T02:56:13.7900020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/qat/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-01-24T02:56:13.7925510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/qat/modules/linear_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-01-24T02:56:13.7934320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/qat/modules/linear_fused.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-01-24T02:56:13.7939670Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized 2025-01-24T02:56:13.7946620Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic 2025-01-24T02:56:13.7955530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/dynamic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic 2025-01-24T02:56:13.7960110Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-01-24T02:56:13.7965590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-01-24T02:56:13.7972650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-01-24T02:56:13.7978930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized 2025-01-24T02:56:13.7983010Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-01-24T02:56:13.7987510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/modules/bn_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-01-24T02:56:13.7993660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-01-24T02:56:13.7999790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/modules/conv_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-01-24T02:56:13.8007320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/modules/linear_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-01-24T02:56:13.8013740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/quantized/modules/conv_add.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-01-24T02:56:13.8019620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic 2025-01-24T02:56:13.8026230Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/modules 2025-01-24T02:56:13.8029980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/modules/fused.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/modules 2025-01-24T02:56:13.8035270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/intrinsic/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/modules 2025-01-24T02:56:13.8041330Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse 2025-01-24T02:56:13.8045770Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse/quantized 2025-01-24T02:56:13.8049350Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2025-01-24T02:56:13.8053040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/sparse/quantized/dynamic/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2025-01-24T02:56:13.8115330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/sparse/quantized/dynamic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2025-01-24T02:56:13.8116690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/sparse/quantized/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse/quantized 2025-01-24T02:56:13.8118040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/sparse/quantized/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse/quantized 2025-01-24T02:56:13.8119350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/sparse/quantized/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse/quantized 2025-01-24T02:56:13.8120560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/nn/sparse/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse 2025-01-24T02:56:13.8122350Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns 2025-01-24T02:56:13.8123080Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2025-01-24T02:56:13.8124020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx/graph_passes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2025-01-24T02:56:13.8125970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx/weight_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2025-01-24T02:56:13.8127150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx/graph_matcher.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2025-01-24T02:56:13.8128330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2025-01-24T02:56:13.8129430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2025-01-24T02:56:13.8130680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx/pattern_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2025-01-24T02:56:13.8131870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx/ns_types.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2025-01-24T02:56:13.8133060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx/n_shadows_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2025-01-24T02:56:13.8135010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx/mappings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2025-01-24T02:56:13.8136160Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/fx/qconfig_multi_mapping.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2025-01-24T02:56:13.8137380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/_numeric_suite.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns 2025-01-24T02:56:13.8139210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns 2025-01-24T02:56:13.8140150Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/ns/_numeric_suite_fx.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns 2025-01-24T02:56:13.8141480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao 2025-01-24T02:56:13.8143400Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8150920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/observer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8152040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fuse_modules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8153260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/_learnable_fake_quantize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8154140Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2025-01-24T02:56:13.8155190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config/_common_operator_config_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2025-01-24T02:56:13.8156560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config/qnnpack.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2025-01-24T02:56:13.8157900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config/fbgemm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2025-01-24T02:56:13.8159180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2025-01-24T02:56:13.8160470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config/native.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2025-01-24T02:56:13.8161830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config/observation_type.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2025-01-24T02:56:13.8163170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config/onednn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2025-01-24T02:56:13.8164460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2025-01-24T02:56:13.8165770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config/_qnnpack_pt2e.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2025-01-24T02:56:13.8167090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config/executorch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2025-01-24T02:56:13.8168420Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config/backend_config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2025-01-24T02:56:13.8169720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config/x86.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2025-01-24T02:56:13.8170990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/backend_config/tensorrt.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2025-01-24T02:56:13.8172230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantization_mappings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8173390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/_correct_bias.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8174210Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2025-01-24T02:56:13.8175100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e/port_metadata_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2025-01-24T02:56:13.8176340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e/export_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2025-01-24T02:56:13.8177530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e/qat_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2025-01-24T02:56:13.8178760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e/duplicate_dq_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2025-01-24T02:56:13.8179990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e/graph_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2025-01-24T02:56:13.8181170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2025-01-24T02:56:13.8182060Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e/representation 2025-01-24T02:56:13.8183130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e/representation/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e/representation 2025-01-24T02:56:13.8184580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e/representation/rewrite.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e/representation 2025-01-24T02:56:13.8185860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2025-01-24T02:56:13.8187110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e/_affine_quantization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2025-01-24T02:56:13.8188300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e/prepare.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2025-01-24T02:56:13.8189510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/pt2e/_numeric_debugger.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2025-01-24T02:56:13.8190700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8191480Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8192350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/graph_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8193510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/lower_to_fbgemm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8194680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/_equalize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8195830Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/lower_to_qnnpack.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8196980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/convert.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8198120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8199110Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-01-24T02:56:13.8200230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/_model_report/detector.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-01-24T02:56:13.8201850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/_model_report/model_report_visualizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-01-24T02:56:13.8203440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/_model_report/model_report_observer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-01-24T02:56:13.8204810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/_model_report/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-01-24T02:56:13.8206190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/_model_report/model_report.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-01-24T02:56:13.8207470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/quantize_handler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8208630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8209810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/pattern_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8211210Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/_lower_to_native_backend.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8212610Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/custom_config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8213890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/fuse.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8215260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/qconfig_mapping_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8217810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/match_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8219010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/prepare.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8322350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/tracer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8323640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/_decomposed.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8324990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/fuse_handler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8326240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fx/lstm_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2025-01-24T02:56:13.8327520Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/_equalize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8328840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fake_quantize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8330180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/qconfig.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8331580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8332810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/qconfig_mapping.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8335340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/stubs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8336560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8338010Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/fuser_method_mappings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8339250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantize_jit.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8341770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantize_pt2e.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8342910Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2025-01-24T02:56:13.8343900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer/embedding_quantizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2025-01-24T02:56:13.8345280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer/x86_inductor_quantizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2025-01-24T02:56:13.8346640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer/xnnpack_quantizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2025-01-24T02:56:13.8349040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer/composable_quantizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2025-01-24T02:56:13.8350390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer/xpu_inductor_quantizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2025-01-24T02:56:13.8351750Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2025-01-24T02:56:13.8353030Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer/quantizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2025-01-24T02:56:13.8354290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2025-01-24T02:56:13.8355590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2025-01-24T02:56:13.8356810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quant_type.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8357930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/quantization/quantize_fx.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2025-01-24T02:56:13.8358740Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning 2025-01-24T02:56:13.8363870Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/sparsifier 2025-01-24T02:56:13.8364840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/sparsifier/weight_norm_sparsifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/sparsifier 2025-01-24T02:56:13.8366080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/sparsifier/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/sparsifier 2025-01-24T02:56:13.8367240Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/sparsifier/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/sparsifier 2025-01-24T02:56:13.8368510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/sparsifier 2025-01-24T02:56:13.8369790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/sparsifier/base_sparsifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/sparsifier 2025-01-24T02:56:13.8370680Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental 2025-01-24T02:56:13.8371330Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-01-24T02:56:13.8372080Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-01-24T02:56:13.8372880Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-01-24T02:56:13.8374290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-01-24T02:56:13.8376070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-01-24T02:56:13.8377850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-01-24T02:56:13.8379560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-01-24T02:56:13.8381100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-01-24T02:56:13.8382590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-01-24T02:56:13.8384060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-01-24T02:56:13.8385560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-01-24T02:56:13.8386590Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:13.8387530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/pruner/FPGM_pruner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:13.8388890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/pruner/saliency_pruner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:13.8446680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/pruner/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:13.8448200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:13.8449590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/pruner/prune_functions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:13.8450970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:13.8452330Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/pruner/parametrization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:13.8456720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/pruner/match_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-01-24T02:56:13.8458020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental 2025-01-24T02:56:13.8480520Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2025-01-24T02:56:13.8481810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2025-01-24T02:56:13.8483690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/activation_sparsifier/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2025-01-24T02:56:13.8484990Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2025-01-24T02:56:13.8495620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_scheduler/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2025-01-24T02:56:13.8497110Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2025-01-24T02:56:13.8498170Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/scheduler 2025-01-24T02:56:13.8499080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/scheduler/base_scheduler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/scheduler 2025-01-24T02:56:13.8506230Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/scheduler/cubic_scheduler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/scheduler 2025-01-24T02:56:13.8507530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/scheduler/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/scheduler 2025-01-24T02:56:13.8519800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/scheduler/lambda_scheduler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/scheduler 2025-01-24T02:56:13.8520930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning 2025-01-24T02:56:13.8535690Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/ao/pruning/_mappings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning 2025-01-24T02:56:13.8537070Z creating build/bdist.macosx-11.1-arm64/wheel/torch/mtia 2025-01-24T02:56:13.8549170Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/mtia/memory.py -> build/bdist.macosx-11.1-arm64/wheel/torch/mtia 2025-01-24T02:56:13.8550260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/mtia/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/mtia 2025-01-24T02:56:13.8554360Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/mtia/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/mtia 2025-01-24T02:56:13.8555750Z creating build/bdist.macosx-11.1-arm64/wheel/torch/lib 2025-01-24T02:56:13.8570080Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/lib/libtorch_python.dylib -> build/bdist.macosx-11.1-arm64/wheel/torch/lib 2025-01-24T02:56:13.8961630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/lib/libtorch.dylib -> build/bdist.macosx-11.1-arm64/wheel/torch/lib 2025-01-24T02:56:13.8962860Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/lib/libtorch_global_deps.dylib -> build/bdist.macosx-11.1-arm64/wheel/torch/lib 2025-01-24T02:56:13.8964280Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/lib/libomp.dylib -> build/bdist.macosx-11.1-arm64/wheel/torch/lib 2025-01-24T02:56:13.8969430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/lib/libtorch_cpu.dylib -> build/bdist.macosx-11.1-arm64/wheel/torch/lib 2025-01-24T02:56:14.9735000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/lib/libc10.dylib -> build/bdist.macosx-11.1-arm64/wheel/torch/lib 2025-01-24T02:56:14.9858060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/lib/libshm.dylib -> build/bdist.macosx-11.1-arm64/wheel/torch/lib 2025-01-24T02:56:14.9860190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_VF.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:14.9868270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_compile.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:14.9869770Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/py.typed -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:14.9870740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_lobpcg.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:14.9873060Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_refs 2025-01-24T02:56:14.9873980Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_refs/linalg 2025-01-24T02:56:14.9874870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_refs/linalg/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_refs/linalg 2025-01-24T02:56:14.9876820Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_refs/nn 2025-01-24T02:56:14.9877620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_refs/nn/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_refs/nn 2025-01-24T02:56:14.9879610Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_refs/nn/functional 2025-01-24T02:56:14.9880450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_refs/nn/functional/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_refs/nn/functional 2025-01-24T02:56:14.9881640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_refs/_conversions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_refs 2025-01-24T02:56:14.9883510Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_refs/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_refs 2025-01-24T02:56:14.9886340Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_refs/special 2025-01-24T02:56:14.9887190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_refs/special/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_refs/special 2025-01-24T02:56:14.9888810Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_refs/fft.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_refs 2025-01-24T02:56:14.9889770Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fft 2025-01-24T02:56:14.9890620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/fft/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fft 2025-01-24T02:56:14.9892500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/__future__.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:14.9894090Z creating build/bdist.macosx-11.1-arm64/wheel/torch/profiler 2025-01-24T02:56:14.9894870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/profiler/_memory_profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/profiler 2025-01-24T02:56:14.9896410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/profiler/itt.py -> build/bdist.macosx-11.1-arm64/wheel/torch/profiler 2025-01-24T02:56:14.9897970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/profiler/_pattern_matcher.py -> build/bdist.macosx-11.1-arm64/wheel/torch/profiler 2025-01-24T02:56:14.9899120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/profiler/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/profiler 2025-01-24T02:56:14.9900440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/profiler/profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/profiler 2025-01-24T02:56:14.9902630Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/profiler/python_tracer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/profiler 2025-01-24T02:56:14.9903800Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/profiler/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/profiler 2025-01-24T02:56:14.9906820Z creating build/bdist.macosx-11.1-arm64/wheel/torch/sparse 2025-01-24T02:56:14.9907590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/sparse/_semi_structured_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/sparse 2025-01-24T02:56:14.9909530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/sparse/_semi_structured_conversions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/sparse 2025-01-24T02:56:14.9912260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/sparse/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/sparse 2025-01-24T02:56:14.9913530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/sparse/semi_structured.py -> build/bdist.macosx-11.1-arm64/wheel/torch/sparse 2025-01-24T02:56:14.9914870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/sparse/_triton_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/sparse 2025-01-24T02:56:14.9916930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/sparse/_triton_ops_meta.py -> build/bdist.macosx-11.1-arm64/wheel/torch/sparse 2025-01-24T02:56:14.9920670Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_awaits 2025-01-24T02:56:14.9921370Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_awaits/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_awaits 2025-01-24T02:56:14.9922410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_guards.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:14.9924270Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_deploy.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:14.9925310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_python_dispatcher.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:14.9927040Z creating build/bdist.macosx-11.1-arm64/wheel/torch/export 2025-01-24T02:56:14.9927740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/export/_safeguard.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2025-01-24T02:56:14.9928970Z creating build/bdist.macosx-11.1-arm64/wheel/torch/export/experimental 2025-01-24T02:56:14.9929850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/export/experimental/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export/experimental 2025-01-24T02:56:14.9931140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/export/exported_program.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2025-01-24T02:56:14.9932400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/export/unflatten.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2025-01-24T02:56:14.9934300Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/export/custom_obj.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2025-01-24T02:56:14.9935300Z creating build/bdist.macosx-11.1-arm64/wheel/torch/export/passes 2025-01-24T02:56:14.9936120Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/export/passes/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export/passes 2025-01-24T02:56:14.9937400Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/export/_remove_effect_tokens_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2025-01-24T02:56:14.9938720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/export/_remove_auto_functionalized_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2025-01-24T02:56:14.9939900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/export/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2025-01-24T02:56:14.9941890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/export/_unlift.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2025-01-24T02:56:14.9944700Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/export/_trace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2025-01-24T02:56:14.9946140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/export/graph_signature.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2025-01-24T02:56:14.9947590Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/export/decomp_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2025-01-24T02:56:14.9948780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/export/_swap.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2025-01-24T02:56:14.9950180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/export/_draft_export.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2025-01-24T02:56:14.9953090Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/export/dynamic_shapes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2025-01-24T02:56:14.9954260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/export/_tree_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2025-01-24T02:56:14.9956030Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nested 2025-01-24T02:56:14.9956840Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nested/_internal 2025-01-24T02:56:14.9957730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nested/_internal/nested_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nested/_internal 2025-01-24T02:56:14.9959410Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nested/_internal/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nested/_internal 2025-01-24T02:56:14.9960480Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nested/_internal/ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nested/_internal 2025-01-24T02:56:15.0090780Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nested/_internal/sdpa.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nested/_internal 2025-01-24T02:56:15.0092350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nested/_internal/nested_int.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nested/_internal 2025-01-24T02:56:15.0093670Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/nested/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nested 2025-01-24T02:56:15.0094960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_classes.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:15.0096740Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_strobelight 2025-01-24T02:56:15.0097530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_strobelight/cli_function_profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_strobelight 2025-01-24T02:56:15.0098820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_strobelight/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_strobelight 2025-01-24T02:56:15.0099870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_strobelight/compile_time_profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_strobelight 2025-01-24T02:56:15.0100950Z creating build/bdist.macosx-11.1-arm64/wheel/torch/compiler 2025-01-24T02:56:15.0101940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/compiler/_cache.py -> build/bdist.macosx-11.1-arm64/wheel/torch/compiler 2025-01-24T02:56:15.0103290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/compiler/config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/compiler 2025-01-24T02:56:15.0104560Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/compiler/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/compiler 2025-01-24T02:56:15.0106230Z creating build/bdist.macosx-11.1-arm64/wheel/torch/signal 2025-01-24T02:56:15.0106920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/signal/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/signal 2025-01-24T02:56:15.0108600Z creating build/bdist.macosx-11.1-arm64/wheel/torch/signal/windows 2025-01-24T02:56:15.0109390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/signal/windows/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/signal/windows 2025-01-24T02:56:15.0110550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/signal/windows/windows.py -> build/bdist.macosx-11.1-arm64/wheel/torch/signal/windows 2025-01-24T02:56:15.0111950Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/serialization.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:15.0113850Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0114660Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/inverse_gamma.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0115760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/laplace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0121390Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/relaxed_bernoulli.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0122500Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/categorical.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0123620Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/transforms.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0124720Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/dirichlet.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0125760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/log_normal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0126870Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/transformed_distribution.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0127970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/geometric.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0129060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/weibull.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0130100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/studentT.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0131190Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/multivariate_normal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0132310Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/normal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0133350Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/poisson.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0134380Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/beta.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0135430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/kumaraswamy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0136490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/half_normal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0137580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/relaxed_categorical.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0138730Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/lowrank_multivariate_normal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0139840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/half_cauchy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0140890Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0141930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/lkj_cholesky.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0143000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/independent.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0144070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/multinomial.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0145130Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/exponential.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0146470Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/pareto.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0147640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/negative_binomial.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0148850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/cauchy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0150060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/von_mises.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0151260Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/distribution.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0154220Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/gumbel.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0155430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/constraint_registry.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0156570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0157820Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/kl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0158990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/mixture_same_family.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0160250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/continuous_bernoulli.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0161570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/fishersnedecor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0162920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/constraints.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0164100Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/uniform.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0165450Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/bernoulli.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0166650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/exp_family.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0167850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/logistic_normal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0169070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/one_hot_categorical.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0170320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/wishart.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0172960Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/gamma.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0173980Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/chi2.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0175000Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/distributions/binomial.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2025-01-24T02:56:15.0176830Z creating build/bdist.macosx-11.1-arm64/wheel/torch/package 2025-01-24T02:56:15.0177570Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/package_exporter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2025-01-24T02:56:15.0178840Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/file_structure_representation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2025-01-24T02:56:15.0180020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/_mock.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2025-01-24T02:56:15.0181180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/importer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2025-01-24T02:56:15.0182440Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/_stdlib.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2025-01-24T02:56:15.0183680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/_mangling.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2025-01-24T02:56:15.0185140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2025-01-24T02:56:15.0186250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/package_importer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2025-01-24T02:56:15.0187530Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/_package_unpickler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2025-01-24T02:56:15.0188640Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/glob_group.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2025-01-24T02:56:15.0189850Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/find_file_dependencies.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2025-01-24T02:56:15.0191040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/_package_pickler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2025-01-24T02:56:15.0193130Z creating build/bdist.macosx-11.1-arm64/wheel/torch/package/analyze 2025-01-24T02:56:15.0194040Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/analyze/trace_dependencies.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package/analyze 2025-01-24T02:56:15.0195340Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/analyze/find_first_use_of_broken_modules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package/analyze 2025-01-24T02:56:15.0196680Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/analyze/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package/analyze 2025-01-24T02:56:15.0197880Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/analyze/is_from_package.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package/analyze 2025-01-24T02:56:15.0198940Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/_importlib.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2025-01-24T02:56:15.0199970Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/_directory_reader.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2025-01-24T02:56:15.0201180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/package/_digraph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2025-01-24T02:56:15.0202180Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:15.0203990Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/_C.cpython-39-darwin.so -> build/bdist.macosx-11.1-arm64/wheel/torch 2025-01-24T02:56:15.0205660Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share 2025-01-24T02:56:15.0206450Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake 2025-01-24T02:56:15.0208010Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2 2025-01-24T02:56:15.0208900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Caffe2Config.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2 2025-01-24T02:56:15.0210140Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/FindSYCLToolkit.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2 2025-01-24T02:56:15.0211250Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-01-24T02:56:15.0212320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-01-24T02:56:15.0213760Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-01-24T02:56:15.0214850Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-01-24T02:56:15.0216200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-01-24T02:56:15.0218610Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-01-24T02:56:15.0219920Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-01-24T02:56:15.0221650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-01-24T02:56:15.0223490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-01-24T02:56:15.0229430Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-01-24T02:56:15.0231250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-01-24T02:56:15.0232930Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-01-24T02:56:15.0234600Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-01-24T02:56:15.0235690Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2025-01-24T02:56:15.0236650Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public/LoadHIP.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2025-01-24T02:56:15.0238050Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public/mkldnn.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2025-01-24T02:56:15.0239320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public/glog.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2025-01-24T02:56:15.0240580Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public/utils.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2025-01-24T02:56:15.0241900Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public/protobuf.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2025-01-24T02:56:15.0243200Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public/mkl.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2025-01-24T02:56:15.0244460Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public/gflags.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2025-01-24T02:56:15.0245740Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public/cuda.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2025-01-24T02:56:15.0247020Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/public/xpu.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2025-01-24T02:56:15.0248250Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/FindCUSPARSELT.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2 2025-01-24T02:56:15.0249550Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/FindCUDAToolkit.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2 2025-01-24T02:56:15.0250790Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Caffe2Targets.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2 2025-01-24T02:56:15.0252070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/Caffe2Targets-release.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2 2025-01-24T02:56:15.0253320Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Caffe2/FindCUDSS.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2 2025-01-24T02:56:15.0254200Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Torch 2025-01-24T02:56:15.0255070Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Torch/TorchConfig.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Torch 2025-01-24T02:56:15.0256290Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/Torch/TorchConfigVersion.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Torch 2025-01-24T02:56:15.0257160Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/ATen 2025-01-24T02:56:15.0258060Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/share/cmake/ATen/ATenConfig.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/ATen 2025-01-24T02:56:15.0258810Z creating build/bdist.macosx-11.1-arm64/wheel/torch/func 2025-01-24T02:56:15.0259490Z copying build/lib.macosx-11.1-arm64-cpython-39/torch/func/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/func 2025-01-24T02:56:15.0260140Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen 2025-01-24T02:56:15.0260850Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/native_function_generation.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2025-01-24T02:56:15.0261570Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/selective_build 2025-01-24T02:56:15.0262410Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/selective_build/selector.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/selective_build 2025-01-24T02:56:15.0263530Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/selective_build/operator.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/selective_build 2025-01-24T02:56:15.0264630Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/selective_build/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/selective_build 2025-01-24T02:56:15.0265640Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/gen_vmap_plumbing.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2025-01-24T02:56:15.0266530Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/gen.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2025-01-24T02:56:15.0268440Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged 2025-01-24T02:56:15.0269250Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0270180Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/load_derivatives.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0271600Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/build.bzl -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0273100Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/gen_autograd.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0274340Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/gen_python_functions.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0275610Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/gen_autograd_functions.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0277010Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/gen_variable_factories.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0278430Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0279610Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/gen_variable_type.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0280910Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/README.md -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0282170Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/context.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0283540Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/gen_inplace_or_view_type.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0284900Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/deprecated.yaml -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0286240Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/BUILD.bazel -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0287730Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0288990Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/python_return_types.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0290780Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/python_enum_tag.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0292190Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/python_nn_functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0293620Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/python_functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0295030Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/python_fft_functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0296460Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/python_sparse_functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0297900Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/python_linalg_functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0299290Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/ViewFuncs.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0300660Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/python_return_types.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0302080Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0303480Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/TraceType.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0304850Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/python_variable_methods.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0333820Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/ViewFuncs.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0335200Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/python_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0336620Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/python_nested_functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0338030Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/VariableType.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0339470Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/annotated_fn_args.py.in -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0340860Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/VariableType.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0342200Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/Functions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0343630Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/python_special_functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0345080Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/variable_factories.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0346530Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/python_torch_functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0347910Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/templates/Functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2025-01-24T02:56:15.0349200Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/gen_trace_type.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0350420Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/gen_annotated_fn_args.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0351750Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/derivatives.yaml -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0352980Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/autograd/gen_view_funcs.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2025-01-24T02:56:15.0353910Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen 2025-01-24T02:56:15.0354780Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/native 2025-01-24T02:56:15.0355750Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/native/native_functions.yaml -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/native 2025-01-24T02:56:15.0360450Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/native/tags.yaml -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/native 2025-01-24T02:56:15.0361670Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0362710Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0368900Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/TensorBody.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0370350Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/UnboxingFunctions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0371770Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/DispatchKeyFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0373150Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/RedispatchFunctions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0374520Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/Operators.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0375900Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/NativeMetaFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0377230Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/NativeFunction.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0378610Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/Operator.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0380000Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/RegistrationDeclarations.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0381430Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/UfuncCPU.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0382740Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/UfuncCUDA.cu -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0384100Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0385560Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0387100Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/RedispatchFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0388500Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/aten_interned_strings.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0389840Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/MethodOperators.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0391270Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0392660Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/Operators.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0393980Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/ATenOpList.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0395360Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0396770Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0398200Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/TensorMethods.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0399620Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0401050Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/DispatchKeyFunction.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0402440Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/UnboxingFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0403900Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0405270Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/Functions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0406590Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/NativeFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0408010Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0409430Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0410760Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/enum_tag.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0412030Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/Functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0413370Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/RegisterSchema.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0414730Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/LazyNonNativeIr.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0416050Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/Function.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0417350Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/FunctionalInverses.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0418740Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/NativeMetaFunction.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0420060Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/packaged/ATen/templates/LazyIr.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2025-01-24T02:56:15.0420940Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/static_runtime 2025-01-24T02:56:15.0421770Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/static_runtime/config.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/static_runtime 2025-01-24T02:56:15.0422840Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/static_runtime/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/static_runtime 2025-01-24T02:56:15.0423930Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/static_runtime/generator.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/static_runtime 2025-01-24T02:56:15.0425070Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/static_runtime/gen_static_runtime_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/static_runtime 2025-01-24T02:56:15.0426160Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/gen_executorch.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2025-01-24T02:56:15.0427040Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/local.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2025-01-24T02:56:15.0427970Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/gen_functionalization_type.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2025-01-24T02:56:15.0428930Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/code_template.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2025-01-24T02:56:15.0429650Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/operator_versions 2025-01-24T02:56:15.0430550Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/operator_versions/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/operator_versions 2025-01-24T02:56:15.0431720Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/operator_versions/gen_mobile_upgraders_constant.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/operator_versions 2025-01-24T02:56:15.0432970Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/operator_versions/gen_mobile_upgraders.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/operator_versions 2025-01-24T02:56:15.0434030Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2025-01-24T02:56:15.0434900Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/yaml_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2025-01-24T02:56:15.0435850Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/gen_aoti_c_shim.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2025-01-24T02:56:15.0436740Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/model.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2025-01-24T02:56:15.0438610Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/gen_schema_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2025-01-24T02:56:15.0439760Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/context.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2025-01-24T02:56:15.0440730Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2025-01-24T02:56:15.0442650Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/dest 2025-01-24T02:56:15.0443390Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/dest/lazy_ts_lowering.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/dest 2025-01-24T02:56:15.0444490Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/dest/ufunc.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/dest 2025-01-24T02:56:15.0445860Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/dest/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/dest 2025-01-24T02:56:15.0447010Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/dest/native_functions.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/dest 2025-01-24T02:56:15.0448160Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/dest/lazy_ir.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/dest 2025-01-24T02:56:15.0449550Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/dest/register_dispatch_key.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/dest 2025-01-24T02:56:15.0451540Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2025-01-24T02:56:15.0452270Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/dispatcher.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2025-01-24T02:56:15.0453530Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/translate.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2025-01-24T02:56:15.0455400Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/api/types 2025-01-24T02:56:15.0456170Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/types/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api/types 2025-01-24T02:56:15.0457260Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/types/types.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api/types 2025-01-24T02:56:15.0458460Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/types/signatures.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api/types 2025-01-24T02:56:15.0461520Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/types/types_base.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api/types 2025-01-24T02:56:15.0462740Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/ufunc.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2025-01-24T02:56:15.0463830Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2025-01-24T02:56:15.0464860Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/native.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2025-01-24T02:56:15.0465880Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/cpp.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2025-01-24T02:56:15.0468830Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/unboxing.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2025-01-24T02:56:15.0469860Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/functionalization.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2025-01-24T02:56:15.0471060Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/autograd.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2025-01-24T02:56:15.0472940Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/structured.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2025-01-24T02:56:15.0473910Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/python.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2025-01-24T02:56:15.0475810Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/lazy.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2025-01-24T02:56:15.0476800Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/api/meta.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2025-01-24T02:56:15.0477930Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/gen_backend_stubs.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2025-01-24T02:56:15.0479740Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch 2025-01-24T02:56:15.0480540Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch 2025-01-24T02:56:15.0481680Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/model.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch 2025-01-24T02:56:15.0487260Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api 2025-01-24T02:56:15.0487810Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api/types 2025-01-24T02:56:15.0488710Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/api/types/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api/types 2025-01-24T02:56:15.0489890Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/api/types/types.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api/types 2025-01-24T02:56:15.0491120Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/api/types/signatures.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api/types 2025-01-24T02:56:15.0492300Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/api/custom_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api 2025-01-24T02:56:15.0493380Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/api/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api 2025-01-24T02:56:15.0494470Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/api/unboxing.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api 2025-01-24T02:56:15.0495560Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/api/et_cpp.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api 2025-01-24T02:56:15.0496660Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/executorch/parse.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch 2025-01-24T02:56:15.0497400Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/aoti 2025-01-24T02:56:15.0498090Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/aoti/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/aoti 2025-01-24T02:56:15.0499060Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/aoti/fallback_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/aoti 2025-01-24T02:56:15.0499990Z copying build/lib.macosx-11.1-arm64-cpython-39/torchgen/gen_lazy_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2025-01-24T02:56:15.0500870Z creating build/bdist.macosx-11.1-arm64/wheel/functorch 2025-01-24T02:56:15.0502120Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/experimental 2025-01-24T02:56:15.0502960Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/experimental/control_flow.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/experimental 2025-01-24T02:56:15.0504180Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/experimental/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/experimental 2025-01-24T02:56:15.0505410Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/experimental/ops.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/experimental 2025-01-24T02:56:15.0507030Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/_src 2025-01-24T02:56:15.0507590Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/_src/make_functional 2025-01-24T02:56:15.0508600Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/_src/make_functional/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/_src/make_functional 2025-01-24T02:56:15.0509790Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/_src/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/_src 2025-01-24T02:56:15.0510940Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/_src/eager_transforms 2025-01-24T02:56:15.0511850Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/_src/eager_transforms/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/_src/eager_transforms 2025-01-24T02:56:15.0513020Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/_src/aot_autograd 2025-01-24T02:56:15.0513880Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/_src/aot_autograd/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/_src/aot_autograd 2025-01-24T02:56:15.0515010Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/_src/vmap 2025-01-24T02:56:15.0515800Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/_src/vmap/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/_src/vmap 2025-01-24T02:56:15.0517070Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2025-01-24T02:56:15.0517930Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/dim/magic_trace.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2025-01-24T02:56:15.0519120Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/dim/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2025-01-24T02:56:15.0520340Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/dim/delayed_mul_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2025-01-24T02:56:15.0521460Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/dim/op_properties.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2025-01-24T02:56:15.0522770Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/dim/batch_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2025-01-24T02:56:15.0523970Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/dim/wrap_type.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2025-01-24T02:56:15.0525130Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/dim/reference.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2025-01-24T02:56:15.0526460Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/dim/dim.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2025-01-24T02:56:15.0527640Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/dim/tree_map.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2025-01-24T02:56:15.0528740Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch 2025-01-24T02:56:15.0530440Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/compile 2025-01-24T02:56:15.0531180Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/compile/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/compile 2025-01-24T02:56:15.0532430Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/einops 2025-01-24T02:56:15.0533380Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/einops/_parsing.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/einops 2025-01-24T02:56:15.0536390Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/einops/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/einops 2025-01-24T02:56:15.0537600Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/einops/rearrange.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/einops 2025-01-24T02:56:15.0650850Z copying build/lib.macosx-11.1-arm64-cpython-39/functorch/_C.cpython-39-darwin.so -> build/bdist.macosx-11.1-arm64/wheel/functorch 2025-01-24T02:56:15.0655210Z running install_egg_info 2025-01-24T02:56:15.0795620Z running egg_info 2025-01-24T02:56:15.0796020Z creating torch.egg-info 2025-01-24T02:56:15.0820420Z writing torch.egg-info/PKG-INFO 2025-01-24T02:56:15.1081720Z writing dependency_links to torch.egg-info/dependency_links.txt 2025-01-24T02:56:15.1082700Z writing entry points to torch.egg-info/entry_points.txt 2025-01-24T02:56:15.1086700Z writing requirements to torch.egg-info/requires.txt 2025-01-24T02:56:15.1088500Z writing top-level names to torch.egg-info/top_level.txt 2025-01-24T02:56:15.1089810Z writing manifest file 'torch.egg-info/SOURCES.txt' 2025-01-24T02:56:15.4237300Z reading manifest file 'torch.egg-info/SOURCES.txt' 2025-01-24T02:56:15.4237830Z reading manifest template 'MANIFEST.in' 2025-01-24T02:56:16.2223030Z warning: no files found matching '*.*' under directory 'ios' 2025-01-24T02:56:18.7289140Z warning: no files found matching '*.*' under directory 'modules' 2025-01-24T02:56:18.8082910Z warning: no previously-included files matching '*.o' found anywhere in distribution 2025-01-24T02:56:19.1759760Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2025-01-24T02:56:19.1760270Z adding license file 'LICENSE' 2025-01-24T02:56:19.1760530Z adding license file 'NOTICE' 2025-01-24T02:56:19.9336140Z writing manifest file 'torch.egg-info/SOURCES.txt' 2025-01-24T02:56:19.9613670Z Copying torch.egg-info to build/bdist.macosx-11.1-arm64/wheel/torch-2.7.0a0+gitd087145-py3.9.egg-info 2025-01-24T02:56:19.9799670Z running install_scripts 2025-01-24T02:56:20.0115750Z adding license file "LICENSE" (matched pattern "LICEN[CS]E*") 2025-01-24T02:56:20.0117120Z adding license file "NOTICE" (matched pattern "NOTICE*") 2025-01-24T02:56:20.0311250Z creating build/bdist.macosx-11.1-arm64/wheel/torch-2.7.0a0+gitd087145.dist-info/WHEEL 2025-01-24T02:56:20.0326460Z creating 'dist/torch-2.7.0a0+gitd087145-cp39-cp39-macosx_11_0_arm64.whl' and adding 'build/bdist.macosx-11.1-arm64/wheel' to it 2025-01-24T02:56:20.0465610Z adding 'functorch/_C.cpython-39-darwin.so' 2025-01-24T02:56:20.0468830Z adding 'functorch/__init__.py' 2025-01-24T02:56:20.0470210Z adding 'functorch/_src/__init__.py' 2025-01-24T02:56:20.0471630Z adding 'functorch/_src/aot_autograd/__init__.py' 2025-01-24T02:56:20.0472920Z adding 'functorch/_src/eager_transforms/__init__.py' 2025-01-24T02:56:20.0474210Z adding 'functorch/_src/make_functional/__init__.py' 2025-01-24T02:56:20.0475510Z adding 'functorch/_src/vmap/__init__.py' 2025-01-24T02:56:20.0476700Z adding 'functorch/compile/__init__.py' 2025-01-24T02:56:20.0478560Z adding 'functorch/dim/__init__.py' 2025-01-24T02:56:20.0479780Z adding 'functorch/dim/batch_tensor.py' 2025-01-24T02:56:20.0481170Z adding 'functorch/dim/delayed_mul_tensor.py' 2025-01-24T02:56:20.0482600Z adding 'functorch/dim/dim.py' 2025-01-24T02:56:20.0484050Z adding 'functorch/dim/magic_trace.py' 2025-01-24T02:56:20.0485810Z adding 'functorch/dim/op_properties.py' 2025-01-24T02:56:20.0490950Z adding 'functorch/dim/reference.py' 2025-01-24T02:56:20.0492160Z adding 'functorch/dim/tree_map.py' 2025-01-24T02:56:20.0493390Z adding 'functorch/dim/wrap_type.py' 2025-01-24T02:56:20.0494610Z adding 'functorch/einops/__init__.py' 2025-01-24T02:56:20.0497460Z adding 'functorch/einops/_parsing.py' 2025-01-24T02:56:20.0499710Z adding 'functorch/einops/rearrange.py' 2025-01-24T02:56:20.0501020Z adding 'functorch/experimental/__init__.py' 2025-01-24T02:56:20.0501740Z adding 'functorch/experimental/control_flow.py' 2025-01-24T02:56:20.0502950Z adding 'functorch/experimental/ops.py' 2025-01-24T02:56:20.0507410Z adding 'torch/_C.cpython-39-darwin.so' 2025-01-24T02:56:20.0508660Z adding 'torch/_VF.py' 2025-01-24T02:56:20.0662210Z adding 'torch/_VF.pyi' 2025-01-24T02:56:20.0669460Z adding 'torch/__config__.py' 2025-01-24T02:56:20.0671040Z adding 'torch/__future__.py' 2025-01-24T02:56:20.0694160Z adding 'torch/__init__.py' 2025-01-24T02:56:20.0699240Z adding 'torch/_appdirs.py' 2025-01-24T02:56:20.0700690Z adding 'torch/_classes.py' 2025-01-24T02:56:20.0701970Z adding 'torch/_compile.py' 2025-01-24T02:56:20.0705030Z adding 'torch/_custom_ops.py' 2025-01-24T02:56:20.0706450Z adding 'torch/_deploy.py' 2025-01-24T02:56:20.0707190Z adding 'torch/_environment.py' 2025-01-24T02:56:20.0715640Z adding 'torch/_guards.py' 2025-01-24T02:56:20.0728890Z adding 'torch/_jit_internal.py' 2025-01-24T02:56:20.0730860Z adding 'torch/_linalg_utils.py' 2025-01-24T02:56:20.0740320Z adding 'torch/_lobpcg.py' 2025-01-24T02:56:20.0743160Z adding 'torch/_lowrank.py' 2025-01-24T02:56:20.0788100Z adding 'torch/_meta_registrations.py' 2025-01-24T02:56:20.0791070Z adding 'torch/_namedtensor_internals.py' 2025-01-24T02:56:20.0804690Z adding 'torch/_ops.py' 2025-01-24T02:56:20.0807400Z adding 'torch/_python_dispatcher.py' 2025-01-24T02:56:20.0808690Z adding 'torch/_size_docs.py' 2025-01-24T02:56:20.0810550Z adding 'torch/_sources.py' 2025-01-24T02:56:20.0811920Z adding 'torch/_storage_docs.py' 2025-01-24T02:56:20.0813130Z adding 'torch/_streambase.py' 2025-01-24T02:56:20.0828100Z adding 'torch/_tensor.py' 2025-01-24T02:56:20.0855420Z adding 'torch/_tensor_docs.py' 2025-01-24T02:56:20.0861660Z adding 'torch/_tensor_str.py' 2025-01-24T02:56:20.0862910Z adding 'torch/_thread_safe_fork.py' 2025-01-24T02:56:20.0950770Z adding 'torch/_torch_docs.py' 2025-01-24T02:56:20.0961900Z adding 'torch/_utils.py' 2025-01-24T02:56:20.0964610Z adding 'torch/_utils_internal.py' 2025-01-24T02:56:20.0967200Z adding 'torch/_vmap_internals.py' 2025-01-24T02:56:20.0971540Z adding 'torch/_weights_only_unpickler.py' 2025-01-24T02:56:20.0990950Z adding 'torch/functional.py' 2025-01-24T02:56:20.0998800Z adding 'torch/hub.py' 2025-01-24T02:56:20.1010840Z adding 'torch/library.py' 2025-01-24T02:56:20.1028120Z adding 'torch/overrides.py' 2025-01-24T02:56:20.1029520Z adding 'torch/py.typed' 2025-01-24T02:56:20.1031760Z adding 'torch/quasirandom.py' 2025-01-24T02:56:20.1033940Z adding 'torch/random.py' 2025-01-24T02:56:20.1035290Z adding 'torch/return_types.py' 2025-01-24T02:56:20.1037090Z adding 'torch/return_types.pyi' 2025-01-24T02:56:20.1054430Z adding 'torch/serialization.py' 2025-01-24T02:56:20.1063640Z adding 'torch/storage.py' 2025-01-24T02:56:20.1065440Z adding 'torch/torch_version.py' 2025-01-24T02:56:20.1066980Z adding 'torch/types.py' 2025-01-24T02:56:20.1067850Z adding 'torch/version.py' 2025-01-24T02:56:20.1222320Z adding 'torch/_C/_VariableFunctions.pyi' 2025-01-24T02:56:20.1287300Z adding 'torch/_C/__init__.pyi' 2025-01-24T02:56:20.1290460Z adding 'torch/_C/_aoti.pyi' 2025-01-24T02:56:20.1292300Z adding 'torch/_C/_autograd.pyi' 2025-01-24T02:56:20.1293500Z adding 'torch/_C/_cpu.pyi' 2025-01-24T02:56:20.1294090Z adding 'torch/_C/_cudnn.pyi' 2025-01-24T02:56:20.1295290Z adding 'torch/_C/_cusparselt.pyi' 2025-01-24T02:56:20.1301750Z adding 'torch/_C/_distributed_autograd.pyi' 2025-01-24T02:56:20.1302120Z adding 'torch/_C/_distributed_c10d.pyi' 2025-01-24T02:56:20.1302430Z adding 'torch/_C/_distributed_rpc.pyi' 2025-01-24T02:56:20.1302960Z adding 'torch/_C/_distributed_rpc_testing.pyi' 2025-01-24T02:56:20.1304290Z adding 'torch/_C/_export.pyi' 2025-01-24T02:56:20.1304860Z adding 'torch/_C/_functions.pyi' 2025-01-24T02:56:20.1306430Z adding 'torch/_C/_functorch.pyi' 2025-01-24T02:56:20.1307160Z adding 'torch/_C/_instruction_counter.pyi' 2025-01-24T02:56:20.1308380Z adding 'torch/_C/_itt.pyi' 2025-01-24T02:56:20.1309250Z adding 'torch/_C/_lazy.pyi' 2025-01-24T02:56:20.1310500Z adding 'torch/_C/_lazy_ts_backend.pyi' 2025-01-24T02:56:20.1311210Z adding 'torch/_C/_monitor.pyi' 2025-01-24T02:56:20.1312940Z adding 'torch/_C/_nn.pyi' 2025-01-24T02:56:20.1313810Z adding 'torch/_C/_nvtx.pyi' 2025-01-24T02:56:20.1315020Z adding 'torch/_C/_onnx.pyi' 2025-01-24T02:56:20.1316770Z adding 'torch/_C/_profiler.pyi' 2025-01-24T02:56:20.1317430Z adding 'torch/_C/_verbose.pyi' 2025-01-24T02:56:20.1319150Z adding 'torch/_awaits/__init__.py' 2025-01-24T02:56:20.1320390Z adding 'torch/_custom_op/__init__.py' 2025-01-24T02:56:20.1323170Z adding 'torch/_custom_op/autograd.py' 2025-01-24T02:56:20.1328590Z adding 'torch/_custom_op/impl.py' 2025-01-24T02:56:20.1332830Z adding 'torch/_decomp/__init__.py' 2025-01-24T02:56:20.1370930Z adding 'torch/_decomp/decompositions.py' 2025-01-24T02:56:20.1374570Z adding 'torch/_decomp/decompositions_for_jvp.py' 2025-01-24T02:56:20.1377190Z adding 'torch/_decomp/decompositions_for_rng.py' 2025-01-24T02:56:20.1377950Z adding 'torch/_dispatch/__init__.py' 2025-01-24T02:56:20.1380180Z adding 'torch/_dispatch/python.py' 2025-01-24T02:56:20.1382500Z adding 'torch/_dynamo/__init__.py' 2025-01-24T02:56:20.1385100Z adding 'torch/_dynamo/_trace_wrapped_higher_order_op.py' 2025-01-24T02:56:20.1387410Z adding 'torch/_dynamo/bytecode_analysis.py' 2025-01-24T02:56:20.1400310Z adding 'torch/_dynamo/bytecode_transformation.py' 2025-01-24T02:56:20.1403000Z adding 'torch/_dynamo/cache_size.py' 2025-01-24T02:56:20.1404270Z adding 'torch/_dynamo/callback.py' 2025-01-24T02:56:20.1405150Z adding 'torch/_dynamo/code_context.py' 2025-01-24T02:56:20.1409760Z adding 'torch/_dynamo/codegen.py' 2025-01-24T02:56:20.1417000Z adding 'torch/_dynamo/compiled_autograd.py' 2025-01-24T02:56:20.1420250Z adding 'torch/_dynamo/comptime.py' 2025-01-24T02:56:20.1426960Z adding 'torch/_dynamo/config.py' 2025-01-24T02:56:20.1438450Z adding 'torch/_dynamo/convert_frame.py' 2025-01-24T02:56:20.1440060Z adding 'torch/_dynamo/create_parameter_op.py' 2025-01-24T02:56:20.1441280Z adding 'torch/_dynamo/current_scope_id.py' 2025-01-24T02:56:20.1448000Z adding 'torch/_dynamo/debug_utils.py' 2025-01-24T02:56:20.1453410Z adding 'torch/_dynamo/decorators.py' 2025-01-24T02:56:20.1456210Z adding 'torch/_dynamo/device_interface.py' 2025-01-24T02:56:20.1457410Z adding 'torch/_dynamo/distributed.py' 2025-01-24T02:56:20.1473480Z adding 'torch/_dynamo/eval_frame.py' 2025-01-24T02:56:20.1477740Z adding 'torch/_dynamo/exc.py' 2025-01-24T02:56:20.1479530Z adding 'torch/_dynamo/external_utils.py' 2025-01-24T02:56:20.1480760Z adding 'torch/_dynamo/funcname_cache.py' 2025-01-24T02:56:20.1483330Z adding 'torch/_dynamo/graph_deduplication.py' 2025-01-24T02:56:20.1486650Z adding 'torch/_dynamo/graph_region_tracker.py' 2025-01-24T02:56:20.1513800Z adding 'torch/_dynamo/guards.py' 2025-01-24T02:56:20.1515490Z adding 'torch/_dynamo/hooks.py' 2025-01-24T02:56:20.1516870Z adding 'torch/_dynamo/logging.py' 2025-01-24T02:56:20.1518760Z adding 'torch/_dynamo/metrics_context.py' 2025-01-24T02:56:20.1520540Z adding 'torch/_dynamo/mutation_guard.py' 2025-01-24T02:56:20.1546830Z adding 'torch/_dynamo/output_graph.py' 2025-01-24T02:56:20.1553180Z adding 'torch/_dynamo/pgo.py' 2025-01-24T02:56:20.1555140Z adding 'torch/_dynamo/profiler.py' 2025-01-24T02:56:20.1556650Z adding 'torch/_dynamo/replay_record.py' 2025-01-24T02:56:20.1561830Z adding 'torch/_dynamo/resume_execution.py' 2025-01-24T02:56:20.1569120Z adding 'torch/_dynamo/side_effects.py' 2025-01-24T02:56:20.1573220Z adding 'torch/_dynamo/source.py' 2025-01-24T02:56:20.1603330Z adding 'torch/_dynamo/symbolic_convert.py' 2025-01-24T02:56:20.1605290Z adding 'torch/_dynamo/tensor_version_op.py' 2025-01-24T02:56:20.1606630Z adding 'torch/_dynamo/test_case.py' 2025-01-24T02:56:20.1609520Z adding 'torch/_dynamo/test_minifier_common.py' 2025-01-24T02:56:20.1613030Z adding 'torch/_dynamo/testing.py' 2025-01-24T02:56:20.1636870Z adding 'torch/_dynamo/trace_rules.py' 2025-01-24T02:56:20.1638940Z adding 'torch/_dynamo/types.py' 2025-01-24T02:56:20.1673930Z adding 'torch/_dynamo/utils.py' 2025-01-24T02:56:20.1675920Z adding 'torch/_dynamo/backends/__init__.py' 2025-01-24T02:56:20.1677690Z adding 'torch/_dynamo/backends/common.py' 2025-01-24T02:56:20.1680040Z adding 'torch/_dynamo/backends/cudagraphs.py' 2025-01-24T02:56:20.1683400Z adding 'torch/_dynamo/backends/debugging.py' 2025-01-24T02:56:20.1689400Z adding 'torch/_dynamo/backends/distributed.py' 2025-01-24T02:56:20.1690280Z adding 'torch/_dynamo/backends/inductor.py' 2025-01-24T02:56:20.1691680Z adding 'torch/_dynamo/backends/onnxrt.py' 2025-01-24T02:56:20.1693270Z adding 'torch/_dynamo/backends/registry.py' 2025-01-24T02:56:20.1694020Z adding 'torch/_dynamo/backends/tensorrt.py' 2025-01-24T02:56:20.1695410Z adding 'torch/_dynamo/backends/torchxla.py' 2025-01-24T02:56:20.1697450Z adding 'torch/_dynamo/backends/tvm.py' 2025-01-24T02:56:20.1699940Z adding 'torch/_dynamo/polyfills/__init__.py' 2025-01-24T02:56:20.1701230Z adding 'torch/_dynamo/polyfills/builtins.py' 2025-01-24T02:56:20.1701970Z adding 'torch/_dynamo/polyfills/functools.py' 2025-01-24T02:56:20.1704030Z adding 'torch/_dynamo/polyfills/itertools.py' 2025-01-24T02:56:20.1708650Z adding 'torch/_dynamo/polyfills/loader.py' 2025-01-24T02:56:20.1708990Z adding 'torch/_dynamo/polyfills/operator.py' 2025-01-24T02:56:20.1709300Z adding 'torch/_dynamo/polyfills/os.py' 2025-01-24T02:56:20.1710860Z adding 'torch/_dynamo/polyfills/pytree.py' 2025-01-24T02:56:20.1711820Z adding 'torch/_dynamo/polyfills/sys.py' 2025-01-24T02:56:20.1713070Z adding 'torch/_dynamo/repro/__init__.py' 2025-01-24T02:56:20.1720690Z adding 'torch/_dynamo/repro/after_aot.py' 2025-01-24T02:56:20.1725100Z adding 'torch/_dynamo/repro/after_dynamo.py' 2025-01-24T02:56:20.1729810Z adding 'torch/_dynamo/repro/aoti.py' 2025-01-24T02:56:20.1731940Z adding 'torch/_dynamo/variables/__init__.py' 2025-01-24T02:56:20.1735850Z adding 'torch/_dynamo/variables/base.py' 2025-01-24T02:56:20.1764170Z adding 'torch/_dynamo/variables/builder.py' 2025-01-24T02:56:20.1779220Z adding 'torch/_dynamo/variables/builtin.py' 2025-01-24T02:56:20.1782050Z adding 'torch/_dynamo/variables/constant.py' 2025-01-24T02:56:20.1788790Z adding 'torch/_dynamo/variables/ctx_manager.py' 2025-01-24T02:56:20.1794790Z adding 'torch/_dynamo/variables/dicts.py' 2025-01-24T02:56:20.1797940Z adding 'torch/_dynamo/variables/distributed.py' 2025-01-24T02:56:20.1808000Z adding 'torch/_dynamo/variables/functions.py' 2025-01-24T02:56:20.1829340Z adding 'torch/_dynamo/variables/higher_order_ops.py' 2025-01-24T02:56:20.1833390Z adding 'torch/_dynamo/variables/iter.py' 2025-01-24T02:56:20.1835750Z adding 'torch/_dynamo/variables/lazy.py' 2025-01-24T02:56:20.1843140Z adding 'torch/_dynamo/variables/lists.py' 2025-01-24T02:56:20.1855260Z adding 'torch/_dynamo/variables/misc.py' 2025-01-24T02:56:20.1864870Z adding 'torch/_dynamo/variables/nn_module.py' 2025-01-24T02:56:20.1868620Z adding 'torch/_dynamo/variables/optimizer.py' 2025-01-24T02:56:20.1870240Z adding 'torch/_dynamo/variables/script_object.py' 2025-01-24T02:56:20.1871560Z adding 'torch/_dynamo/variables/sdpa.py' 2025-01-24T02:56:20.1882760Z adding 'torch/_dynamo/variables/tensor.py' 2025-01-24T02:56:20.1893320Z adding 'torch/_dynamo/variables/torch.py' 2025-01-24T02:56:20.1899020Z adding 'torch/_dynamo/variables/torch_function.py' 2025-01-24T02:56:20.1911020Z adding 'torch/_dynamo/variables/user_defined.py' 2025-01-24T02:56:20.1916870Z adding 'torch/_export/__init__.py' 2025-01-24T02:56:20.1930960Z adding 'torch/_export/converter.py' 2025-01-24T02:56:20.1932780Z adding 'torch/_export/error.py' 2025-01-24T02:56:20.1938870Z adding 'torch/_export/non_strict_utils.py' 2025-01-24T02:56:20.1942580Z adding 'torch/_export/pass_base.py' 2025-01-24T02:56:20.1944710Z adding 'torch/_export/tools.py' 2025-01-24T02:56:20.1956210Z adding 'torch/_export/utils.py' 2025-01-24T02:56:20.1960210Z adding 'torch/_export/verifier.py' 2025-01-24T02:56:20.1961860Z adding 'torch/_export/wrappers.py' 2025-01-24T02:56:20.1963250Z adding 'torch/_export/db/__init__.py' 2025-01-24T02:56:20.1965170Z adding 'torch/_export/db/case.py' 2025-01-24T02:56:20.1966570Z adding 'torch/_export/db/gen_example.py' 2025-01-24T02:56:20.1967880Z adding 'torch/_export/db/logging.py' 2025-01-24T02:56:20.1969870Z adding 'torch/_export/db/examples/__init__.py' 2025-01-24T02:56:20.1971180Z adding 'torch/_export/db/examples/assume_constant_result.py' 2025-01-24T02:56:20.1971950Z adding 'torch/_export/db/examples/autograd_function.py' 2025-01-24T02:56:20.1973380Z adding 'torch/_export/db/examples/class_method.py' 2025-01-24T02:56:20.1974690Z adding 'torch/_export/db/examples/cond_branch_class_method.py' 2025-01-24T02:56:20.1975640Z adding 'torch/_export/db/examples/cond_branch_nested_function.py' 2025-01-24T02:56:20.1977190Z adding 'torch/_export/db/examples/cond_branch_nonlocal_variables.py' 2025-01-24T02:56:20.1977980Z adding 'torch/_export/db/examples/cond_closed_over_variable.py' 2025-01-24T02:56:20.1979340Z adding 'torch/_export/db/examples/cond_operands.py' 2025-01-24T02:56:20.1980680Z adding 'torch/_export/db/examples/cond_predicate.py' 2025-01-24T02:56:20.1981310Z adding 'torch/_export/db/examples/constrain_as_size_example.py' 2025-01-24T02:56:20.1982740Z adding 'torch/_export/db/examples/constrain_as_value_example.py' 2025-01-24T02:56:20.1983420Z adding 'torch/_export/db/examples/decorator.py' 2025-01-24T02:56:20.1984730Z adding 'torch/_export/db/examples/dictionary.py' 2025-01-24T02:56:20.1985510Z adding 'torch/_export/db/examples/dynamic_shape_assert.py' 2025-01-24T02:56:20.1986840Z adding 'torch/_export/db/examples/dynamic_shape_constructor.py' 2025-01-24T02:56:20.1987600Z adding 'torch/_export/db/examples/dynamic_shape_if_guard.py' 2025-01-24T02:56:20.1988980Z adding 'torch/_export/db/examples/dynamic_shape_map.py' 2025-01-24T02:56:20.1989770Z adding 'torch/_export/db/examples/dynamic_shape_round.py' 2025-01-24T02:56:20.1991150Z adding 'torch/_export/db/examples/dynamic_shape_slicing.py' 2025-01-24T02:56:20.1991950Z adding 'torch/_export/db/examples/dynamic_shape_view.py' 2025-01-24T02:56:20.1993350Z adding 'torch/_export/db/examples/fn_with_kwargs.py' 2025-01-24T02:56:20.1994850Z adding 'torch/_export/db/examples/list_contains.py' 2025-01-24T02:56:20.1996110Z adding 'torch/_export/db/examples/list_unpack.py' 2025-01-24T02:56:20.1996850Z adding 'torch/_export/db/examples/model_attr_mutation.py' 2025-01-24T02:56:20.1998200Z adding 'torch/_export/db/examples/nested_function.py' 2025-01-24T02:56:20.1998960Z adding 'torch/_export/db/examples/null_context_manager.py' 2025-01-24T02:56:20.2000270Z adding 'torch/_export/db/examples/optional_input.py' 2025-01-24T02:56:20.2001090Z adding 'torch/_export/db/examples/pytree_flatten.py' 2025-01-24T02:56:20.2002400Z adding 'torch/_export/db/examples/scalar_output.py' 2025-01-24T02:56:20.2003140Z adding 'torch/_export/db/examples/specialized_attribute.py' 2025-01-24T02:56:20.2004430Z adding 'torch/_export/db/examples/static_for_loop.py' 2025-01-24T02:56:20.2005110Z adding 'torch/_export/db/examples/static_if.py' 2025-01-24T02:56:20.2006500Z adding 'torch/_export/db/examples/tensor_setattr.py' 2025-01-24T02:56:20.2007160Z adding 'torch/_export/db/examples/type_reflection_method.py' 2025-01-24T02:56:20.2008480Z adding 'torch/_export/db/examples/unsupported_operator.py' 2025-01-24T02:56:20.2009110Z adding 'torch/_export/db/examples/user_input_mutation.py' 2025-01-24T02:56:20.2010490Z adding 'torch/_export/pass_infra/__init__.py' 2025-01-24T02:56:20.2011790Z adding 'torch/_export/pass_infra/node_metadata.py' 2025-01-24T02:56:20.2012510Z adding 'torch/_export/pass_infra/proxy_value.py' 2025-01-24T02:56:20.2014220Z adding 'torch/_export/passes/__init__.py' 2025-01-24T02:56:20.2019790Z adding 'torch/_export/passes/_node_metadata_hook.py' 2025-01-24T02:56:20.2020300Z adding 'torch/_export/passes/add_runtime_assertions_for_constraints_pass.py' 2025-01-24T02:56:20.2020790Z adding 'torch/_export/passes/collect_tracepoints_pass.py' 2025-01-24T02:56:20.2023180Z adding 'torch/_export/passes/constant_folding.py' 2025-01-24T02:56:20.2024790Z adding 'torch/_export/passes/functionalize_side_effectful_ops_pass.py' 2025-01-24T02:56:20.2026190Z adding 'torch/_export/passes/insert_custom_op_guards.py' 2025-01-24T02:56:20.2029410Z adding 'torch/_export/passes/lift_constants_pass.py' 2025-01-24T02:56:20.2030700Z adding 'torch/_export/passes/remove_runtime_assertions.py' 2025-01-24T02:56:20.2032760Z adding 'torch/_export/passes/replace_autocast_with_hop_pass.py' 2025-01-24T02:56:20.2037950Z adding 'torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py' 2025-01-24T02:56:20.2039570Z adding 'torch/_export/passes/replace_set_grad_with_hop_pass.py' 2025-01-24T02:56:20.2041040Z adding 'torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py' 2025-01-24T02:56:20.2043310Z adding 'torch/_export/passes/replace_with_hop_pass_util.py' 2025-01-24T02:56:20.2044560Z adding 'torch/_export/serde/__init__.py' 2025-01-24T02:56:20.2045210Z adding 'torch/_export/serde/aoti_schema.py' 2025-01-24T02:56:20.2048230Z adding 'torch/_export/serde/dynamic_shapes.py' 2025-01-24T02:56:20.2050400Z adding 'torch/_export/serde/export_schema.thrift' 2025-01-24T02:56:20.2053060Z adding 'torch/_export/serde/schema.py' 2025-01-24T02:56:20.2055390Z adding 'torch/_export/serde/schema.yaml' 2025-01-24T02:56:20.2060690Z adding 'torch/_export/serde/schema_check.py' 2025-01-24T02:56:20.2087860Z adding 'torch/_export/serde/serialize.py' 2025-01-24T02:56:20.2089840Z adding 'torch/_export/serde/union.py' 2025-01-24T02:56:20.2091320Z adding 'torch/_functorch/__init__.py' 2025-01-24T02:56:20.2108100Z adding 'torch/_functorch/aot_autograd.py' 2025-01-24T02:56:20.2112510Z adding 'torch/_functorch/apis.py' 2025-01-24T02:56:20.2118750Z adding 'torch/_functorch/autograd_function.py' 2025-01-24T02:56:20.2120170Z adding 'torch/_functorch/batch_norm_replacement.py' 2025-01-24T02:56:20.2122130Z adding 'torch/_functorch/benchmark_utils.py' 2025-01-24T02:56:20.2124170Z adding 'torch/_functorch/compile_utils.py' 2025-01-24T02:56:20.2127470Z adding 'torch/_functorch/compilers.py' 2025-01-24T02:56:20.2130360Z adding 'torch/_functorch/config.py' 2025-01-24T02:56:20.2132020Z adding 'torch/_functorch/deprecated.py' 2025-01-24T02:56:20.2147190Z adding 'torch/_functorch/eager_transforms.py' 2025-01-24T02:56:20.2150330Z adding 'torch/_functorch/functional_call.py' 2025-01-24T02:56:20.2154240Z adding 'torch/_functorch/fx_minifier.py' 2025-01-24T02:56:20.2158870Z adding 'torch/_functorch/make_functional.py' 2025-01-24T02:56:20.2176150Z adding 'torch/_functorch/partitioners.py' 2025-01-24T02:56:20.2179010Z adding 'torch/_functorch/pyfunctorch.py' 2025-01-24T02:56:20.2180230Z adding 'torch/_functorch/python_key.py' 2025-01-24T02:56:20.2180930Z adding 'torch/_functorch/pytree_hacks.py' 2025-01-24T02:56:20.2185990Z adding 'torch/_functorch/top_operators_github_usage.py' 2025-01-24T02:56:20.2187230Z adding 'torch/_functorch/utils.py' 2025-01-24T02:56:20.2191820Z adding 'torch/_functorch/vmap.py' 2025-01-24T02:56:20.2193230Z adding 'torch/_functorch/_activation_checkpointing/__init__.py' 2025-01-24T02:56:20.2196040Z adding 'torch/_functorch/_activation_checkpointing/graph_info_provider.py' 2025-01-24T02:56:20.2197650Z adding 'torch/_functorch/_activation_checkpointing/knapsack.py' 2025-01-24T02:56:20.2200310Z adding 'torch/_functorch/_activation_checkpointing/knapsack_evaluator.py' 2025-01-24T02:56:20.2201650Z adding 'torch/_functorch/_aot_autograd/__init__.py' 2025-01-24T02:56:20.2210050Z adding 'torch/_functorch/_aot_autograd/autograd_cache.py' 2025-01-24T02:56:20.2219870Z adding 'torch/_functorch/_aot_autograd/collect_metadata_analysis.py' 2025-01-24T02:56:20.2222980Z adding 'torch/_functorch/_aot_autograd/dispatch_and_compile_graph.py' 2025-01-24T02:56:20.2227830Z adding 'torch/_functorch/_aot_autograd/functional_utils.py' 2025-01-24T02:56:20.2231870Z adding 'torch/_functorch/_aot_autograd/input_output_analysis.py' 2025-01-24T02:56:20.2239750Z adding 'torch/_functorch/_aot_autograd/jit_compile_runtime_wrappers.py' 2025-01-24T02:56:20.2241570Z adding 'torch/_functorch/_aot_autograd/logging_utils.py' 2025-01-24T02:56:20.2262700Z adding 'torch/_functorch/_aot_autograd/runtime_wrappers.py' 2025-01-24T02:56:20.2272550Z adding 'torch/_functorch/_aot_autograd/schemas.py' 2025-01-24T02:56:20.2274390Z adding 'torch/_functorch/_aot_autograd/subclass_parametrization.py' 2025-01-24T02:56:20.2278630Z adding 'torch/_functorch/_aot_autograd/subclass_utils.py' 2025-01-24T02:56:20.2288440Z adding 'torch/_functorch/_aot_autograd/traced_function_transforms.py' 2025-01-24T02:56:20.2293080Z adding 'torch/_functorch/_aot_autograd/utils.py' 2025-01-24T02:56:20.2294710Z adding 'torch/_higher_order_ops/__init__.py' 2025-01-24T02:56:20.2298630Z adding 'torch/_higher_order_ops/associative_scan.py' 2025-01-24T02:56:20.2304240Z adding 'torch/_higher_order_ops/auto_functionalize.py' 2025-01-24T02:56:20.2309490Z adding 'torch/_higher_order_ops/cond.py' 2025-01-24T02:56:20.2312260Z adding 'torch/_higher_order_ops/effects.py' 2025-01-24T02:56:20.2314350Z adding 'torch/_higher_order_ops/executorch_call_delegate.py' 2025-01-24T02:56:20.2321230Z adding 'torch/_higher_order_ops/flex_attention.py' 2025-01-24T02:56:20.2322550Z adding 'torch/_higher_order_ops/foreach_map.py' 2025-01-24T02:56:20.2324200Z adding 'torch/_higher_order_ops/hints_wrap.py' 2025-01-24T02:56:20.2327090Z adding 'torch/_higher_order_ops/invoke_subgraph.py' 2025-01-24T02:56:20.2329420Z adding 'torch/_higher_order_ops/map.py' 2025-01-24T02:56:20.2331320Z adding 'torch/_higher_order_ops/out_dtype.py' 2025-01-24T02:56:20.2333450Z adding 'torch/_higher_order_ops/prim_hop_base.py' 2025-01-24T02:56:20.2334740Z adding 'torch/_higher_order_ops/run_const_graph.py' 2025-01-24T02:56:20.2338900Z adding 'torch/_higher_order_ops/scan.py' 2025-01-24T02:56:20.2340530Z adding 'torch/_higher_order_ops/strict_mode.py' 2025-01-24T02:56:20.2342330Z adding 'torch/_higher_order_ops/torchbind.py' 2025-01-24T02:56:20.2356540Z adding 'torch/_higher_order_ops/triton_kernel_wrap.py' 2025-01-24T02:56:20.2362220Z adding 'torch/_higher_order_ops/utils.py' 2025-01-24T02:56:20.2366730Z adding 'torch/_higher_order_ops/while_loop.py' 2025-01-24T02:56:20.2370320Z adding 'torch/_higher_order_ops/wrap.py' 2025-01-24T02:56:20.2373730Z adding 'torch/_inductor/__init__.py' 2025-01-24T02:56:20.2375620Z adding 'torch/_inductor/analyze_preserves_zero_mask.py' 2025-01-24T02:56:20.2378080Z adding 'torch/_inductor/aoti_eager.py' 2025-01-24T02:56:20.2382730Z adding 'torch/_inductor/async_compile.py' 2025-01-24T02:56:20.2387560Z adding 'torch/_inductor/autotune_process.py' 2025-01-24T02:56:20.2389690Z adding 'torch/_inductor/bounds.py' 2025-01-24T02:56:20.2392520Z adding 'torch/_inductor/choices.py' 2025-01-24T02:56:20.2420160Z adding 'torch/_inductor/codecache.py' 2025-01-24T02:56:20.2423280Z adding 'torch/_inductor/comm_analysis.py' 2025-01-24T02:56:20.2426120Z adding 'torch/_inductor/comm_lowering.py' 2025-01-24T02:56:20.2433010Z adding 'torch/_inductor/comms.py' 2025-01-24T02:56:20.2451570Z adding 'torch/_inductor/compile_fx.py' 2025-01-24T02:56:20.2456500Z adding 'torch/_inductor/compiler_bisector.py' 2025-01-24T02:56:20.2471890Z adding 'torch/_inductor/config.py' 2025-01-24T02:56:20.2475520Z adding 'torch/_inductor/constant_folding.py' 2025-01-24T02:56:20.2486590Z adding 'torch/_inductor/cpp_builder.py' 2025-01-24T02:56:20.2490100Z adding 'torch/_inductor/cpu_vec_isa.py' 2025-01-24T02:56:20.2514640Z adding 'torch/_inductor/cudagraph_trees.py' 2025-01-24T02:56:20.2517950Z adding 'torch/_inductor/cudagraph_utils.py' 2025-01-24T02:56:20.2520640Z adding 'torch/_inductor/custom_graph_pass.py' 2025-01-24T02:56:20.2527160Z adding 'torch/_inductor/debug.py' 2025-01-24T02:56:20.2534850Z adding 'torch/_inductor/decomposition.py' 2025-01-24T02:56:20.2541640Z adding 'torch/_inductor/dependencies.py' 2025-01-24T02:56:20.2544520Z adding 'torch/_inductor/dtype_propagation.py' 2025-01-24T02:56:20.2546410Z adding 'torch/_inductor/exc.py' 2025-01-24T02:56:20.2547770Z adding 'torch/_inductor/extern_node_serializer.py' 2025-01-24T02:56:20.2550580Z adding 'torch/_inductor/freezing.py' 2025-01-24T02:56:20.2558140Z adding 'torch/_inductor/fuzzer.py' 2025-01-24T02:56:20.2561010Z adding 'torch/_inductor/fx_utils.py' 2025-01-24T02:56:20.2581130Z adding 'torch/_inductor/graph.py' 2025-01-24T02:56:20.2582810Z adding 'torch/_inductor/hooks.py' 2025-01-24T02:56:20.2586100Z adding 'torch/_inductor/index_propagation.py' 2025-01-24T02:56:20.2588320Z adding 'torch/_inductor/inductor_prims.py' 2025-01-24T02:56:20.2647240Z adding 'torch/_inductor/ir.py' 2025-01-24T02:56:20.2650950Z adding 'torch/_inductor/jagged_lowerings.py' 2025-01-24T02:56:20.2656440Z adding 'torch/_inductor/loop_body.py' 2025-01-24T02:56:20.2704850Z adding 'torch/_inductor/lowering.py' 2025-01-24T02:56:20.2711590Z adding 'torch/_inductor/memory.py' 2025-01-24T02:56:20.2715060Z adding 'torch/_inductor/metrics.py' 2025-01-24T02:56:20.2721120Z adding 'torch/_inductor/mkldnn_ir.py' 2025-01-24T02:56:20.2727960Z adding 'torch/_inductor/mkldnn_lowerings.py' 2025-01-24T02:56:20.2730330Z adding 'torch/_inductor/mock_cache.py' 2025-01-24T02:56:20.2736520Z adding 'torch/_inductor/ops_handler.py' 2025-01-24T02:56:20.2738570Z adding 'torch/_inductor/optimize_indexing.py' 2025-01-24T02:56:20.2743600Z adding 'torch/_inductor/output_code.py' 2025-01-24T02:56:20.2761160Z adding 'torch/_inductor/pattern_matcher.py' 2025-01-24T02:56:20.2763090Z adding 'torch/_inductor/quantized_lowerings.py' 2025-01-24T02:56:20.2766310Z adding 'torch/_inductor/remote_cache.py' 2025-01-24T02:56:20.2802350Z adding 'torch/_inductor/scheduler.py' 2025-01-24T02:56:20.2821350Z adding 'torch/_inductor/select_algorithm.py' 2025-01-24T02:56:20.2829520Z adding 'torch/_inductor/sizevars.py' 2025-01-24T02:56:20.2832100Z adding 'torch/_inductor/subgraph_lowering.py' 2025-01-24T02:56:20.2833420Z adding 'torch/_inductor/test_case.py' 2025-01-24T02:56:20.2834660Z adding 'torch/_inductor/test_operators.py' 2025-01-24T02:56:20.2837270Z adding 'torch/_inductor/triton_bundler.py' 2025-01-24T02:56:20.2856520Z adding 'torch/_inductor/utils.py' 2025-01-24T02:56:20.2859970Z adding 'torch/_inductor/virtualized.py' 2025-01-24T02:56:20.2863340Z adding 'torch/_inductor/wrapper_benchmark.py' 2025-01-24T02:56:20.2865050Z adding 'torch/_inductor/autoheuristic/__init__.py' 2025-01-24T02:56:20.2868010Z adding 'torch/_inductor/autoheuristic/autoheuristic.py' 2025-01-24T02:56:20.2870820Z adding 'torch/_inductor/autoheuristic/autoheuristic_utils.py' 2025-01-24T02:56:20.2872580Z adding 'torch/_inductor/autoheuristic/learned_heuristic_controller.py' 2025-01-24T02:56:20.2874030Z adding 'torch/_inductor/autoheuristic/learnedheuristic_interface.py' 2025-01-24T02:56:20.2878420Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py' 2025-01-24T02:56:20.2882990Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py' 2025-01-24T02:56:20.2884920Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py' 2025-01-24T02:56:20.2886710Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py' 2025-01-24T02:56:20.2888220Z adding 'torch/_inductor/autoheuristic/artifacts/_PadMMA100.py' 2025-01-24T02:56:20.2888830Z adding 'torch/_inductor/autoheuristic/artifacts/__init__.py' 2025-01-24T02:56:20.2890500Z adding 'torch/_inductor/codegen/__init__.py' 2025-01-24T02:56:20.2891780Z adding 'torch/_inductor/codegen/aoti_hipify_utils.py' 2025-01-24T02:56:20.2893630Z adding 'torch/_inductor/codegen/block_analysis.py' 2025-01-24T02:56:20.2910250Z adding 'torch/_inductor/codegen/common.py' 2025-01-24T02:56:20.2954170Z adding 'torch/_inductor/codegen/cpp.py' 2025-01-24T02:56:20.2957690Z adding 'torch/_inductor/codegen/cpp_bmm_template.py' 2025-01-24T02:56:20.2966070Z adding 'torch/_inductor/codegen/cpp_flex_attention_template.py' 2025-01-24T02:56:20.2978240Z adding 'torch/_inductor/codegen/cpp_gemm_template.py' 2025-01-24T02:56:20.2982750Z adding 'torch/_inductor/codegen/cpp_grouped_gemm_template.py' 2025-01-24T02:56:20.2988640Z adding 'torch/_inductor/codegen/cpp_micro_gemm.py' 2025-01-24T02:56:20.2994920Z adding 'torch/_inductor/codegen/cpp_prefix.h' 2025-01-24T02:56:20.2996870Z adding 'torch/_inductor/codegen/cpp_template.py' 2025-01-24T02:56:20.3001720Z adding 'torch/_inductor/codegen/cpp_template_kernel.py' 2025-01-24T02:56:20.3007920Z adding 'torch/_inductor/codegen/cpp_utils.py' 2025-01-24T02:56:20.3028090Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu.py' 2025-01-24T02:56:20.3037480Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py' 2025-01-24T02:56:20.3042690Z adding 'torch/_inductor/codegen/cpp_wrapper_gpu.py' 2025-01-24T02:56:20.3043990Z adding 'torch/_inductor/codegen/cpu_device_op_overrides.py' 2025-01-24T02:56:20.3045440Z adding 'torch/_inductor/codegen/cuda_combined_scheduling.py' 2025-01-24T02:56:20.3047930Z adding 'torch/_inductor/codegen/debug_utils.py' 2025-01-24T02:56:20.3060760Z adding 'torch/_inductor/codegen/halide.py' 2025-01-24T02:56:20.3066300Z adding 'torch/_inductor/codegen/memory_planning.py' 2025-01-24T02:56:20.3069810Z adding 'torch/_inductor/codegen/mps.py' 2025-01-24T02:56:20.3071110Z adding 'torch/_inductor/codegen/mps_device_op_overrides.py' 2025-01-24T02:56:20.3074790Z adding 'torch/_inductor/codegen/multi_kernel.py' 2025-01-24T02:56:20.3093180Z adding 'torch/_inductor/codegen/simd.py' 2025-01-24T02:56:20.3095690Z adding 'torch/_inductor/codegen/simd_kernel_features.py' 2025-01-24T02:56:20.3130730Z adding 'torch/_inductor/codegen/triton.py' 2025-01-24T02:56:20.3140540Z adding 'torch/_inductor/codegen/triton_combo_kernel.py' 2025-01-24T02:56:20.3142810Z adding 'torch/_inductor/codegen/triton_split_scan.py' 2025-01-24T02:56:20.3144930Z adding 'torch/_inductor/codegen/triton_utils.py' 2025-01-24T02:56:20.3167010Z adding 'torch/_inductor/codegen/wrapper.py' 2025-01-24T02:56:20.3169240Z adding 'torch/_inductor/codegen/aoti_runtime/implementation.cpp' 2025-01-24T02:56:20.3171810Z adding 'torch/_inductor/codegen/aoti_runtime/interface.cpp' 2025-01-24T02:56:20.3173100Z adding 'torch/_inductor/codegen/cuda/__init__.py' 2025-01-24T02:56:20.3174830Z adding 'torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py' 2025-01-24T02:56:20.3176180Z adding 'torch/_inductor/codegen/cuda/cuda_env.py' 2025-01-24T02:56:20.3180240Z adding 'torch/_inductor/codegen/cuda/cuda_kernel.py' 2025-01-24T02:56:20.3182790Z adding 'torch/_inductor/codegen/cuda/cuda_template.py' 2025-01-24T02:56:20.3185700Z adding 'torch/_inductor/codegen/cuda/cutlass_utils.py' 2025-01-24T02:56:20.3187890Z adding 'torch/_inductor/codegen/cuda/device_op_overrides.py' 2025-01-24T02:56:20.3198770Z adding 'torch/_inductor/codegen/cuda/gemm_template.py' 2025-01-24T02:56:20.3200270Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py' 2025-01-24T02:56:20.3202560Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py' 2025-01-24T02:56:20.3203370Z adding 'torch/_inductor/codegen/rocm/__init__.py' 2025-01-24T02:56:20.3207900Z adding 'torch/_inductor/codegen/rocm/ck_conv_template.py' 2025-01-24T02:56:20.3209330Z adding 'torch/_inductor/codegen/rocm/ck_template.py' 2025-01-24T02:56:20.3215400Z adding 'torch/_inductor/codegen/rocm/ck_universal_gemm_template.py' 2025-01-24T02:56:20.3217190Z adding 'torch/_inductor/codegen/rocm/compile_command.py' 2025-01-24T02:56:20.3218940Z adding 'torch/_inductor/codegen/rocm/rocm_benchmark_request.py' 2025-01-24T02:56:20.3220540Z adding 'torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py' 2025-01-24T02:56:20.3223160Z adding 'torch/_inductor/codegen/rocm/rocm_kernel.py' 2025-01-24T02:56:20.3225160Z adding 'torch/_inductor/codegen/rocm/rocm_template.py' 2025-01-24T02:56:20.3226470Z adding 'torch/_inductor/codegen/rocm/rocm_template_buffer.py' 2025-01-24T02:56:20.3227160Z adding 'torch/_inductor/codegen/xpu/__init__.py' 2025-01-24T02:56:20.3228820Z adding 'torch/_inductor/codegen/xpu/device_op_overrides.py' 2025-01-24T02:56:20.3229610Z adding 'torch/_inductor/compile_worker/__init__.py' 2025-01-24T02:56:20.3231170Z adding 'torch/_inductor/compile_worker/__main__.py' 2025-01-24T02:56:20.3234410Z adding 'torch/_inductor/compile_worker/subproc_pool.py' 2025-01-24T02:56:20.3235700Z adding 'torch/_inductor/compile_worker/watchdog.py' 2025-01-24T02:56:20.3236950Z adding 'torch/_inductor/fx_passes/__init__.py' 2025-01-24T02:56:20.3242000Z adding 'torch/_inductor/fx_passes/b2b_gemm.py' 2025-01-24T02:56:20.3245680Z adding 'torch/_inductor/fx_passes/binary_folding.py' 2025-01-24T02:56:20.3250640Z adding 'torch/_inductor/fx_passes/ddp_fusion.py' 2025-01-24T02:56:20.3252450Z adding 'torch/_inductor/fx_passes/decompose_mem_bound_mm.py' 2025-01-24T02:56:20.3253860Z adding 'torch/_inductor/fx_passes/dedupe_symint_uses.py' 2025-01-24T02:56:20.3258930Z adding 'torch/_inductor/fx_passes/efficient_conv_bn_eval.py' 2025-01-24T02:56:20.3261080Z adding 'torch/_inductor/fx_passes/freezing_patterns.py' 2025-01-24T02:56:20.3265880Z adding 'torch/_inductor/fx_passes/fuse_attention.py' 2025-01-24T02:56:20.3275150Z adding 'torch/_inductor/fx_passes/group_batch_fusion.py' 2025-01-24T02:56:20.3280990Z adding 'torch/_inductor/fx_passes/joint_graph.py' 2025-01-24T02:56:20.3286990Z adding 'torch/_inductor/fx_passes/micro_pipeline_tp.py' 2025-01-24T02:56:20.3288790Z adding 'torch/_inductor/fx_passes/misc_patterns.py' 2025-01-24T02:56:20.3298000Z adding 'torch/_inductor/fx_passes/mkldnn_fusion.py' 2025-01-24T02:56:20.3300330Z adding 'torch/_inductor/fx_passes/numeric_utils.py' 2025-01-24T02:56:20.3306190Z adding 'torch/_inductor/fx_passes/pad_mm.py' 2025-01-24T02:56:20.3316130Z adding 'torch/_inductor/fx_passes/post_grad.py' 2025-01-24T02:56:20.3323060Z adding 'torch/_inductor/fx_passes/pre_grad.py' 2025-01-24T02:56:20.3343880Z adding 'torch/_inductor/fx_passes/quantization.py' 2025-01-24T02:56:20.3350780Z adding 'torch/_inductor/fx_passes/reinplace.py' 2025-01-24T02:56:20.3352550Z adding 'torch/_inductor/fx_passes/replace_random.py' 2025-01-24T02:56:20.3372040Z adding 'torch/_inductor/fx_passes/split_cat.py' 2025-01-24T02:56:20.3373900Z adding 'torch/_inductor/fx_passes/serialized_patterns/__init__.py' 2025-01-24T02:56:20.3375670Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py' 2025-01-24T02:56:20.3377560Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py' 2025-01-24T02:56:20.3379500Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py' 2025-01-24T02:56:20.3381460Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py' 2025-01-24T02:56:20.3383080Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py' 2025-01-24T02:56:20.3385050Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py' 2025-01-24T02:56:20.3387250Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py' 2025-01-24T02:56:20.3390440Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py' 2025-01-24T02:56:20.3392760Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py' 2025-01-24T02:56:20.3395380Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py' 2025-01-24T02:56:20.3397360Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py' 2025-01-24T02:56:20.3399070Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py' 2025-01-24T02:56:20.3400850Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py' 2025-01-24T02:56:20.3402660Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py' 2025-01-24T02:56:20.3404340Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py' 2025-01-24T02:56:20.3406140Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py' 2025-01-24T02:56:20.3408150Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py' 2025-01-24T02:56:20.3410020Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py' 2025-01-24T02:56:20.3411860Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py' 2025-01-24T02:56:20.3412760Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py' 2025-01-24T02:56:20.3414190Z adding 'torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py' 2025-01-24T02:56:20.3415140Z adding 'torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py' 2025-01-24T02:56:20.3419970Z adding 'torch/_inductor/kernel/__init__.py' 2025-01-24T02:56:20.3420290Z adding 'torch/_inductor/kernel/bmm.py' 2025-01-24T02:56:20.3423660Z adding 'torch/_inductor/kernel/conv.py' 2025-01-24T02:56:20.3441960Z adding 'torch/_inductor/kernel/flex_attention.py' 2025-01-24T02:56:20.3447710Z adding 'torch/_inductor/kernel/flex_decoding.py' 2025-01-24T02:56:20.3453970Z adding 'torch/_inductor/kernel/mm.py' 2025-01-24T02:56:20.3458100Z adding 'torch/_inductor/kernel/mm_common.py' 2025-01-24T02:56:20.3460560Z adding 'torch/_inductor/kernel/mm_plus_mm.py' 2025-01-24T02:56:20.3467270Z adding 'torch/_inductor/kernel/mm_scaled.py' 2025-01-24T02:56:20.3468950Z adding 'torch/_inductor/kernel/unpack_mixed_mm.py' 2025-01-24T02:56:20.3470240Z adding 'torch/_inductor/package/__init__.py' 2025-01-24T02:56:20.3470970Z adding 'torch/_inductor/package/build_package.py' 2025-01-24T02:56:20.3474020Z adding 'torch/_inductor/package/package.py' 2025-01-24T02:56:20.3475280Z adding 'torch/_inductor/package/pt2_archive_constants.py' 2025-01-24T02:56:20.3476590Z adding 'torch/_inductor/runtime/__init__.py' 2025-01-24T02:56:20.3480540Z adding 'torch/_inductor/runtime/autotune_cache.py' 2025-01-24T02:56:20.3483340Z adding 'torch/_inductor/runtime/benchmarking.py' 2025-01-24T02:56:20.3484620Z adding 'torch/_inductor/runtime/cache_dir_utils.py' 2025-01-24T02:56:20.3486010Z adding 'torch/_inductor/runtime/compile_tasks.py' 2025-01-24T02:56:20.3488650Z adding 'torch/_inductor/runtime/coordinate_descent_tuner.py' 2025-01-24T02:56:20.3490180Z adding 'torch/_inductor/runtime/halide_helpers.py' 2025-01-24T02:56:20.3492220Z adding 'torch/_inductor/runtime/hints.py' 2025-01-24T02:56:20.3494040Z adding 'torch/_inductor/runtime/runtime_utils.py' 2025-01-24T02:56:20.3496300Z adding 'torch/_inductor/runtime/triton_compat.py' 2025-01-24T02:56:20.3500750Z adding 'torch/_inductor/runtime/triton_helpers.py' 2025-01-24T02:56:20.3518310Z adding 'torch/_inductor/runtime/triton_heuristics.py' 2025-01-24T02:56:20.3520180Z adding 'torch/_lazy/__init__.py' 2025-01-24T02:56:20.3522200Z adding 'torch/_lazy/closure.py' 2025-01-24T02:56:20.3523430Z adding 'torch/_lazy/computation.py' 2025-01-24T02:56:20.3524110Z adding 'torch/_lazy/config.py' 2025-01-24T02:56:20.3525460Z adding 'torch/_lazy/debug.py' 2025-01-24T02:56:20.3526690Z adding 'torch/_lazy/device_context.py' 2025-01-24T02:56:20.3529340Z adding 'torch/_lazy/extract_compiled_graph.py' 2025-01-24T02:56:20.3530090Z adding 'torch/_lazy/ir_cache.py' 2025-01-24T02:56:20.3531370Z adding 'torch/_lazy/metrics.py' 2025-01-24T02:56:20.3532690Z adding 'torch/_lazy/tensor_factory_functions.py' 2025-01-24T02:56:20.3533350Z adding 'torch/_lazy/ts_backend.py' 2025-01-24T02:56:20.3535060Z adding 'torch/_library/__init__.py' 2025-01-24T02:56:20.3537640Z adding 'torch/_library/autograd.py' 2025-01-24T02:56:20.3544290Z adding 'torch/_library/custom_ops.py' 2025-01-24T02:56:20.3547450Z adding 'torch/_library/fake_class_registry.py' 2025-01-24T02:56:20.3549710Z adding 'torch/_library/fake_impl.py' 2025-01-24T02:56:20.3552690Z adding 'torch/_library/infer_schema.py' 2025-01-24T02:56:20.3554150Z adding 'torch/_library/simple_registry.py' 2025-01-24T02:56:20.3557110Z adding 'torch/_library/triton.py' 2025-01-24T02:56:20.3561280Z adding 'torch/_library/utils.py' 2025-01-24T02:56:20.3562820Z adding 'torch/_logging/__init__.py' 2025-01-24T02:56:20.3573420Z adding 'torch/_logging/_internal.py' 2025-01-24T02:56:20.3575590Z adding 'torch/_logging/_registrations.py' 2025-01-24T02:56:20.3576970Z adding 'torch/_logging/scribe.py' 2025-01-24T02:56:20.3578240Z adding 'torch/_logging/structured.py' 2025-01-24T02:56:20.3579570Z adding 'torch/_numpy/__init__.py' 2025-01-24T02:56:20.3580900Z adding 'torch/_numpy/_binary_ufuncs_impl.py' 2025-01-24T02:56:20.3584110Z adding 'torch/_numpy/_casting_dicts.py' 2025-01-24T02:56:20.3587180Z adding 'torch/_numpy/_dtypes.py' 2025-01-24T02:56:20.3589240Z adding 'torch/_numpy/_dtypes_impl.py' 2025-01-24T02:56:20.3590570Z adding 'torch/_numpy/_funcs.py' 2025-01-24T02:56:20.3603680Z adding 'torch/_numpy/_funcs_impl.py' 2025-01-24T02:56:20.3605010Z adding 'torch/_numpy/_getlimits.py' 2025-01-24T02:56:20.3609110Z adding 'torch/_numpy/_ndarray.py' 2025-01-24T02:56:20.3611550Z adding 'torch/_numpy/_normalizations.py' 2025-01-24T02:56:20.3614260Z adding 'torch/_numpy/_reductions_impl.py' 2025-01-24T02:56:20.3616370Z adding 'torch/_numpy/_ufuncs.py' 2025-01-24T02:56:20.3617610Z adding 'torch/_numpy/_unary_ufuncs_impl.py' 2025-01-24T02:56:20.3620070Z adding 'torch/_numpy/_util.py' 2025-01-24T02:56:20.3621330Z adding 'torch/_numpy/fft.py' 2025-01-24T02:56:20.3623000Z adding 'torch/_numpy/linalg.py' 2025-01-24T02:56:20.3624710Z adding 'torch/_numpy/random.py' 2025-01-24T02:56:20.3625980Z adding 'torch/_numpy/testing/__init__.py' 2025-01-24T02:56:20.3642580Z adding 'torch/_numpy/testing/utils.py' 2025-01-24T02:56:20.3659160Z adding 'torch/_prims/__init__.py' 2025-01-24T02:56:20.3661570Z adding 'torch/_prims/context.py' 2025-01-24T02:56:20.3662960Z adding 'torch/_prims/debug_prims.py' 2025-01-24T02:56:20.3664300Z adding 'torch/_prims/executor.py' 2025-01-24T02:56:20.3666960Z adding 'torch/_prims/rng_prims.py' 2025-01-24T02:56:20.3683290Z adding 'torch/_prims_common/__init__.py' 2025-01-24T02:56:20.3687930Z adding 'torch/_prims_common/wrappers.py' 2025-01-24T02:56:20.3734780Z adding 'torch/_refs/__init__.py' 2025-01-24T02:56:20.3737370Z adding 'torch/_refs/_conversions.py' 2025-01-24T02:56:20.3740940Z adding 'torch/_refs/fft.py' 2025-01-24T02:56:20.3743950Z adding 'torch/_refs/linalg/__init__.py' 2025-01-24T02:56:20.3745190Z adding 'torch/_refs/nn/__init__.py' 2025-01-24T02:56:20.3753280Z adding 'torch/_refs/nn/functional/__init__.py' 2025-01-24T02:56:20.3755420Z adding 'torch/_refs/special/__init__.py' 2025-01-24T02:56:20.3756620Z adding 'torch/_strobelight/__init__.py' 2025-01-24T02:56:20.3763610Z adding 'torch/_strobelight/cli_function_profiler.py' 2025-01-24T02:56:20.3764040Z adding 'torch/_strobelight/compile_time_profiler.py' 2025-01-24T02:56:20.3764380Z adding 'torch/_subclasses/__init__.py' 2025-01-24T02:56:20.3764890Z adding 'torch/_subclasses/_fake_tensor_utils.py' 2025-01-24T02:56:20.3772340Z adding 'torch/_subclasses/fake_impls.py' 2025-01-24T02:56:20.3799910Z adding 'torch/_subclasses/fake_tensor.py' 2025-01-24T02:56:20.3803040Z adding 'torch/_subclasses/fake_utils.py' 2025-01-24T02:56:20.3810570Z adding 'torch/_subclasses/functional_tensor.py' 2025-01-24T02:56:20.3828840Z adding 'torch/_subclasses/meta_utils.py' 2025-01-24T02:56:20.3831510Z adding 'torch/_subclasses/schema_check_mode.py' 2025-01-24T02:56:20.3832710Z adding 'torch/_vendor/__init__.py' 2025-01-24T02:56:20.3834020Z adding 'torch/_vendor/packaging/__init__.py' 2025-01-24T02:56:20.3835280Z adding 'torch/_vendor/packaging/_structures.py' 2025-01-24T02:56:20.3838900Z adding 'torch/_vendor/packaging/version.py' 2025-01-24T02:56:20.3840860Z adding 'torch/accelerator/__init__.py' 2025-01-24T02:56:20.3842210Z adding 'torch/accelerator/_utils.py' 2025-01-24T02:56:20.3843410Z adding 'torch/amp/__init__.py' 2025-01-24T02:56:20.3848370Z adding 'torch/amp/autocast_mode.py' 2025-01-24T02:56:20.3855050Z adding 'torch/amp/grad_scaler.py' 2025-01-24T02:56:20.3856660Z adding 'torch/ao/__init__.py' 2025-01-24T02:56:20.3858140Z adding 'torch/ao/nn/__init__.py' 2025-01-24T02:56:20.3859330Z adding 'torch/ao/nn/intrinsic/__init__.py' 2025-01-24T02:56:20.3860830Z adding 'torch/ao/nn/intrinsic/modules/__init__.py' 2025-01-24T02:56:20.3862750Z adding 'torch/ao/nn/intrinsic/modules/fused.py' 2025-01-24T02:56:20.3864020Z adding 'torch/ao/nn/intrinsic/qat/__init__.py' 2025-01-24T02:56:20.3865360Z adding 'torch/ao/nn/intrinsic/qat/modules/__init__.py' 2025-01-24T02:56:20.3870170Z adding 'torch/ao/nn/intrinsic/qat/modules/conv_fused.py' 2025-01-24T02:56:20.3872390Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_fused.py' 2025-01-24T02:56:20.3873720Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_relu.py' 2025-01-24T02:56:20.3875030Z adding 'torch/ao/nn/intrinsic/quantized/__init__.py' 2025-01-24T02:56:20.3875850Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/__init__.py' 2025-01-24T02:56:20.3877330Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-01-24T02:56:20.3878800Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-01-24T02:56:20.3879610Z adding 'torch/ao/nn/intrinsic/quantized/modules/__init__.py' 2025-01-24T02:56:20.3881180Z adding 'torch/ao/nn/intrinsic/quantized/modules/bn_relu.py' 2025-01-24T02:56:20.3882650Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_add.py' 2025-01-24T02:56:20.3884370Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_relu.py' 2025-01-24T02:56:20.3886060Z adding 'torch/ao/nn/intrinsic/quantized/modules/linear_relu.py' 2025-01-24T02:56:20.3886920Z adding 'torch/ao/nn/qat/__init__.py' 2025-01-24T02:56:20.3888310Z adding 'torch/ao/nn/qat/dynamic/__init__.py' 2025-01-24T02:56:20.3889580Z adding 'torch/ao/nn/qat/dynamic/modules/__init__.py' 2025-01-24T02:56:20.3890870Z adding 'torch/ao/nn/qat/dynamic/modules/linear.py' 2025-01-24T02:56:20.3891650Z adding 'torch/ao/nn/qat/modules/__init__.py' 2025-01-24T02:56:20.3893920Z adding 'torch/ao/nn/qat/modules/conv.py' 2025-01-24T02:56:20.3895810Z adding 'torch/ao/nn/qat/modules/embedding_ops.py' 2025-01-24T02:56:20.3897310Z adding 'torch/ao/nn/qat/modules/linear.py' 2025-01-24T02:56:20.3898570Z adding 'torch/ao/nn/quantizable/__init__.py' 2025-01-24T02:56:20.3899820Z adding 'torch/ao/nn/quantizable/modules/__init__.py' 2025-01-24T02:56:20.3904250Z adding 'torch/ao/nn/quantizable/modules/activation.py' 2025-01-24T02:56:20.3908730Z adding 'torch/ao/nn/quantizable/modules/rnn.py' 2025-01-24T02:56:20.3910150Z adding 'torch/ao/nn/quantized/__init__.py' 2025-01-24T02:56:20.3914740Z adding 'torch/ao/nn/quantized/functional.py' 2025-01-24T02:56:20.3916010Z adding 'torch/ao/nn/quantized/dynamic/__init__.py' 2025-01-24T02:56:20.3917340Z adding 'torch/ao/nn/quantized/dynamic/modules/__init__.py' 2025-01-24T02:56:20.3919610Z adding 'torch/ao/nn/quantized/dynamic/modules/conv.py' 2025-01-24T02:56:20.3921700Z adding 'torch/ao/nn/quantized/dynamic/modules/linear.py' 2025-01-24T02:56:20.3929990Z adding 'torch/ao/nn/quantized/dynamic/modules/rnn.py' 2025-01-24T02:56:20.3932270Z adding 'torch/ao/nn/quantized/modules/__init__.py' 2025-01-24T02:56:20.3934720Z adding 'torch/ao/nn/quantized/modules/activation.py' 2025-01-24T02:56:20.3936260Z adding 'torch/ao/nn/quantized/modules/batchnorm.py' 2025-01-24T02:56:20.3941740Z adding 'torch/ao/nn/quantized/modules/conv.py' 2025-01-24T02:56:20.3943150Z adding 'torch/ao/nn/quantized/modules/dropout.py' 2025-01-24T02:56:20.3945980Z adding 'torch/ao/nn/quantized/modules/embedding_ops.py' 2025-01-24T02:56:20.3947950Z adding 'torch/ao/nn/quantized/modules/functional_modules.py' 2025-01-24T02:56:20.3951020Z adding 'torch/ao/nn/quantized/modules/linear.py' 2025-01-24T02:56:20.3952810Z adding 'torch/ao/nn/quantized/modules/normalization.py' 2025-01-24T02:56:20.3954080Z adding 'torch/ao/nn/quantized/modules/rnn.py' 2025-01-24T02:56:20.3955830Z adding 'torch/ao/nn/quantized/modules/utils.py' 2025-01-24T02:56:20.3957090Z adding 'torch/ao/nn/quantized/reference/__init__.py' 2025-01-24T02:56:20.3958410Z adding 'torch/ao/nn/quantized/reference/modules/__init__.py' 2025-01-24T02:56:20.3960450Z adding 'torch/ao/nn/quantized/reference/modules/conv.py' 2025-01-24T02:56:20.3961950Z adding 'torch/ao/nn/quantized/reference/modules/linear.py' 2025-01-24T02:56:20.3966340Z adding 'torch/ao/nn/quantized/reference/modules/rnn.py' 2025-01-24T02:56:20.3967870Z adding 'torch/ao/nn/quantized/reference/modules/sparse.py' 2025-01-24T02:56:20.3970530Z adding 'torch/ao/nn/quantized/reference/modules/utils.py' 2025-01-24T02:56:20.3971830Z adding 'torch/ao/nn/sparse/__init__.py' 2025-01-24T02:56:20.3976950Z adding 'torch/ao/nn/sparse/quantized/__init__.py' 2025-01-24T02:56:20.3977320Z adding 'torch/ao/nn/sparse/quantized/linear.py' 2025-01-24T02:56:20.3977660Z adding 'torch/ao/nn/sparse/quantized/utils.py' 2025-01-24T02:56:20.3978170Z adding 'torch/ao/nn/sparse/quantized/dynamic/__init__.py' 2025-01-24T02:56:20.3980480Z adding 'torch/ao/nn/sparse/quantized/dynamic/linear.py' 2025-01-24T02:56:20.3981730Z adding 'torch/ao/ns/__init__.py' 2025-01-24T02:56:20.3985560Z adding 'torch/ao/ns/_numeric_suite.py' 2025-01-24T02:56:20.3993630Z adding 'torch/ao/ns/_numeric_suite_fx.py' 2025-01-24T02:56:20.3994960Z adding 'torch/ao/ns/fx/__init__.py' 2025-01-24T02:56:20.3999370Z adding 'torch/ao/ns/fx/graph_matcher.py' 2025-01-24T02:56:20.4008210Z adding 'torch/ao/ns/fx/graph_passes.py' 2025-01-24T02:56:20.4011760Z adding 'torch/ao/ns/fx/mappings.py' 2025-01-24T02:56:20.4022400Z adding 'torch/ao/ns/fx/n_shadows_utils.py' 2025-01-24T02:56:20.4024020Z adding 'torch/ao/ns/fx/ns_types.py' 2025-01-24T02:56:20.4026280Z adding 'torch/ao/ns/fx/pattern_utils.py' 2025-01-24T02:56:20.4028850Z adding 'torch/ao/ns/fx/qconfig_multi_mapping.py' 2025-01-24T02:56:20.4033100Z adding 'torch/ao/ns/fx/utils.py' 2025-01-24T02:56:20.4035830Z adding 'torch/ao/ns/fx/weight_utils.py' 2025-01-24T02:56:20.4037210Z adding 'torch/ao/pruning/__init__.py' 2025-01-24T02:56:20.4038080Z adding 'torch/ao/pruning/_mappings.py' 2025-01-24T02:56:20.4039400Z adding 'torch/ao/pruning/_experimental/__init__.py' 2025-01-24T02:56:20.4040820Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/__init__.py' 2025-01-24T02:56:20.4045100Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py' 2025-01-24T02:56:20.4046560Z adding 'torch/ao/pruning/_experimental/data_scheduler/__init__.py' 2025-01-24T02:56:20.4048690Z adding 'torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py' 2025-01-24T02:56:20.4049660Z adding 'torch/ao/pruning/_experimental/data_sparsifier/__init__.py' 2025-01-24T02:56:20.4053450Z adding 'torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py' 2025-01-24T02:56:20.4055760Z adding 'torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py' 2025-01-24T02:56:20.4057610Z adding 'torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py' 2025-01-24T02:56:20.4058480Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py' 2025-01-24T02:56:20.4059980Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py' 2025-01-24T02:56:20.4061020Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py' 2025-01-24T02:56:20.4063080Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py' 2025-01-24T02:56:20.4064800Z adding 'torch/ao/pruning/_experimental/pruner/FPGM_pruner.py' 2025-01-24T02:56:20.4065530Z adding 'torch/ao/pruning/_experimental/pruner/__init__.py' 2025-01-24T02:56:20.4068420Z adding 'torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py' 2025-01-24T02:56:20.4069870Z adding 'torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py' 2025-01-24T02:56:20.4070730Z adding 'torch/ao/pruning/_experimental/pruner/match_utils.py' 2025-01-24T02:56:20.4072300Z adding 'torch/ao/pruning/_experimental/pruner/parametrization.py' 2025-01-24T02:56:20.4076090Z adding 'torch/ao/pruning/_experimental/pruner/prune_functions.py' 2025-01-24T02:56:20.4077490Z adding 'torch/ao/pruning/_experimental/pruner/saliency_pruner.py' 2025-01-24T02:56:20.4078210Z adding 'torch/ao/pruning/scheduler/__init__.py' 2025-01-24T02:56:20.4080420Z adding 'torch/ao/pruning/scheduler/base_scheduler.py' 2025-01-24T02:56:20.4081990Z adding 'torch/ao/pruning/scheduler/cubic_scheduler.py' 2025-01-24T02:56:20.4083400Z adding 'torch/ao/pruning/scheduler/lambda_scheduler.py' 2025-01-24T02:56:20.4084240Z adding 'torch/ao/pruning/sparsifier/__init__.py' 2025-01-24T02:56:20.4087850Z adding 'torch/ao/pruning/sparsifier/base_sparsifier.py' 2025-01-24T02:56:20.4089340Z adding 'torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py' 2025-01-24T02:56:20.4091110Z adding 'torch/ao/pruning/sparsifier/utils.py' 2025-01-24T02:56:20.4093640Z adding 'torch/ao/pruning/sparsifier/weight_norm_sparsifier.py' 2025-01-24T02:56:20.4096000Z adding 'torch/ao/quantization/__init__.py' 2025-01-24T02:56:20.4098000Z adding 'torch/ao/quantization/_correct_bias.py' 2025-01-24T02:56:20.4100640Z adding 'torch/ao/quantization/_equalize.py' 2025-01-24T02:56:20.4102770Z adding 'torch/ao/quantization/_learnable_fake_quantize.py' 2025-01-24T02:56:20.4107000Z adding 'torch/ao/quantization/fake_quantize.py' 2025-01-24T02:56:20.4109210Z adding 'torch/ao/quantization/fuse_modules.py' 2025-01-24T02:56:20.4111650Z adding 'torch/ao/quantization/fuser_method_mappings.py' 2025-01-24T02:56:20.4127020Z adding 'torch/ao/quantization/observer.py' 2025-01-24T02:56:20.4132000Z adding 'torch/ao/quantization/qconfig.py' 2025-01-24T02:56:20.4135180Z adding 'torch/ao/quantization/qconfig_mapping.py' 2025-01-24T02:56:20.4136420Z adding 'torch/ao/quantization/quant_type.py' 2025-01-24T02:56:20.4139200Z adding 'torch/ao/quantization/quantization_mappings.py' 2025-01-24T02:56:20.4145490Z adding 'torch/ao/quantization/quantize.py' 2025-01-24T02:56:20.4151290Z adding 'torch/ao/quantization/quantize_fx.py' 2025-01-24T02:56:20.4154580Z adding 'torch/ao/quantization/quantize_jit.py' 2025-01-24T02:56:20.4157010Z adding 'torch/ao/quantization/quantize_pt2e.py' 2025-01-24T02:56:20.4158320Z adding 'torch/ao/quantization/stubs.py' 2025-01-24T02:56:20.4164610Z adding 'torch/ao/quantization/utils.py' 2025-01-24T02:56:20.4166200Z adding 'torch/ao/quantization/backend_config/__init__.py' 2025-01-24T02:56:20.4170700Z adding 'torch/ao/quantization/backend_config/_common_operator_config_utils.py' 2025-01-24T02:56:20.4172590Z adding 'torch/ao/quantization/backend_config/_qnnpack_pt2e.py' 2025-01-24T02:56:20.4178270Z adding 'torch/ao/quantization/backend_config/backend_config.py' 2025-01-24T02:56:20.4181430Z adding 'torch/ao/quantization/backend_config/executorch.py' 2025-01-24T02:56:20.4182930Z adding 'torch/ao/quantization/backend_config/fbgemm.py' 2025-01-24T02:56:20.4184650Z adding 'torch/ao/quantization/backend_config/native.py' 2025-01-24T02:56:20.4185340Z adding 'torch/ao/quantization/backend_config/observation_type.py' 2025-01-24T02:56:20.4188630Z adding 'torch/ao/quantization/backend_config/onednn.py' 2025-01-24T02:56:20.4190220Z adding 'torch/ao/quantization/backend_config/qnnpack.py' 2025-01-24T02:56:20.4191690Z adding 'torch/ao/quantization/backend_config/tensorrt.py' 2025-01-24T02:56:20.4194570Z adding 'torch/ao/quantization/backend_config/utils.py' 2025-01-24T02:56:20.4195970Z adding 'torch/ao/quantization/backend_config/x86.py' 2025-01-24T02:56:20.4197330Z adding 'torch/ao/quantization/fx/__init__.py' 2025-01-24T02:56:20.4203440Z adding 'torch/ao/quantization/fx/_decomposed.py' 2025-01-24T02:56:20.4211510Z adding 'torch/ao/quantization/fx/_equalize.py' 2025-01-24T02:56:20.4221780Z adding 'torch/ao/quantization/fx/_lower_to_native_backend.py' 2025-01-24T02:56:20.4233960Z adding 'torch/ao/quantization/fx/convert.py' 2025-01-24T02:56:20.4237610Z adding 'torch/ao/quantization/fx/custom_config.py' 2025-01-24T02:56:20.4239840Z adding 'torch/ao/quantization/fx/fuse.py' 2025-01-24T02:56:20.4241560Z adding 'torch/ao/quantization/fx/fuse_handler.py' 2025-01-24T02:56:20.4243370Z adding 'torch/ao/quantization/fx/graph_module.py' 2025-01-24T02:56:20.4244640Z adding 'torch/ao/quantization/fx/lower_to_fbgemm.py' 2025-01-24T02:56:20.4245290Z adding 'torch/ao/quantization/fx/lower_to_qnnpack.py' 2025-01-24T02:56:20.4248070Z adding 'torch/ao/quantization/fx/lstm_utils.py' 2025-01-24T02:56:20.4250520Z adding 'torch/ao/quantization/fx/match_utils.py' 2025-01-24T02:56:20.4252140Z adding 'torch/ao/quantization/fx/pattern_utils.py' 2025-01-24T02:56:20.4271720Z adding 'torch/ao/quantization/fx/prepare.py' 2025-01-24T02:56:20.4275630Z adding 'torch/ao/quantization/fx/qconfig_mapping_utils.py' 2025-01-24T02:56:20.4277830Z adding 'torch/ao/quantization/fx/quantize_handler.py' 2025-01-24T02:56:20.4279080Z adding 'torch/ao/quantization/fx/tracer.py' 2025-01-24T02:56:20.4287160Z adding 'torch/ao/quantization/fx/utils.py' 2025-01-24T02:56:20.4288640Z adding 'torch/ao/quantization/fx/_model_report/__init__.py' 2025-01-24T02:56:20.4303080Z adding 'torch/ao/quantization/fx/_model_report/detector.py' 2025-01-24T02:56:20.4309780Z adding 'torch/ao/quantization/fx/_model_report/model_report.py' 2025-01-24T02:56:20.4312820Z adding 'torch/ao/quantization/fx/_model_report/model_report_observer.py' 2025-01-24T02:56:20.4319490Z adding 'torch/ao/quantization/fx/_model_report/model_report_visualizer.py' 2025-01-24T02:56:20.4320890Z adding 'torch/ao/quantization/pt2e/__init__.py' 2025-01-24T02:56:20.4326840Z adding 'torch/ao/quantization/pt2e/_affine_quantization.py' 2025-01-24T02:56:20.4330020Z adding 'torch/ao/quantization/pt2e/_numeric_debugger.py' 2025-01-24T02:56:20.4331510Z adding 'torch/ao/quantization/pt2e/duplicate_dq_pass.py' 2025-01-24T02:56:20.4333670Z adding 'torch/ao/quantization/pt2e/export_utils.py' 2025-01-24T02:56:20.4335640Z adding 'torch/ao/quantization/pt2e/graph_utils.py' 2025-01-24T02:56:20.4338130Z adding 'torch/ao/quantization/pt2e/port_metadata_pass.py' 2025-01-24T02:56:20.4343330Z adding 'torch/ao/quantization/pt2e/prepare.py' 2025-01-24T02:56:20.4350740Z adding 'torch/ao/quantization/pt2e/qat_utils.py' 2025-01-24T02:56:20.4356110Z adding 'torch/ao/quantization/pt2e/utils.py' 2025-01-24T02:56:20.4357550Z adding 'torch/ao/quantization/pt2e/representation/__init__.py' 2025-01-24T02:56:20.4361840Z adding 'torch/ao/quantization/pt2e/representation/rewrite.py' 2025-01-24T02:56:20.4363320Z adding 'torch/ao/quantization/quantizer/__init__.py' 2025-01-24T02:56:20.4364900Z adding 'torch/ao/quantization/quantizer/composable_quantizer.py' 2025-01-24T02:56:20.4366410Z adding 'torch/ao/quantization/quantizer/embedding_quantizer.py' 2025-01-24T02:56:20.4368530Z adding 'torch/ao/quantization/quantizer/quantizer.py' 2025-01-24T02:56:20.4370070Z adding 'torch/ao/quantization/quantizer/utils.py' 2025-01-24T02:56:20.4380210Z adding 'torch/ao/quantization/quantizer/x86_inductor_quantizer.py' 2025-01-24T02:56:20.4383760Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer.py' 2025-01-24T02:56:20.4390330Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py' 2025-01-24T02:56:20.4392140Z adding 'torch/ao/quantization/quantizer/xpu_inductor_quantizer.py' 2025-01-24T02:56:20.4398090Z adding 'torch/autograd/__init__.py' 2025-01-24T02:56:20.4399880Z adding 'torch/autograd/anomaly_mode.py' 2025-01-24T02:56:20.4402110Z adding 'torch/autograd/forward_ad.py' 2025-01-24T02:56:20.4409060Z adding 'torch/autograd/function.py' 2025-01-24T02:56:20.4418510Z adding 'torch/autograd/functional.py' 2025-01-24T02:56:20.4421500Z adding 'torch/autograd/grad_mode.py' 2025-01-24T02:56:20.4442060Z adding 'torch/autograd/gradcheck.py' 2025-01-24T02:56:20.4448990Z adding 'torch/autograd/graph.py' 2025-01-24T02:56:20.4459160Z adding 'torch/autograd/profiler.py' 2025-01-24T02:56:20.4462190Z adding 'torch/autograd/profiler_legacy.py' 2025-01-24T02:56:20.4470630Z adding 'torch/autograd/profiler_util.py' 2025-01-24T02:56:20.4471900Z adding 'torch/autograd/variable.py' 2025-01-24T02:56:20.4473200Z adding 'torch/autograd/_functions/__init__.py' 2025-01-24T02:56:20.4474590Z adding 'torch/autograd/_functions/tensor.py' 2025-01-24T02:56:20.4475970Z adding 'torch/autograd/_functions/utils.py' 2025-01-24T02:56:20.4477720Z adding 'torch/backends/__init__.py' 2025-01-24T02:56:20.4478960Z adding 'torch/backends/_coreml/__init__.py' 2025-01-24T02:56:20.4480530Z adding 'torch/backends/_coreml/preprocess.py' 2025-01-24T02:56:20.4481780Z adding 'torch/backends/_nnapi/__init__.py' 2025-01-24T02:56:20.4483810Z adding 'torch/backends/_nnapi/prepare.py' 2025-01-24T02:56:20.4498880Z adding 'torch/backends/_nnapi/serializer.py' 2025-01-24T02:56:20.4500490Z adding 'torch/backends/cpu/__init__.py' 2025-01-24T02:56:20.4504110Z adding 'torch/backends/cuda/__init__.py' 2025-01-24T02:56:20.4506310Z adding 'torch/backends/cudnn/__init__.py' 2025-01-24T02:56:20.4507570Z adding 'torch/backends/cudnn/rnn.py' 2025-01-24T02:56:20.4509040Z adding 'torch/backends/cusparselt/__init__.py' 2025-01-24T02:56:20.4510270Z adding 'torch/backends/kleidiai/__init__.py' 2025-01-24T02:56:20.4511490Z adding 'torch/backends/mha/__init__.py' 2025-01-24T02:56:20.4512900Z adding 'torch/backends/mkl/__init__.py' 2025-01-24T02:56:20.4514500Z adding 'torch/backends/mkldnn/__init__.py' 2025-01-24T02:56:20.4515840Z adding 'torch/backends/mps/__init__.py' 2025-01-24T02:56:20.4517160Z adding 'torch/backends/nnpack/__init__.py' 2025-01-24T02:56:20.4517980Z adding 'torch/backends/openmp/__init__.py' 2025-01-24T02:56:20.4519910Z adding 'torch/backends/opt_einsum/__init__.py' 2025-01-24T02:56:20.4521390Z adding 'torch/backends/quantized/__init__.py' 2025-01-24T02:56:20.4522600Z adding 'torch/backends/xeon/__init__.py' 2025-01-24T02:56:20.4529570Z adding 'torch/backends/xeon/run_cpu.py' 2025-01-24T02:56:20.4531010Z adding 'torch/backends/xnnpack/__init__.py' 2025-01-24T02:56:20.5700630Z adding 'torch/bin/protoc' 2025-01-24T02:56:20.6881220Z adding 'torch/bin/protoc-3.13.0.0' 2025-01-24T02:56:20.6909700Z adding 'torch/bin/torch_shm_manager' 2025-01-24T02:56:20.6914690Z adding 'torch/compiler/__init__.py' 2025-01-24T02:56:20.6916660Z adding 'torch/compiler/_cache.py' 2025-01-24T02:56:20.6918240Z adding 'torch/compiler/config.py' 2025-01-24T02:56:20.6919460Z adding 'torch/contrib/__init__.py' 2025-01-24T02:56:20.6921480Z adding 'torch/contrib/_tensorboard_vis.py' 2025-01-24T02:56:20.6923290Z adding 'torch/cpu/__init__.py' 2025-01-24T02:56:20.6924500Z adding 'torch/cpu/amp/__init__.py' 2025-01-24T02:56:20.6925720Z adding 'torch/cpu/amp/autocast_mode.py' 2025-01-24T02:56:20.6926940Z adding 'torch/cpu/amp/grad_scaler.py' 2025-01-24T02:56:20.6938890Z adding 'torch/cuda/__init__.py' 2025-01-24T02:56:20.6940370Z adding 'torch/cuda/_gpu_trace.py' 2025-01-24T02:56:20.6946280Z adding 'torch/cuda/_memory_viz.py' 2025-01-24T02:56:20.6951140Z adding 'torch/cuda/_sanitizer.py' 2025-01-24T02:56:20.6952570Z adding 'torch/cuda/_utils.py' 2025-01-24T02:56:20.6953450Z adding 'torch/cuda/comm.py' 2025-01-24T02:56:20.6954400Z adding 'torch/cuda/error.py' 2025-01-24T02:56:20.6956060Z adding 'torch/cuda/gds.py' 2025-01-24T02:56:20.6960940Z adding 'torch/cuda/graphs.py' 2025-01-24T02:56:20.6963000Z adding 'torch/cuda/jiterator.py' 2025-01-24T02:56:20.6971790Z adding 'torch/cuda/memory.py' 2025-01-24T02:56:20.6973610Z adding 'torch/cuda/nccl.py' 2025-01-24T02:56:20.6975120Z adding 'torch/cuda/nvtx.py' 2025-01-24T02:56:20.6976490Z adding 'torch/cuda/profiler.py' 2025-01-24T02:56:20.6982080Z adding 'torch/cuda/random.py' 2025-01-24T02:56:20.6982360Z adding 'torch/cuda/sparse.py' 2025-01-24T02:56:20.6982620Z adding 'torch/cuda/streams.py' 2025-01-24T02:56:20.6985950Z adding 'torch/cuda/tunable.py' 2025-01-24T02:56:20.6987270Z adding 'torch/cuda/amp/__init__.py' 2025-01-24T02:56:20.6988610Z adding 'torch/cuda/amp/autocast_mode.py' 2025-01-24T02:56:20.6989290Z adding 'torch/cuda/amp/common.py' 2025-01-24T02:56:20.6990690Z adding 'torch/cuda/amp/grad_scaler.py' 2025-01-24T02:56:20.6993080Z adding 'torch/distributed/__init__.py' 2025-01-24T02:56:20.6994340Z adding 'torch/distributed/_checkpointable.py' 2025-01-24T02:56:20.6995590Z adding 'torch/distributed/_composable_state.py' 2025-01-24T02:56:20.7004430Z adding 'torch/distributed/_functional_collectives.py' 2025-01-24T02:56:20.7006010Z adding 'torch/distributed/_functional_collectives_impl.py' 2025-01-24T02:56:20.7011630Z adding 'torch/distributed/_state_dict_utils.py' 2025-01-24T02:56:20.7013180Z adding 'torch/distributed/argparse_util.py' 2025-01-24T02:56:20.7014730Z adding 'torch/distributed/c10d_logger.py' 2025-01-24T02:56:20.7016960Z adding 'torch/distributed/collective_utils.py' 2025-01-24T02:56:20.7018170Z adding 'torch/distributed/constants.py' 2025-01-24T02:56:20.7027870Z adding 'torch/distributed/device_mesh.py' 2025-01-24T02:56:20.7073680Z adding 'torch/distributed/distributed_c10d.py' 2025-01-24T02:56:20.7076970Z adding 'torch/distributed/launch.py' 2025-01-24T02:56:20.7078190Z adding 'torch/distributed/logging_handlers.py' 2025-01-24T02:56:20.7079840Z adding 'torch/distributed/remote_device.py' 2025-01-24T02:56:20.7082310Z adding 'torch/distributed/rendezvous.py' 2025-01-24T02:56:20.7090140Z adding 'torch/distributed/run.py' 2025-01-24T02:56:20.7093570Z adding 'torch/distributed/utils.py' 2025-01-24T02:56:20.7094960Z adding 'torch/distributed/_composable/__init__.py' 2025-01-24T02:56:20.7096810Z adding 'torch/distributed/_composable/checkpoint_activation.py' 2025-01-24T02:56:20.7099370Z adding 'torch/distributed/_composable/contract.py' 2025-01-24T02:56:20.7101960Z adding 'torch/distributed/_composable/replicate.py' 2025-01-24T02:56:20.7103250Z adding 'torch/distributed/_composable/fsdp/__init__.py' 2025-01-24T02:56:20.7104000Z adding 'torch/distributed/_composable/fsdp/fully_shard.py' 2025-01-24T02:56:20.7105500Z adding 'torch/distributed/_shard/__init__.py' 2025-01-24T02:56:20.7106740Z adding 'torch/distributed/_shard/_utils.py' 2025-01-24T02:56:20.7109680Z adding 'torch/distributed/_shard/api.py' 2025-01-24T02:56:20.7111100Z adding 'torch/distributed/_shard/common_op_utils.py' 2025-01-24T02:56:20.7112360Z adding 'torch/distributed/_shard/metadata.py' 2025-01-24T02:56:20.7113590Z adding 'torch/distributed/_shard/op_registry_utils.py' 2025-01-24T02:56:20.7114870Z adding 'torch/distributed/_shard/sharder.py' 2025-01-24T02:56:20.7116140Z adding 'torch/distributed/_shard/checkpoint/__init__.py' 2025-01-24T02:56:20.7117650Z adding 'torch/distributed/_shard/sharded_optim/__init__.py' 2025-01-24T02:56:20.7119220Z adding 'torch/distributed/_shard/sharded_optim/api.py' 2025-01-24T02:56:20.7122670Z adding 'torch/distributed/_shard/sharded_tensor/__init__.py' 2025-01-24T02:56:20.7133140Z adding 'torch/distributed/_shard/sharded_tensor/api.py' 2025-01-24T02:56:20.7134540Z adding 'torch/distributed/_shard/sharded_tensor/logger.py' 2025-01-24T02:56:20.7135360Z adding 'torch/distributed/_shard/sharded_tensor/logging_handlers.py' 2025-01-24T02:56:20.7136970Z adding 'torch/distributed/_shard/sharded_tensor/metadata.py' 2025-01-24T02:56:20.7139410Z adding 'torch/distributed/_shard/sharded_tensor/reshard.py' 2025-01-24T02:56:20.7140820Z adding 'torch/distributed/_shard/sharded_tensor/shard.py' 2025-01-24T02:56:20.7143170Z adding 'torch/distributed/_shard/sharded_tensor/utils.py' 2025-01-24T02:56:20.7144530Z adding 'torch/distributed/_shard/sharded_tensor/_ops/__init__.py' 2025-01-24T02:56:20.7146130Z adding 'torch/distributed/_shard/sharded_tensor/_ops/_common.py' 2025-01-24T02:56:20.7147500Z adding 'torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py' 2025-01-24T02:56:20.7149230Z adding 'torch/distributed/_shard/sharded_tensor/_ops/init.py' 2025-01-24T02:56:20.7150010Z adding 'torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py' 2025-01-24T02:56:20.7152280Z adding 'torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py' 2025-01-24T02:56:20.7153130Z adding 'torch/distributed/_shard/sharding_plan/__init__.py' 2025-01-24T02:56:20.7154970Z adding 'torch/distributed/_shard/sharding_plan/api.py' 2025-01-24T02:56:20.7156300Z adding 'torch/distributed/_shard/sharding_spec/__init__.py' 2025-01-24T02:56:20.7158640Z adding 'torch/distributed/_shard/sharding_spec/_internals.py' 2025-01-24T02:56:20.7161250Z adding 'torch/distributed/_shard/sharding_spec/api.py' 2025-01-24T02:56:20.7163810Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py' 2025-01-24T02:56:20.7164740Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py' 2025-01-24T02:56:20.7168250Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py' 2025-01-24T02:56:20.7171090Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py' 2025-01-24T02:56:20.7175230Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py' 2025-01-24T02:56:20.7176660Z adding 'torch/distributed/_sharded_tensor/__init__.py' 2025-01-24T02:56:20.7177990Z adding 'torch/distributed/_sharding_spec/__init__.py' 2025-01-24T02:56:20.7189200Z adding 'torch/distributed/_symmetric_memory/__init__.py' 2025-01-24T02:56:20.7190890Z adding 'torch/distributed/_tensor/__init__.py' 2025-01-24T02:56:20.7192140Z adding 'torch/distributed/_tensor/api.py' 2025-01-24T02:56:20.7192830Z adding 'torch/distributed/_tensor/placement_types.py' 2025-01-24T02:56:20.7194420Z adding 'torch/distributed/_tools/__init__.py' 2025-01-24T02:56:20.7199300Z adding 'torch/distributed/_tools/fsdp2_mem_tracker.py' 2025-01-24T02:56:20.7202030Z adding 'torch/distributed/_tools/ilp_utils.py' 2025-01-24T02:56:20.7210730Z adding 'torch/distributed/_tools/mem_tracker.py' 2025-01-24T02:56:20.7213580Z adding 'torch/distributed/_tools/memory_tracker.py' 2025-01-24T02:56:20.7216270Z adding 'torch/distributed/_tools/mod_tracker.py' 2025-01-24T02:56:20.7220720Z adding 'torch/distributed/_tools/runtime_estimator.py' 2025-01-24T02:56:20.7229740Z adding 'torch/distributed/_tools/sac_estimator.py' 2025-01-24T02:56:20.7232790Z adding 'torch/distributed/_tools/sac_ilp.py' 2025-01-24T02:56:20.7234190Z adding 'torch/distributed/algorithms/__init__.py' 2025-01-24T02:56:20.7237540Z adding 'torch/distributed/algorithms/join.py' 2025-01-24T02:56:20.7238850Z adding 'torch/distributed/algorithms/_checkpoint/__init__.py' 2025-01-24T02:56:20.7241910Z adding 'torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py' 2025-01-24T02:56:20.7246720Z adding 'torch/distributed/algorithms/_comm_hooks/__init__.py' 2025-01-24T02:56:20.7247340Z adding 'torch/distributed/algorithms/_comm_hooks/default_hooks.py' 2025-01-24T02:56:20.7247860Z adding 'torch/distributed/algorithms/_optimizer_overlap/__init__.py' 2025-01-24T02:56:20.7248420Z adding 'torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py' 2025-01-24T02:56:20.7249120Z adding 'torch/distributed/algorithms/_quantization/__init__.py' 2025-01-24T02:56:20.7250870Z adding 'torch/distributed/algorithms/_quantization/quantization.py' 2025-01-24T02:56:20.7252610Z adding 'torch/distributed/algorithms/ddp_comm_hooks/__init__.py' 2025-01-24T02:56:20.7256770Z adding 'torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py' 2025-01-24T02:56:20.7258220Z adding 'torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py' 2025-01-24T02:56:20.7260040Z adding 'torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py' 2025-01-24T02:56:20.7261590Z adding 'torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py' 2025-01-24T02:56:20.7263510Z adding 'torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py' 2025-01-24T02:56:20.7265350Z adding 'torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py' 2025-01-24T02:56:20.7273520Z adding 'torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py' 2025-01-24T02:56:20.7275690Z adding 'torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py' 2025-01-24T02:56:20.7276590Z adding 'torch/distributed/algorithms/model_averaging/__init__.py' 2025-01-24T02:56:20.7278810Z adding 'torch/distributed/algorithms/model_averaging/averagers.py' 2025-01-24T02:56:20.7281420Z adding 'torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py' 2025-01-24T02:56:20.7282860Z adding 'torch/distributed/algorithms/model_averaging/utils.py' 2025-01-24T02:56:20.7284300Z adding 'torch/distributed/autograd/__init__.py' 2025-01-24T02:56:20.7285510Z adding 'torch/distributed/checkpoint/__init__.py' 2025-01-24T02:56:20.7287260Z adding 'torch/distributed/checkpoint/_checkpointer.py' 2025-01-24T02:56:20.7288680Z adding 'torch/distributed/checkpoint/_dedup_save_plans.py' 2025-01-24T02:56:20.7289990Z adding 'torch/distributed/checkpoint/_dedup_tensors.py' 2025-01-24T02:56:20.7291520Z adding 'torch/distributed/checkpoint/_extension.py' 2025-01-24T02:56:20.7293330Z adding 'torch/distributed/checkpoint/_fsspec_filesystem.py' 2025-01-24T02:56:20.7294680Z adding 'torch/distributed/checkpoint/_nested_dict.py' 2025-01-24T02:56:20.7296250Z adding 'torch/distributed/checkpoint/_sharded_tensor_utils.py' 2025-01-24T02:56:20.7297170Z adding 'torch/distributed/checkpoint/_storage_utils.py' 2025-01-24T02:56:20.7299320Z adding 'torch/distributed/checkpoint/_traverse.py' 2025-01-24T02:56:20.7299990Z adding 'torch/distributed/checkpoint/_version.py' 2025-01-24T02:56:20.7301460Z adding 'torch/distributed/checkpoint/api.py' 2025-01-24T02:56:20.7306060Z adding 'torch/distributed/checkpoint/default_planner.py' 2025-01-24T02:56:20.7312500Z adding 'torch/distributed/checkpoint/filesystem.py' 2025-01-24T02:56:20.7315220Z adding 'torch/distributed/checkpoint/format_utils.py' 2025-01-24T02:56:20.7316800Z adding 'torch/distributed/checkpoint/logger.py' 2025-01-24T02:56:20.7317640Z adding 'torch/distributed/checkpoint/logging_handlers.py' 2025-01-24T02:56:20.7319660Z adding 'torch/distributed/checkpoint/metadata.py' 2025-01-24T02:56:20.7322760Z adding 'torch/distributed/checkpoint/optimizer.py' 2025-01-24T02:56:20.7326290Z adding 'torch/distributed/checkpoint/planner.py' 2025-01-24T02:56:20.7329320Z adding 'torch/distributed/checkpoint/planner_helpers.py' 2025-01-24T02:56:20.7330610Z adding 'torch/distributed/checkpoint/resharding.py' 2025-01-24T02:56:20.7332340Z adding 'torch/distributed/checkpoint/staging.py' 2025-01-24T02:56:20.7342670Z adding 'torch/distributed/checkpoint/state_dict.py' 2025-01-24T02:56:20.7346040Z adding 'torch/distributed/checkpoint/state_dict_loader.py' 2025-01-24T02:56:20.7349120Z adding 'torch/distributed/checkpoint/state_dict_saver.py' 2025-01-24T02:56:20.7350410Z adding 'torch/distributed/checkpoint/stateful.py' 2025-01-24T02:56:20.7352550Z adding 'torch/distributed/checkpoint/storage.py' 2025-01-24T02:56:20.7355740Z adding 'torch/distributed/checkpoint/utils.py' 2025-01-24T02:56:20.7357670Z adding 'torch/distributed/elastic/__init__.py' 2025-01-24T02:56:20.7358930Z adding 'torch/distributed/elastic/control_plane.py' 2025-01-24T02:56:20.7359860Z adding 'torch/distributed/elastic/agent/__init__.py' 2025-01-24T02:56:20.7361590Z adding 'torch/distributed/elastic/agent/server/__init__.py' 2025-01-24T02:56:20.7370290Z adding 'torch/distributed/elastic/agent/server/api.py' 2025-01-24T02:56:20.7371770Z adding 'torch/distributed/elastic/agent/server/health_check_server.py' 2025-01-24T02:56:20.7375390Z adding 'torch/distributed/elastic/agent/server/local_elastic_agent.py' 2025-01-24T02:56:20.7377520Z adding 'torch/distributed/elastic/events/__init__.py' 2025-01-24T02:56:20.7378980Z adding 'torch/distributed/elastic/events/api.py' 2025-01-24T02:56:20.7379830Z adding 'torch/distributed/elastic/events/handlers.py' 2025-01-24T02:56:20.7382120Z adding 'torch/distributed/elastic/metrics/__init__.py' 2025-01-24T02:56:20.7384010Z adding 'torch/distributed/elastic/metrics/api.py' 2025-01-24T02:56:20.7386630Z adding 'torch/distributed/elastic/multiprocessing/__init__.py' 2025-01-24T02:56:20.7393850Z adding 'torch/distributed/elastic/multiprocessing/api.py' 2025-01-24T02:56:20.7395490Z adding 'torch/distributed/elastic/multiprocessing/redirects.py' 2025-01-24T02:56:20.7397320Z adding 'torch/distributed/elastic/multiprocessing/tail_log.py' 2025-01-24T02:56:20.7401310Z adding 'torch/distributed/elastic/multiprocessing/errors/__init__.py' 2025-01-24T02:56:20.7403440Z adding 'torch/distributed/elastic/multiprocessing/errors/error_handler.py' 2025-01-24T02:56:20.7404330Z adding 'torch/distributed/elastic/multiprocessing/errors/handlers.py' 2025-01-24T02:56:20.7406170Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py' 2025-01-24T02:56:20.7406920Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py' 2025-01-24T02:56:20.7409460Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py' 2025-01-24T02:56:20.7411820Z adding 'torch/distributed/elastic/rendezvous/__init__.py' 2025-01-24T02:56:20.7413120Z adding 'torch/distributed/elastic/rendezvous/_etcd_stub.py' 2025-01-24T02:56:20.7416200Z adding 'torch/distributed/elastic/rendezvous/api.py' 2025-01-24T02:56:20.7419070Z adding 'torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py' 2025-01-24T02:56:20.7428150Z adding 'torch/distributed/elastic/rendezvous/dynamic_rendezvous.py' 2025-01-24T02:56:20.7437070Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous.py' 2025-01-24T02:56:20.7439400Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py' 2025-01-24T02:56:20.7441870Z adding 'torch/distributed/elastic/rendezvous/etcd_server.py' 2025-01-24T02:56:20.7444120Z adding 'torch/distributed/elastic/rendezvous/etcd_store.py' 2025-01-24T02:56:20.7445620Z adding 'torch/distributed/elastic/rendezvous/registry.py' 2025-01-24T02:56:20.7448100Z adding 'torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py' 2025-01-24T02:56:20.7450970Z adding 'torch/distributed/elastic/rendezvous/utils.py' 2025-01-24T02:56:20.7452880Z adding 'torch/distributed/elastic/timer/__init__.py' 2025-01-24T02:56:20.7455750Z adding 'torch/distributed/elastic/timer/api.py' 2025-01-24T02:56:20.7460660Z adding 'torch/distributed/elastic/timer/debug_info_logging.py' 2025-01-24T02:56:20.7461160Z adding 'torch/distributed/elastic/timer/file_based_local_timer.py' 2025-01-24T02:56:20.7463050Z adding 'torch/distributed/elastic/timer/local_timer.py' 2025-01-24T02:56:20.7464560Z adding 'torch/distributed/elastic/utils/__init__.py' 2025-01-24T02:56:20.7466040Z adding 'torch/distributed/elastic/utils/api.py' 2025-01-24T02:56:20.7468170Z adding 'torch/distributed/elastic/utils/distributed.py' 2025-01-24T02:56:20.7469020Z adding 'torch/distributed/elastic/utils/log_level.py' 2025-01-24T02:56:20.7470730Z adding 'torch/distributed/elastic/utils/logging.py' 2025-01-24T02:56:20.7473030Z adding 'torch/distributed/elastic/utils/store.py' 2025-01-24T02:56:20.7474470Z adding 'torch/distributed/elastic/utils/data/__init__.py' 2025-01-24T02:56:20.7475840Z adding 'torch/distributed/elastic/utils/data/cycling_iterator.py' 2025-01-24T02:56:20.7477400Z adding 'torch/distributed/elastic/utils/data/elastic_distributed_sampler.py' 2025-01-24T02:56:20.7478990Z adding 'torch/distributed/fsdp/__init__.py' 2025-01-24T02:56:20.7484500Z adding 'torch/distributed/fsdp/_common_utils.py' 2025-01-24T02:56:20.7486560Z adding 'torch/distributed/fsdp/_debug_utils.py' 2025-01-24T02:56:20.7488050Z adding 'torch/distributed/fsdp/_dynamo_utils.py' 2025-01-24T02:56:20.7491460Z adding 'torch/distributed/fsdp/_exec_order_utils.py' 2025-01-24T02:56:20.7518450Z adding 'torch/distributed/fsdp/_flat_param.py' 2025-01-24T02:56:20.7520790Z adding 'torch/distributed/fsdp/_fsdp_extensions.py' 2025-01-24T02:56:20.7531060Z adding 'torch/distributed/fsdp/_init_utils.py' 2025-01-24T02:56:20.7532540Z adding 'torch/distributed/fsdp/_limiter_utils.py' 2025-01-24T02:56:20.7552830Z adding 'torch/distributed/fsdp/_optim_utils.py' 2025-01-24T02:56:20.7568360Z adding 'torch/distributed/fsdp/_runtime_utils.py' 2025-01-24T02:56:20.7570480Z adding 'torch/distributed/fsdp/_shard_utils.py' 2025-01-24T02:56:20.7577200Z adding 'torch/distributed/fsdp/_state_dict_utils.py' 2025-01-24T02:56:20.7580090Z adding 'torch/distributed/fsdp/_trace_utils.py' 2025-01-24T02:56:20.7582020Z adding 'torch/distributed/fsdp/_traversal_utils.py' 2025-01-24T02:56:20.7584900Z adding 'torch/distributed/fsdp/_unshard_param_utils.py' 2025-01-24T02:56:20.7587750Z adding 'torch/distributed/fsdp/_wrap_utils.py' 2025-01-24T02:56:20.7592230Z adding 'torch/distributed/fsdp/api.py' 2025-01-24T02:56:20.7613320Z adding 'torch/distributed/fsdp/fully_sharded_data_parallel.py' 2025-01-24T02:56:20.7617550Z adding 'torch/distributed/fsdp/sharded_grad_scaler.py' 2025-01-24T02:56:20.7622900Z adding 'torch/distributed/fsdp/wrap.py' 2025-01-24T02:56:20.7624580Z adding 'torch/distributed/fsdp/_fully_shard/__init__.py' 2025-01-24T02:56:20.7626210Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_api.py' 2025-01-24T02:56:20.7631160Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py' 2025-01-24T02:56:20.7633200Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_common.py' 2025-01-24T02:56:20.7635350Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_init.py' 2025-01-24T02:56:20.7644250Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param.py' 2025-01-24T02:56:20.7651230Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py' 2025-01-24T02:56:20.7655130Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_state.py' 2025-01-24T02:56:20.7660510Z adding 'torch/distributed/fsdp/_fully_shard/_fully_shard.py' 2025-01-24T02:56:20.7662050Z adding 'torch/distributed/launcher/__init__.py' 2025-01-24T02:56:20.7665000Z adding 'torch/distributed/launcher/api.py' 2025-01-24T02:56:20.7666390Z adding 'torch/distributed/nn/__init__.py' 2025-01-24T02:56:20.7669640Z adding 'torch/distributed/nn/functional.py' 2025-01-24T02:56:20.7670910Z adding 'torch/distributed/nn/api/__init__.py' 2025-01-24T02:56:20.7676620Z adding 'torch/distributed/nn/api/remote_module.py' 2025-01-24T02:56:20.7678120Z adding 'torch/distributed/nn/jit/__init__.py' 2025-01-24T02:56:20.7680030Z adding 'torch/distributed/nn/jit/instantiator.py' 2025-01-24T02:56:20.7681370Z adding 'torch/distributed/nn/jit/templates/__init__.py' 2025-01-24T02:56:20.7683000Z adding 'torch/distributed/nn/jit/templates/remote_module_template.py' 2025-01-24T02:56:20.7684550Z adding 'torch/distributed/optim/__init__.py' 2025-01-24T02:56:20.7685850Z adding 'torch/distributed/optim/_deprecation_warning.py' 2025-01-24T02:56:20.7687750Z adding 'torch/distributed/optim/apply_optimizer_in_backward.py' 2025-01-24T02:56:20.7689450Z adding 'torch/distributed/optim/functional_adadelta.py' 2025-01-24T02:56:20.7691130Z adding 'torch/distributed/optim/functional_adagrad.py' 2025-01-24T02:56:20.7693210Z adding 'torch/distributed/optim/functional_adam.py' 2025-01-24T02:56:20.7694860Z adding 'torch/distributed/optim/functional_adamax.py' 2025-01-24T02:56:20.7696780Z adding 'torch/distributed/optim/functional_adamw.py' 2025-01-24T02:56:20.7698540Z adding 'torch/distributed/optim/functional_rmsprop.py' 2025-01-24T02:56:20.7700100Z adding 'torch/distributed/optim/functional_rprop.py' 2025-01-24T02:56:20.7701960Z adding 'torch/distributed/optim/functional_sgd.py' 2025-01-24T02:56:20.7705270Z adding 'torch/distributed/optim/named_optimizer.py' 2025-01-24T02:56:20.7708070Z adding 'torch/distributed/optim/optimizer.py' 2025-01-24T02:56:20.7709870Z adding 'torch/distributed/optim/post_localSGD_optimizer.py' 2025-01-24T02:56:20.7711160Z adding 'torch/distributed/optim/utils.py' 2025-01-24T02:56:20.7726780Z adding 'torch/distributed/optim/zero_redundancy_optimizer.py' 2025-01-24T02:56:20.7728540Z adding 'torch/distributed/optim/zero_redundancy_optimizer.pyi' 2025-01-24T02:56:20.7740560Z adding 'torch/distributed/pipelining/_IR.py' 2025-01-24T02:56:20.7741940Z adding 'torch/distributed/pipelining/__init__.py' 2025-01-24T02:56:20.7745910Z adding 'torch/distributed/pipelining/_backward.py' 2025-01-24T02:56:20.7747160Z adding 'torch/distributed/pipelining/_debug.py' 2025-01-24T02:56:20.7748430Z adding 'torch/distributed/pipelining/_unflatten.py' 2025-01-24T02:56:20.7749690Z adding 'torch/distributed/pipelining/_utils.py' 2025-01-24T02:56:20.7753780Z adding 'torch/distributed/pipelining/microbatch.py' 2025-01-24T02:56:20.7773570Z adding 'torch/distributed/pipelining/schedules.py' 2025-01-24T02:56:20.7788220Z adding 'torch/distributed/pipelining/stage.py' 2025-01-24T02:56:20.7791540Z adding 'torch/distributed/rpc/__init__.py' 2025-01-24T02:56:20.7793000Z adding 'torch/distributed/rpc/_utils.py' 2025-01-24T02:56:20.7800190Z adding 'torch/distributed/rpc/api.py' 2025-01-24T02:56:20.7804210Z adding 'torch/distributed/rpc/backend_registry.py' 2025-01-24T02:56:20.7805490Z adding 'torch/distributed/rpc/constants.py' 2025-01-24T02:56:20.7807550Z adding 'torch/distributed/rpc/functions.py' 2025-01-24T02:56:20.7810340Z adding 'torch/distributed/rpc/internal.py' 2025-01-24T02:56:20.7816640Z adding 'torch/distributed/rpc/options.py' 2025-01-24T02:56:20.7817020Z adding 'torch/distributed/rpc/rref_proxy.py' 2025-01-24T02:56:20.7817430Z adding 'torch/distributed/rpc/server_process_global_profiler.py' 2025-01-24T02:56:20.7817860Z adding 'torch/distributed/rpc/_testing/__init__.py' 2025-01-24T02:56:20.7818790Z adding 'torch/distributed/rpc/_testing/faulty_agent_backend_registry.py' 2025-01-24T02:56:20.7820560Z adding 'torch/distributed/tensor/__init__.py' 2025-01-24T02:56:20.7831440Z adding 'torch/distributed/tensor/_api.py' 2025-01-24T02:56:20.7835160Z adding 'torch/distributed/tensor/_collective_utils.py' 2025-01-24T02:56:20.7839970Z adding 'torch/distributed/tensor/_dispatch.py' 2025-01-24T02:56:20.7842730Z adding 'torch/distributed/tensor/_dtensor_spec.py' 2025-01-24T02:56:20.7846750Z adding 'torch/distributed/tensor/_op_schema.py' 2025-01-24T02:56:20.7850440Z adding 'torch/distributed/tensor/_random.py' 2025-01-24T02:56:20.7853880Z adding 'torch/distributed/tensor/_redistribute.py' 2025-01-24T02:56:20.7858360Z adding 'torch/distributed/tensor/_sharding_prop.py' 2025-01-24T02:56:20.7861130Z adding 'torch/distributed/tensor/_shards_wrapper.py' 2025-01-24T02:56:20.7863390Z adding 'torch/distributed/tensor/_tp_conv.py' 2025-01-24T02:56:20.7866670Z adding 'torch/distributed/tensor/_utils.py' 2025-01-24T02:56:20.7867900Z adding 'torch/distributed/tensor/device_mesh.py' 2025-01-24T02:56:20.7873060Z adding 'torch/distributed/tensor/placement_types.py' 2025-01-24T02:56:20.7874530Z adding 'torch/distributed/tensor/_ops/__init__.py' 2025-01-24T02:56:20.7877800Z adding 'torch/distributed/tensor/_ops/_common_rules.py' 2025-01-24T02:56:20.7879280Z adding 'torch/distributed/tensor/_ops/_conv_ops.py' 2025-01-24T02:56:20.7881320Z adding 'torch/distributed/tensor/_ops/_einsum_strategy.py' 2025-01-24T02:56:20.7883890Z adding 'torch/distributed/tensor/_ops/_embedding_ops.py' 2025-01-24T02:56:20.7885250Z adding 'torch/distributed/tensor/_ops/_experimental_ops.py' 2025-01-24T02:56:20.7891990Z adding 'torch/distributed/tensor/_ops/_math_ops.py' 2025-01-24T02:56:20.7895570Z adding 'torch/distributed/tensor/_ops/_matrix_ops.py' 2025-01-24T02:56:20.7899530Z adding 'torch/distributed/tensor/_ops/_pointwise_ops.py' 2025-01-24T02:56:20.7900820Z adding 'torch/distributed/tensor/_ops/_random_ops.py' 2025-01-24T02:56:20.7907120Z adding 'torch/distributed/tensor/_ops/_tensor_ops.py' 2025-01-24T02:56:20.7912830Z adding 'torch/distributed/tensor/_ops/_view_ops.py' 2025-01-24T02:56:20.7915760Z adding 'torch/distributed/tensor/_ops/utils.py' 2025-01-24T02:56:20.7917230Z adding 'torch/distributed/tensor/debug/__init__.py' 2025-01-24T02:56:20.7922480Z adding 'torch/distributed/tensor/debug/_comm_mode.py' 2025-01-24T02:56:20.7924160Z adding 'torch/distributed/tensor/debug/_op_coverage.py' 2025-01-24T02:56:20.7926340Z adding 'torch/distributed/tensor/debug/_visualize_sharding.py' 2025-01-24T02:56:20.7927840Z adding 'torch/distributed/tensor/experimental/__init__.py' 2025-01-24T02:56:20.7937370Z adding 'torch/distributed/tensor/experimental/_attention.py' 2025-01-24T02:56:20.7940370Z adding 'torch/distributed/tensor/experimental/_func_map.py' 2025-01-24T02:56:20.7942410Z adding 'torch/distributed/tensor/experimental/_register_sharding.py' 2025-01-24T02:56:20.7946670Z adding 'torch/distributed/tensor/experimental/_tp_transform.py' 2025-01-24T02:56:20.7948140Z adding 'torch/distributed/tensor/parallel/__init__.py' 2025-01-24T02:56:20.7949480Z adding 'torch/distributed/tensor/parallel/_data_parallel_utils.py' 2025-01-24T02:56:20.7950800Z adding 'torch/distributed/tensor/parallel/_utils.py' 2025-01-24T02:56:20.7952800Z adding 'torch/distributed/tensor/parallel/api.py' 2025-01-24T02:56:20.7954490Z adding 'torch/distributed/tensor/parallel/ddp.py' 2025-01-24T02:56:20.7957840Z adding 'torch/distributed/tensor/parallel/fsdp.py' 2025-01-24T02:56:20.7959500Z adding 'torch/distributed/tensor/parallel/input_reshard.py' 2025-01-24T02:56:20.7963330Z adding 'torch/distributed/tensor/parallel/loss.py' 2025-01-24T02:56:20.7968390Z adding 'torch/distributed/tensor/parallel/style.py' 2025-01-24T02:56:20.7971220Z adding 'torch/distributions/__init__.py' 2025-01-24T02:56:20.7973010Z adding 'torch/distributions/bernoulli.py' 2025-01-24T02:56:20.7974670Z adding 'torch/distributions/beta.py' 2025-01-24T02:56:20.7976640Z adding 'torch/distributions/binomial.py' 2025-01-24T02:56:20.7978560Z adding 'torch/distributions/categorical.py' 2025-01-24T02:56:20.7980080Z adding 'torch/distributions/cauchy.py' 2025-01-24T02:56:20.7981270Z adding 'torch/distributions/chi2.py' 2025-01-24T02:56:20.7983710Z adding 'torch/distributions/constraint_registry.py' 2025-01-24T02:56:20.7987460Z adding 'torch/distributions/constraints.py' 2025-01-24T02:56:20.7989890Z adding 'torch/distributions/continuous_bernoulli.py' 2025-01-24T02:56:20.7991490Z adding 'torch/distributions/dirichlet.py' 2025-01-24T02:56:20.7994410Z adding 'torch/distributions/distribution.py' 2025-01-24T02:56:20.7995840Z adding 'torch/distributions/exp_family.py' 2025-01-24T02:56:20.7997310Z adding 'torch/distributions/exponential.py' 2025-01-24T02:56:20.7998900Z adding 'torch/distributions/fishersnedecor.py' 2025-01-24T02:56:20.8000450Z adding 'torch/distributions/gamma.py' 2025-01-24T02:56:20.8002230Z adding 'torch/distributions/geometric.py' 2025-01-24T02:56:20.8003630Z adding 'torch/distributions/gumbel.py' 2025-01-24T02:56:20.8004970Z adding 'torch/distributions/half_cauchy.py' 2025-01-24T02:56:20.8006310Z adding 'torch/distributions/half_normal.py' 2025-01-24T02:56:20.8007920Z adding 'torch/distributions/independent.py' 2025-01-24T02:56:20.8009320Z adding 'torch/distributions/inverse_gamma.py' 2025-01-24T02:56:20.8015260Z adding 'torch/distributions/kl.py' 2025-01-24T02:56:20.8016960Z adding 'torch/distributions/kumaraswamy.py' 2025-01-24T02:56:20.8018480Z adding 'torch/distributions/laplace.py' 2025-01-24T02:56:20.8020660Z adding 'torch/distributions/lkj_cholesky.py' 2025-01-24T02:56:20.8021990Z adding 'torch/distributions/log_normal.py' 2025-01-24T02:56:20.8023300Z adding 'torch/distributions/logistic_normal.py' 2025-01-24T02:56:20.8025860Z adding 'torch/distributions/lowrank_multivariate_normal.py' 2025-01-24T02:56:20.8028160Z adding 'torch/distributions/mixture_same_family.py' 2025-01-24T02:56:20.8030000Z adding 'torch/distributions/multinomial.py' 2025-01-24T02:56:20.8032680Z adding 'torch/distributions/multivariate_normal.py' 2025-01-24T02:56:20.8034420Z adding 'torch/distributions/negative_binomial.py' 2025-01-24T02:56:20.8036060Z adding 'torch/distributions/normal.py' 2025-01-24T02:56:20.8037680Z adding 'torch/distributions/one_hot_categorical.py' 2025-01-24T02:56:20.8042950Z adding 'torch/distributions/pareto.py' 2025-01-24T02:56:20.8043370Z adding 'torch/distributions/poisson.py' 2025-01-24T02:56:20.8043700Z adding 'torch/distributions/relaxed_bernoulli.py' 2025-01-24T02:56:20.8044080Z adding 'torch/distributions/relaxed_categorical.py' 2025-01-24T02:56:20.8045440Z adding 'torch/distributions/studentT.py' 2025-01-24T02:56:20.8047790Z adding 'torch/distributions/transformed_distribution.py' 2025-01-24T02:56:20.8055300Z adding 'torch/distributions/transforms.py' 2025-01-24T02:56:20.8056880Z adding 'torch/distributions/uniform.py' 2025-01-24T02:56:20.8059180Z adding 'torch/distributions/utils.py' 2025-01-24T02:56:20.8061280Z adding 'torch/distributions/von_mises.py' 2025-01-24T02:56:20.8062690Z adding 'torch/distributions/weibull.py' 2025-01-24T02:56:20.8065720Z adding 'torch/distributions/wishart.py' 2025-01-24T02:56:20.8070860Z adding 'torch/export/__init__.py' 2025-01-24T02:56:20.8073980Z adding 'torch/export/_draft_export.py' 2025-01-24T02:56:20.8075450Z adding 'torch/export/_remove_auto_functionalized_pass.py' 2025-01-24T02:56:20.8077440Z adding 'torch/export/_remove_effect_tokens_pass.py' 2025-01-24T02:56:20.8078790Z adding 'torch/export/_safeguard.py' 2025-01-24T02:56:20.8082740Z adding 'torch/export/_swap.py' 2025-01-24T02:56:20.8101410Z adding 'torch/export/_trace.py' 2025-01-24T02:56:20.8103320Z adding 'torch/export/_tree_utils.py' 2025-01-24T02:56:20.8107010Z adding 'torch/export/_unlift.py' 2025-01-24T02:56:20.8108230Z adding 'torch/export/custom_obj.py' 2025-01-24T02:56:20.8109940Z adding 'torch/export/decomp_utils.py' 2025-01-24T02:56:20.8119700Z adding 'torch/export/dynamic_shapes.py' 2025-01-24T02:56:20.8133070Z adding 'torch/export/exported_program.py' 2025-01-24T02:56:20.8137630Z adding 'torch/export/graph_signature.py' 2025-01-24T02:56:20.8153500Z adding 'torch/export/unflatten.py' 2025-01-24T02:56:20.8155670Z adding 'torch/export/experimental/__init__.py' 2025-01-24T02:56:20.8157270Z adding 'torch/export/passes/__init__.py' 2025-01-24T02:56:20.8164890Z adding 'torch/fft/__init__.py' 2025-01-24T02:56:20.8166460Z adding 'torch/func/__init__.py' 2025-01-24T02:56:20.8170210Z adding 'torch/futures/__init__.py' 2025-01-24T02:56:20.8172400Z adding 'torch/fx/__init__.py' 2025-01-24T02:56:20.8173630Z adding 'torch/fx/_compatibility.py' 2025-01-24T02:56:20.8175750Z adding 'torch/fx/_lazy_graph_module.py' 2025-01-24T02:56:20.8177330Z adding 'torch/fx/_pytree.py' 2025-01-24T02:56:20.8188610Z adding 'torch/fx/_symbolic_trace.py' 2025-01-24T02:56:20.8189900Z adding 'torch/fx/_utils.py' 2025-01-24T02:56:20.8191360Z adding 'torch/fx/annotate.py' 2025-01-24T02:56:20.8192260Z adding 'torch/fx/config.py' 2025-01-24T02:56:20.8209870Z adding 'torch/fx/graph.py' 2025-01-24T02:56:20.8219660Z adding 'torch/fx/graph_module.py' 2025-01-24T02:56:20.8221320Z adding 'torch/fx/immutable_collections.py' 2025-01-24T02:56:20.8225750Z adding 'torch/fx/interpreter.py' 2025-01-24T02:56:20.8234070Z adding 'torch/fx/node.py' 2025-01-24T02:56:20.8239200Z adding 'torch/fx/operator_schemas.py' 2025-01-24T02:56:20.8245180Z adding 'torch/fx/proxy.py' 2025-01-24T02:56:20.8249350Z adding 'torch/fx/subgraph_rewriter.py' 2025-01-24T02:56:20.8250840Z adding 'torch/fx/tensor_type.py' 2025-01-24T02:56:20.8253100Z adding 'torch/fx/traceback.py' 2025-01-24T02:56:20.8254530Z adding 'torch/fx/experimental/__init__.py' 2025-01-24T02:56:20.8255810Z adding 'torch/fx/experimental/_backward_state.py' 2025-01-24T02:56:20.8257420Z adding 'torch/fx/experimental/_config.py' 2025-01-24T02:56:20.8258660Z adding 'torch/fx/experimental/_constant_symnode.py' 2025-01-24T02:56:20.8268470Z adding 'torch/fx/experimental/accelerator_partitioner.py' 2025-01-24T02:56:20.8271950Z adding 'torch/fx/experimental/const_fold.py' 2025-01-24T02:56:20.8273150Z adding 'torch/fx/experimental/debug.py' 2025-01-24T02:56:20.8280060Z adding 'torch/fx/experimental/graph_gradual_typechecker.py' 2025-01-24T02:56:20.8282320Z adding 'torch/fx/experimental/merge_matmul.py' 2025-01-24T02:56:20.8285160Z adding 'torch/fx/experimental/meta_tracer.py' 2025-01-24T02:56:20.8286930Z adding 'torch/fx/experimental/normalize.py' 2025-01-24T02:56:20.8291460Z adding 'torch/fx/experimental/optimization.py' 2025-01-24T02:56:20.8294740Z adding 'torch/fx/experimental/partitioner_utils.py' 2025-01-24T02:56:20.8315470Z adding 'torch/fx/experimental/proxy_tensor.py' 2025-01-24T02:56:20.8320660Z adding 'torch/fx/experimental/recording.py' 2025-01-24T02:56:20.8321940Z adding 'torch/fx/experimental/refinement_types.py' 2025-01-24T02:56:20.8323860Z adding 'torch/fx/experimental/rewriter.py' 2025-01-24T02:56:20.8325770Z adding 'torch/fx/experimental/schema_type_annotation.py' 2025-01-24T02:56:20.8337720Z adding 'torch/fx/experimental/sym_node.py' 2025-01-24T02:56:20.8412180Z adding 'torch/fx/experimental/symbolic_shapes.py' 2025-01-24T02:56:20.8415080Z adding 'torch/fx/experimental/unify_refinements.py' 2025-01-24T02:56:20.8422560Z adding 'torch/fx/experimental/validator.py' 2025-01-24T02:56:20.8424100Z adding 'torch/fx/experimental/migrate_gradual_types/__init__.py' 2025-01-24T02:56:20.8427450Z adding 'torch/fx/experimental/migrate_gradual_types/constraint.py' 2025-01-24T02:56:20.8436550Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_generator.py' 2025-01-24T02:56:20.8445060Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_transformation.py' 2025-01-24T02:56:20.8446060Z adding 'torch/fx/experimental/migrate_gradual_types/operation.py' 2025-01-24T02:56:20.8449670Z adding 'torch/fx/experimental/migrate_gradual_types/transform_to_z3.py' 2025-01-24T02:56:20.8451060Z adding 'torch/fx/experimental/migrate_gradual_types/util.py' 2025-01-24T02:56:20.8451920Z adding 'torch/fx/experimental/migrate_gradual_types/z3_types.py' 2025-01-24T02:56:20.8453610Z adding 'torch/fx/experimental/unification/__init__.py' 2025-01-24T02:56:20.8455130Z adding 'torch/fx/experimental/unification/core.py' 2025-01-24T02:56:20.8456450Z adding 'torch/fx/experimental/unification/dispatch.py' 2025-01-24T02:56:20.8457900Z adding 'torch/fx/experimental/unification/match.py' 2025-01-24T02:56:20.8459470Z adding 'torch/fx/experimental/unification/more.py' 2025-01-24T02:56:20.8462360Z adding 'torch/fx/experimental/unification/unification_tools.py' 2025-01-24T02:56:20.8468240Z adding 'torch/fx/experimental/unification/utils.py' 2025-01-24T02:56:20.8468720Z adding 'torch/fx/experimental/unification/variable.py' 2025-01-24T02:56:20.8469220Z adding 'torch/fx/experimental/unification/multipledispatch/__init__.py' 2025-01-24T02:56:20.8469790Z adding 'torch/fx/experimental/unification/multipledispatch/conflict.py' 2025-01-24T02:56:20.8470400Z adding 'torch/fx/experimental/unification/multipledispatch/core.py' 2025-01-24T02:56:20.8473730Z adding 'torch/fx/experimental/unification/multipledispatch/dispatcher.py' 2025-01-24T02:56:20.8475500Z adding 'torch/fx/experimental/unification/multipledispatch/utils.py' 2025-01-24T02:56:20.8477030Z adding 'torch/fx/experimental/unification/multipledispatch/variadic.py' 2025-01-24T02:56:20.8478360Z adding 'torch/fx/passes/__init__.py' 2025-01-24T02:56:20.8482140Z adding 'torch/fx/passes/_tensorify_python_scalars.py' 2025-01-24T02:56:20.8483580Z adding 'torch/fx/passes/annotate_getitem_nodes.py' 2025-01-24T02:56:20.8485050Z adding 'torch/fx/passes/fake_tensor_prop.py' 2025-01-24T02:56:20.8488820Z adding 'torch/fx/passes/graph_drawer.py' 2025-01-24T02:56:20.8490590Z adding 'torch/fx/passes/graph_manipulation.py' 2025-01-24T02:56:20.8492780Z adding 'torch/fx/passes/graph_transform_observer.py' 2025-01-24T02:56:20.8499540Z adding 'torch/fx/passes/net_min_base.py' 2025-01-24T02:56:20.8501830Z adding 'torch/fx/passes/operator_support.py' 2025-01-24T02:56:20.8503400Z adding 'torch/fx/passes/param_fetch.py' 2025-01-24T02:56:20.8505640Z adding 'torch/fx/passes/pass_manager.py' 2025-01-24T02:56:20.8513700Z adding 'torch/fx/passes/reinplace.py' 2025-01-24T02:56:20.8519720Z adding 'torch/fx/passes/runtime_assert.py' 2025-01-24T02:56:20.8553930Z adding 'torch/fx/passes/shape_prop.py' 2025-01-24T02:56:20.8560060Z adding 'torch/fx/passes/split_module.py' 2025-01-24T02:56:20.8563400Z adding 'torch/fx/passes/split_utils.py' 2025-01-24T02:56:20.8570850Z adding 'torch/fx/passes/splitter_base.py' 2025-01-24T02:56:20.8574110Z adding 'torch/fx/passes/tools_common.py' 2025-01-24T02:56:20.8575420Z adding 'torch/fx/passes/backends/__init__.py' 2025-01-24T02:56:20.8576870Z adding 'torch/fx/passes/backends/cudagraphs.py' 2025-01-24T02:56:20.8578120Z adding 'torch/fx/passes/dialect/__init__.py' 2025-01-24T02:56:20.8578860Z adding 'torch/fx/passes/dialect/common/__init__.py' 2025-01-24T02:56:20.8580970Z adding 'torch/fx/passes/dialect/common/cse_pass.py' 2025-01-24T02:56:20.8581870Z adding 'torch/fx/passes/infra/__init__.py' 2025-01-24T02:56:20.8586060Z adding 'torch/fx/passes/infra/partitioner.py' 2025-01-24T02:56:20.8587310Z adding 'torch/fx/passes/infra/pass_base.py' 2025-01-24T02:56:20.8590100Z adding 'torch/fx/passes/infra/pass_manager.py' 2025-01-24T02:56:20.8591320Z adding 'torch/fx/passes/tests/__init__.py' 2025-01-24T02:56:20.8592600Z adding 'torch/fx/passes/tests/test_pass_manager.py' 2025-01-24T02:56:20.8593360Z adding 'torch/fx/passes/utils/__init__.py' 2025-01-24T02:56:20.8595250Z adding 'torch/fx/passes/utils/common.py' 2025-01-24T02:56:20.8597840Z adding 'torch/fx/passes/utils/fuser_utils.py' 2025-01-24T02:56:20.8601890Z adding 'torch/fx/passes/utils/matcher_utils.py' 2025-01-24T02:56:20.8603630Z adding 'torch/fx/passes/utils/matcher_with_name_node_map_utils.py' 2025-01-24T02:56:20.8605520Z adding 'torch/fx/passes/utils/source_matcher_utils.py' 2025-01-24T02:56:20.8607280Z adding 'torch/include/clog.h' 2025-01-24T02:56:20.8614760Z adding 'torch/include/cpuinfo.h' 2025-01-24T02:56:20.8616150Z adding 'torch/include/experiments-config.h' 2025-01-24T02:56:20.8616880Z adding 'torch/include/fp16.h' 2025-01-24T02:56:20.8619720Z adding 'torch/include/fxdiv.h' 2025-01-24T02:56:20.8620980Z adding 'torch/include/libshm.h' 2025-01-24T02:56:20.8625110Z adding 'torch/include/nnpack.h' 2025-01-24T02:56:20.8629270Z adding 'torch/include/omp.h' 2025-01-24T02:56:20.8635030Z adding 'torch/include/psimd.h' 2025-01-24T02:56:20.8644050Z adding 'torch/include/pthreadpool.h' 2025-01-24T02:56:20.8645890Z adding 'torch/include/qnnpack_func.h' 2025-01-24T02:56:20.8662270Z adding 'torch/include/sleef.h' 2025-01-24T02:56:20.8686960Z adding 'torch/include/xnnpack.h' 2025-01-24T02:56:20.8690330Z adding 'torch/include/ATen/ATen.h' 2025-01-24T02:56:20.8692120Z adding 'torch/include/ATen/AccumulateType.h' 2025-01-24T02:56:20.8692800Z adding 'torch/include/ATen/ArrayRef.h' 2025-01-24T02:56:20.8694080Z adding 'torch/include/ATen/Backend.h' 2025-01-24T02:56:20.8694590Z adding 'torch/include/ATen/Backtrace.h' 2025-01-24T02:56:20.8695940Z adding 'torch/include/ATen/BlasBackend.h' 2025-01-24T02:56:20.8698570Z adding 'torch/include/ATen/CPUApplyUtils.h' 2025-01-24T02:56:20.8699850Z adding 'torch/include/ATen/CPUFixedAllocator.h' 2025-01-24T02:56:20.8701130Z adding 'torch/include/ATen/CPUFunctions.h' 2025-01-24T02:56:20.8704150Z adding 'torch/include/ATen/CPUFunctions_inl.h' 2025-01-24T02:56:20.8705440Z adding 'torch/include/ATen/CPUGeneratorImpl.h' 2025-01-24T02:56:20.8706670Z adding 'torch/include/ATen/CUDAFunctions.h' 2025-01-24T02:56:20.8710120Z adding 'torch/include/ATen/CUDAFunctions_inl.h' 2025-01-24T02:56:20.8711370Z adding 'torch/include/ATen/CachedTensorUtils.h' 2025-01-24T02:56:20.8712640Z adding 'torch/include/ATen/CollapseDims.h' 2025-01-24T02:56:20.8714040Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions.h' 2025-01-24T02:56:20.8717760Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h' 2025-01-24T02:56:20.8719990Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h' 2025-01-24T02:56:20.8722570Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h' 2025-01-24T02:56:20.8723520Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions.h' 2025-01-24T02:56:20.8727170Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h' 2025-01-24T02:56:20.8728680Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h' 2025-01-24T02:56:20.8729470Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h' 2025-01-24T02:56:20.8730160Z adding 'torch/include/ATen/Config.h' 2025-01-24T02:56:20.8734600Z adding 'torch/include/ATen/Context.h' 2025-01-24T02:56:20.8735820Z adding 'torch/include/ATen/DLConvertor.h' 2025-01-24T02:56:20.8736330Z adding 'torch/include/ATen/Device.h' 2025-01-24T02:56:20.8738020Z adding 'torch/include/ATen/DeviceAccelerator.h' 2025-01-24T02:56:20.8739600Z adding 'torch/include/ATen/DeviceGuard.h' 2025-01-24T02:56:20.8745200Z adding 'torch/include/ATen/DimVector.h' 2025-01-24T02:56:20.8745610Z adding 'torch/include/ATen/Dimname.h' 2025-01-24T02:56:20.8746830Z adding 'torch/include/ATen/Dispatch.h' 2025-01-24T02:56:20.8751570Z adding 'torch/include/ATen/Dispatch_v2.h' 2025-01-24T02:56:20.8752900Z adding 'torch/include/ATen/DynamicLibrary.h' 2025-01-24T02:56:20.8754260Z adding 'torch/include/ATen/EmptyTensor.h' 2025-01-24T02:56:20.8755480Z adding 'torch/include/ATen/ExpandBase.h' 2025-01-24T02:56:20.8758200Z adding 'torch/include/ATen/ExpandUtils.h' 2025-01-24T02:56:20.8758870Z adding 'torch/include/ATen/Formatting.h' 2025-01-24T02:56:20.8760400Z adding 'torch/include/ATen/FuncTorchTLS.h' 2025-01-24T02:56:20.8762770Z adding 'torch/include/ATen/FunctionalStorageImpl.h' 2025-01-24T02:56:20.8766690Z adding 'torch/include/ATen/FunctionalTensorWrapper.h' 2025-01-24T02:56:20.8773130Z adding 'torch/include/ATen/Functions.h' 2025-01-24T02:56:20.8774340Z adding 'torch/include/ATen/Generator.h' 2025-01-24T02:56:20.8775630Z adding 'torch/include/ATen/InferSize.h' 2025-01-24T02:56:20.8776410Z adding 'torch/include/ATen/InitialTensorOptions.h' 2025-01-24T02:56:20.8777650Z adding 'torch/include/ATen/Layout.h' 2025-01-24T02:56:20.8778380Z adding 'torch/include/ATen/LegacyBatchedFallback.h' 2025-01-24T02:56:20.8780640Z adding 'torch/include/ATen/LegacyBatchedTensorImpl.h' 2025-01-24T02:56:20.8781380Z adding 'torch/include/ATen/LegacyVmapMode.h' 2025-01-24T02:56:20.8784020Z adding 'torch/include/ATen/LegacyVmapTransforms.h' 2025-01-24T02:56:20.8784790Z adding 'torch/include/ATen/LinalgBackend.h' 2025-01-24T02:56:20.8786250Z adding 'torch/include/ATen/MPSFunctions.h' 2025-01-24T02:56:20.8788420Z adding 'torch/include/ATen/MPSFunctions_inl.h' 2025-01-24T02:56:20.8789940Z adding 'torch/include/ATen/MapAllocator.h' 2025-01-24T02:56:20.8791700Z adding 'torch/include/ATen/MatrixRef.h' 2025-01-24T02:56:20.8793220Z adding 'torch/include/ATen/MemoryOverlap.h' 2025-01-24T02:56:20.8794520Z adding 'torch/include/ATen/MetaFunctions.h' 2025-01-24T02:56:20.8796730Z adding 'torch/include/ATen/MetaFunctions_inl.h' 2025-01-24T02:56:20.8799110Z adding 'torch/include/ATen/MethodOperators.h' 2025-01-24T02:56:20.8799820Z adding 'torch/include/ATen/NamedTensor.h' 2025-01-24T02:56:20.8802040Z adding 'torch/include/ATen/NamedTensorUtils.h' 2025-01-24T02:56:20.8808290Z adding 'torch/include/ATen/NativeFunctions.h' 2025-01-24T02:56:20.8814420Z adding 'torch/include/ATen/NativeMetaFunctions.h' 2025-01-24T02:56:20.8817340Z adding 'torch/include/ATen/NestedTensorImpl.h' 2025-01-24T02:56:20.8818830Z adding 'torch/include/ATen/NumericUtils.h' 2025-01-24T02:56:20.8820050Z adding 'torch/include/ATen/OpMathType.h' 2025-01-24T02:56:20.8821760Z adding 'torch/include/ATen/OpaqueTensorImpl.h' 2025-01-24T02:56:20.8828120Z adding 'torch/include/ATen/Operators.h' 2025-01-24T02:56:20.8829510Z adding 'torch/include/ATen/PTThreadPool.h' 2025-01-24T02:56:20.8830140Z adding 'torch/include/ATen/PadNd.h' 2025-01-24T02:56:20.8831690Z adding 'torch/include/ATen/Parallel-inl.h' 2025-01-24T02:56:20.8833360Z adding 'torch/include/ATen/Parallel.h' 2025-01-24T02:56:20.8834120Z adding 'torch/include/ATen/ParallelFuture.h' 2025-01-24T02:56:20.8835400Z adding 'torch/include/ATen/ParallelNative.h' 2025-01-24T02:56:20.8836640Z adding 'torch/include/ATen/ParallelOpenMP.h' 2025-01-24T02:56:20.8837430Z adding 'torch/include/ATen/PythonTorchFunctionTLS.h' 2025-01-24T02:56:20.8838770Z adding 'torch/include/ATen/ROCmFABackend.h' 2025-01-24T02:56:20.9027260Z adding 'torch/include/ATen/RedispatchFunctions.h' 2025-01-24T02:56:20.9131360Z adding 'torch/include/ATen/RegistrationDeclarations.h' 2025-01-24T02:56:20.9136600Z adding 'torch/include/ATen/SDPBackend.h' 2025-01-24T02:56:20.9138100Z adding 'torch/include/ATen/SavedTensorHooks.h' 2025-01-24T02:56:20.9138870Z adding 'torch/include/ATen/Scalar.h' 2025-01-24T02:56:20.9140470Z adding 'torch/include/ATen/ScalarOps.h' 2025-01-24T02:56:20.9141690Z adding 'torch/include/ATen/ScalarType.h' 2025-01-24T02:56:20.9142440Z adding 'torch/include/ATen/SequenceNumber.h' 2025-01-24T02:56:20.9143720Z adding 'torch/include/ATen/SmallVector.h' 2025-01-24T02:56:20.9145820Z adding 'torch/include/ATen/SparseCsrTensorImpl.h' 2025-01-24T02:56:20.9149080Z adding 'torch/include/ATen/SparseCsrTensorUtils.h' 2025-01-24T02:56:20.9152590Z adding 'torch/include/ATen/SparseTensorImpl.h' 2025-01-24T02:56:20.9153400Z adding 'torch/include/ATen/Storage.h' 2025-01-24T02:56:20.9154960Z adding 'torch/include/ATen/StorageUtils.h' 2025-01-24T02:56:20.9155680Z adding 'torch/include/ATen/Tensor.h' 2025-01-24T02:56:20.9157000Z adding 'torch/include/ATen/TensorAccessor.h' 2025-01-24T02:56:20.9158560Z adding 'torch/include/ATen/TensorGeometry.h' 2025-01-24T02:56:20.9164120Z adding 'torch/include/ATen/TensorIndexing.h' 2025-01-24T02:56:20.9173090Z adding 'torch/include/ATen/TensorIterator.h' 2025-01-24T02:56:20.9174680Z adding 'torch/include/ATen/TensorIteratorInternal.h' 2025-01-24T02:56:20.9176420Z adding 'torch/include/ATen/TensorMeta.h' 2025-01-24T02:56:20.9178030Z adding 'torch/include/ATen/TensorNames.h' 2025-01-24T02:56:20.9179440Z adding 'torch/include/ATen/TensorOperators.h' 2025-01-24T02:56:20.9180160Z adding 'torch/include/ATen/TensorOptions.h' 2025-01-24T02:56:20.9182050Z adding 'torch/include/ATen/TensorSubclassLikeUtils.h' 2025-01-24T02:56:20.9183740Z adding 'torch/include/ATen/TensorUtils.h' 2025-01-24T02:56:20.9185070Z adding 'torch/include/ATen/ThreadLocalPythonObjects.h' 2025-01-24T02:56:20.9186600Z adding 'torch/include/ATen/ThreadLocalState.h' 2025-01-24T02:56:20.9192930Z adding 'torch/include/ATen/TracerMode.h' 2025-01-24T02:56:20.9193280Z adding 'torch/include/ATen/TypeDefault.h' 2025-01-24T02:56:20.9193590Z adding 'torch/include/ATen/Utils.h' 2025-01-24T02:56:20.9193900Z adding 'torch/include/ATen/Version.h' 2025-01-24T02:56:20.9320070Z adding 'torch/include/ATen/VmapGeneratedPlumbing.h' 2025-01-24T02:56:20.9329230Z adding 'torch/include/ATen/WrapDimUtils.h' 2025-01-24T02:56:20.9330590Z adding 'torch/include/ATen/WrapDimUtilsMulti.h' 2025-01-24T02:56:20.9337120Z adding 'torch/include/ATen/autocast_mode.h' 2025-01-24T02:56:20.9338430Z adding 'torch/include/ATen/ceil_div.h' 2025-01-24T02:56:20.9340660Z adding 'torch/include/ATen/code_template.h' 2025-01-24T02:56:20.9342270Z adding 'torch/include/ATen/cpp_custom_type_hack.h' 2025-01-24T02:56:20.9343080Z adding 'torch/include/ATen/div_rtn.h' 2025-01-24T02:56:20.9345660Z adding 'torch/include/ATen/dlpack.h' 2025-01-24T02:56:20.9346880Z adding 'torch/include/ATen/jit_macros.h' 2025-01-24T02:56:20.9348160Z adding 'torch/include/ATen/jiterator_macros.h' 2025-01-24T02:56:20.9353180Z adding 'torch/include/ATen/record_function.h' 2025-01-24T02:56:20.9355200Z adding 'torch/include/ATen/core/ATenGeneral.h' 2025-01-24T02:56:20.9356430Z adding 'torch/include/ATen/core/ATenOpList.h' 2025-01-24T02:56:20.9357170Z adding 'torch/include/ATen/core/ATen_fwd.h' 2025-01-24T02:56:20.9359170Z adding 'torch/include/ATen/core/ATen_pch.h' 2025-01-24T02:56:20.9360380Z adding 'torch/include/ATen/core/Array.h' 2025-01-24T02:56:20.9361070Z adding 'torch/include/ATen/core/Backtrace.h' 2025-01-24T02:56:20.9365450Z adding 'torch/include/ATen/core/CachingHostAllocator.h' 2025-01-24T02:56:20.9366740Z adding 'torch/include/ATen/core/CheckMemoryFormat.h' 2025-01-24T02:56:20.9368370Z adding 'torch/include/ATen/core/DeprecatedTypeProperties.h' 2025-01-24T02:56:20.9369350Z adding 'torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h' 2025-01-24T02:56:20.9372950Z adding 'torch/include/ATen/core/Dict.h' 2025-01-24T02:56:20.9375000Z adding 'torch/include/ATen/core/Dict_inl.h' 2025-01-24T02:56:20.9376220Z adding 'torch/include/ATen/core/DimVector.h' 2025-01-24T02:56:20.9377010Z adding 'torch/include/ATen/core/Dimname.h' 2025-01-24T02:56:20.9379710Z adding 'torch/include/ATen/core/DistributionsHelper.h' 2025-01-24T02:56:20.9380980Z adding 'torch/include/ATen/core/Formatting.h' 2025-01-24T02:56:20.9382910Z adding 'torch/include/ATen/core/Generator.h' 2025-01-24T02:56:20.9384210Z adding 'torch/include/ATen/core/GeneratorForPrivateuseone.h' 2025-01-24T02:56:20.9388750Z adding 'torch/include/ATen/core/IListRef.h' 2025-01-24T02:56:20.9390550Z adding 'torch/include/ATen/core/IListRef_inl.h' 2025-01-24T02:56:20.9392350Z adding 'torch/include/ATen/core/LegacyTypeDispatch.h' 2025-01-24T02:56:20.9395750Z adding 'torch/include/ATen/core/List.h' 2025-01-24T02:56:20.9398240Z adding 'torch/include/ATen/core/List_inl.h' 2025-01-24T02:56:20.9400430Z adding 'torch/include/ATen/core/MT19937RNGEngine.h' 2025-01-24T02:56:20.9402270Z adding 'torch/include/ATen/core/NamedTensor.h' 2025-01-24T02:56:20.9404250Z adding 'torch/include/ATen/core/NestedIntSymNodeImpl.h' 2025-01-24T02:56:20.9406480Z adding 'torch/include/ATen/core/PhiloxRNGEngine.h' 2025-01-24T02:56:20.9407800Z adding 'torch/include/ATen/core/PythonFallbackKernel.h' 2025-01-24T02:56:20.9408550Z adding 'torch/include/ATen/core/PythonOpRegistrationTrampoline.h' 2025-01-24T02:56:20.9410200Z adding 'torch/include/ATen/core/QuantizerBase.h' 2025-01-24T02:56:20.9411020Z adding 'torch/include/ATen/core/Range.h' 2025-01-24T02:56:20.9412360Z adding 'torch/include/ATen/core/Reduction.h' 2025-01-24T02:56:20.9413040Z adding 'torch/include/ATen/core/Scalar.h' 2025-01-24T02:56:20.9414360Z adding 'torch/include/ATen/core/ScalarType.h' 2025-01-24T02:56:20.9415640Z adding 'torch/include/ATen/core/Tensor.h' 2025-01-24T02:56:20.9417880Z adding 'torch/include/ATen/core/TensorAccessor.h' 2025-01-24T02:56:20.9426610Z adding 'torch/include/ATen/core/TensorBase.h' 2025-01-24T02:56:20.9462650Z adding 'torch/include/ATen/core/TensorBody.h' 2025-01-24T02:56:20.9465120Z adding 'torch/include/ATen/core/TorchDispatchUtils.h' 2025-01-24T02:56:20.9467080Z adding 'torch/include/ATen/core/TransformationHelper.h' 2025-01-24T02:56:20.9467870Z adding 'torch/include/ATen/core/UndefinedTensorImpl.h' 2025-01-24T02:56:20.9469300Z adding 'torch/include/ATen/core/UnsafeFromTH.h' 2025-01-24T02:56:20.9470820Z adding 'torch/include/ATen/core/VariableHooksInterface.h' 2025-01-24T02:56:20.9472180Z adding 'torch/include/ATen/core/Variadic.h' 2025-01-24T02:56:20.9473540Z adding 'torch/include/ATen/core/Vitals.h' 2025-01-24T02:56:20.9475200Z adding 'torch/include/ATen/core/alias_info.h' 2025-01-24T02:56:20.9484690Z adding 'torch/include/ATen/core/aten_interned_strings.h' 2025-01-24T02:56:20.9486800Z adding 'torch/include/ATen/core/blob.h' 2025-01-24T02:56:20.9488190Z adding 'torch/include/ATen/core/builtin_function.h' 2025-01-24T02:56:20.9491550Z adding 'torch/include/ATen/core/class_type.h' 2025-01-24T02:56:20.9492790Z adding 'torch/include/ATen/core/custom_class.h' 2025-01-24T02:56:20.9495510Z adding 'torch/include/ATen/core/dynamic_type.h' 2025-01-24T02:56:20.9496740Z adding 'torch/include/ATen/core/enum_tag.h' 2025-01-24T02:56:20.9498110Z adding 'torch/include/ATen/core/enum_type.h' 2025-01-24T02:56:20.9499660Z adding 'torch/include/ATen/core/function.h' 2025-01-24T02:56:20.9505460Z adding 'torch/include/ATen/core/function_schema.h' 2025-01-24T02:56:20.9506990Z adding 'torch/include/ATen/core/function_schema_inl.h' 2025-01-24T02:56:20.9508240Z adding 'torch/include/ATen/core/functional.h' 2025-01-24T02:56:20.9508870Z adding 'torch/include/ATen/core/grad_mode.h' 2025-01-24T02:56:20.9512180Z adding 'torch/include/ATen/core/interned_strings.h' 2025-01-24T02:56:20.9513480Z adding 'torch/include/ATen/core/interned_strings_class.h' 2025-01-24T02:56:20.9525190Z adding 'torch/include/ATen/core/ivalue.h' 2025-01-24T02:56:20.9543790Z adding 'torch/include/ATen/core/ivalue_inl.h' 2025-01-24T02:56:20.9545400Z adding 'torch/include/ATen/core/ivalue_to.h' 2025-01-24T02:56:20.9559610Z adding 'torch/include/ATen/core/jit_type.h' 2025-01-24T02:56:20.9564790Z adding 'torch/include/ATen/core/jit_type_base.h' 2025-01-24T02:56:20.9566560Z adding 'torch/include/ATen/core/operator_name.h' 2025-01-24T02:56:20.9568330Z adding 'torch/include/ATen/core/qualified_name.h' 2025-01-24T02:56:20.9569600Z adding 'torch/include/ATen/core/rref_interface.h' 2025-01-24T02:56:20.9571590Z adding 'torch/include/ATen/core/stack.h' 2025-01-24T02:56:20.9573510Z adding 'torch/include/ATen/core/symbol.h' 2025-01-24T02:56:20.9574960Z adding 'torch/include/ATen/core/type_factory.h' 2025-01-24T02:56:20.9576200Z adding 'torch/include/ATen/core/type_ptr.h' 2025-01-24T02:56:20.9576890Z adding 'torch/include/ATen/core/typeid.h' 2025-01-24T02:56:20.9579890Z adding 'torch/include/ATen/core/boxing/BoxedKernel.h' 2025-01-24T02:56:20.9581450Z adding 'torch/include/ATen/core/boxing/BoxedKernel_impl.h' 2025-01-24T02:56:20.9583670Z adding 'torch/include/ATen/core/boxing/KernelFunction.h' 2025-01-24T02:56:20.9586320Z adding 'torch/include/ATen/core/boxing/KernelFunction_impl.h' 2025-01-24T02:56:20.9587220Z adding 'torch/include/ATen/core/boxing/OperatorKernel.h' 2025-01-24T02:56:20.9589160Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h' 2025-01-24T02:56:20.9590170Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h' 2025-01-24T02:56:20.9593400Z adding 'torch/include/ATen/core/boxing/impl/boxing.h' 2025-01-24T02:56:20.9598960Z adding 'torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h' 2025-01-24T02:56:20.9600630Z adding 'torch/include/ATen/core/boxing/impl/test_helpers.h' 2025-01-24T02:56:20.9602370Z adding 'torch/include/ATen/core/dispatch/CppSignature.h' 2025-01-24T02:56:20.9605080Z adding 'torch/include/ATen/core/dispatch/DispatchKeyExtractor.h' 2025-01-24T02:56:20.9612610Z adding 'torch/include/ATen/core/dispatch/Dispatcher.h' 2025-01-24T02:56:20.9613980Z adding 'torch/include/ATen/core/dispatch/ObservedOperators.h' 2025-01-24T02:56:20.9617440Z adding 'torch/include/ATen/core/dispatch/OperatorEntry.h' 2025-01-24T02:56:20.9618760Z adding 'torch/include/ATen/core/dispatch/OperatorOptions.h' 2025-01-24T02:56:20.9624050Z adding 'torch/include/ATen/core/dispatch/RegistrationHandleRAII.h' 2025-01-24T02:56:20.9624540Z adding 'torch/include/ATen/core/op_registration/adaption.h' 2025-01-24T02:56:20.9624980Z adding 'torch/include/ATen/core/op_registration/infer_schema.h' 2025-01-24T02:56:20.9625580Z adding 'torch/include/ATen/core/op_registration/op_allowlist.h' 2025-01-24T02:56:20.9630330Z adding 'torch/include/ATen/core/op_registration/op_registration.h' 2025-01-24T02:56:20.9631790Z adding 'torch/include/ATen/cpu/FlushDenormal.h' 2025-01-24T02:56:20.9633000Z adding 'torch/include/ATen/cpu/Utils.h' 2025-01-24T02:56:20.9634900Z adding 'torch/include/ATen/cpu/vml.h' 2025-01-24T02:56:20.9636310Z adding 'torch/include/ATen/cpu/vec/functional.h' 2025-01-24T02:56:20.9638630Z adding 'torch/include/ATen/cpu/vec/functional_base.h' 2025-01-24T02:56:20.9641820Z adding 'torch/include/ATen/cpu/vec/functional_bfloat16.h' 2025-01-24T02:56:20.9643190Z adding 'torch/include/ATen/cpu/vec/intrinsics.h' 2025-01-24T02:56:20.9644410Z adding 'torch/include/ATen/cpu/vec/vec.h' 2025-01-24T02:56:20.9651110Z adding 'torch/include/ATen/cpu/vec/vec_base.h' 2025-01-24T02:56:20.9652630Z adding 'torch/include/ATen/cpu/vec/vec_convert.h' 2025-01-24T02:56:20.9653930Z adding 'torch/include/ATen/cpu/vec/vec_half.h' 2025-01-24T02:56:20.9656440Z adding 'torch/include/ATen/cpu/vec/vec_mask.h' 2025-01-24T02:56:20.9658980Z adding 'torch/include/ATen/cpu/vec/vec_n.h' 2025-01-24T02:56:20.9660790Z adding 'torch/include/ATen/cpu/vec/sve/sve_helper.h' 2025-01-24T02:56:20.9662660Z adding 'torch/include/ATen/cpu/vec/sve/vec_common_sve.h' 2025-01-24T02:56:20.9665520Z adding 'torch/include/ATen/cpu/vec/sve/vec_double.h' 2025-01-24T02:56:20.9668610Z adding 'torch/include/ATen/cpu/vec/sve/vec_float.h' 2025-01-24T02:56:20.9671990Z adding 'torch/include/ATen/cpu/vec/sve/vec_int.h' 2025-01-24T02:56:20.9675120Z adding 'torch/include/ATen/cpu/vec/sve/vec_qint.h' 2025-01-24T02:56:20.9676660Z adding 'torch/include/ATen/cpu/vec/vec128/vec128.h' 2025-01-24T02:56:20.9680330Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h' 2025-01-24T02:56:20.9681720Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_convert.h' 2025-01-24T02:56:20.9685210Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h' 2025-01-24T02:56:20.9688560Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h' 2025-01-24T02:56:20.9690800Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h' 2025-01-24T02:56:20.9692980Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h' 2025-01-24T02:56:20.9693880Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h' 2025-01-24T02:56:20.9696650Z adding 'torch/include/ATen/cpu/vec/vec256/vec256.h' 2025-01-24T02:56:20.9702550Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h' 2025-01-24T02:56:20.9706470Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h' 2025-01-24T02:56:20.9710560Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h' 2025-01-24T02:56:20.9712810Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_convert.h' 2025-01-24T02:56:20.9715450Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_double.h' 2025-01-24T02:56:20.9719630Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float.h' 2025-01-24T02:56:20.9728020Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_int.h' 2025-01-24T02:56:20.9730520Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_mask.h' 2025-01-24T02:56:20.9737200Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_qint.h' 2025-01-24T02:56:20.9739130Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h' 2025-01-24T02:56:20.9741320Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h' 2025-01-24T02:56:20.9745320Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h' 2025-01-24T02:56:20.9749400Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h' 2025-01-24T02:56:20.9752320Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h' 2025-01-24T02:56:20.9755290Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h' 2025-01-24T02:56:20.9757960Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h' 2025-01-24T02:56:20.9760320Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h' 2025-01-24T02:56:20.9762620Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h' 2025-01-24T02:56:20.9764990Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h' 2025-01-24T02:56:20.9768180Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h' 2025-01-24T02:56:20.9771490Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h' 2025-01-24T02:56:20.9775280Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h' 2025-01-24T02:56:20.9790920Z adding 'torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h' 2025-01-24T02:56:20.9794040Z adding 'torch/include/ATen/cpu/vec/vec512/vec512.h' 2025-01-24T02:56:20.9803100Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h' 2025-01-24T02:56:20.9807840Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h' 2025-01-24T02:56:20.9813560Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h' 2025-01-24T02:56:20.9815740Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_convert.h' 2025-01-24T02:56:20.9818610Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_double.h' 2025-01-24T02:56:20.9823110Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float.h' 2025-01-24T02:56:20.9830620Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_int.h' 2025-01-24T02:56:20.9833460Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_mask.h' 2025-01-24T02:56:20.9840040Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_qint.h' 2025-01-24T02:56:20.9841880Z adding 'torch/include/ATen/cuda/ATenCUDAGeneral.h' 2025-01-24T02:56:20.9843210Z adding 'torch/include/ATen/cuda/ApplyGridUtils.cuh' 2025-01-24T02:56:20.9844620Z adding 'torch/include/ATen/cuda/AsmUtils.cuh' 2025-01-24T02:56:20.9848240Z adding 'torch/include/ATen/cuda/Atomic.cuh' 2025-01-24T02:56:20.9852690Z adding 'torch/include/ATen/cuda/CUDAApplyUtils.cuh' 2025-01-24T02:56:20.9855120Z adding 'torch/include/ATen/cuda/CUDABlas.h' 2025-01-24T02:56:20.9856350Z adding 'torch/include/ATen/cuda/CUDAContext.h' 2025-01-24T02:56:20.9857740Z adding 'torch/include/ATen/cuda/CUDAContextLight.h' 2025-01-24T02:56:20.9859080Z adding 'torch/include/ATen/cuda/CUDADataType.h' 2025-01-24T02:56:20.9860320Z adding 'torch/include/ATen/cuda/CUDADevice.h' 2025-01-24T02:56:20.9862380Z adding 'torch/include/ATen/cuda/CUDAEvent.h' 2025-01-24T02:56:20.9864560Z adding 'torch/include/ATen/cuda/CUDAGeneratorImpl.h' 2025-01-24T02:56:20.9866110Z adding 'torch/include/ATen/cuda/CUDAGraph.h' 2025-01-24T02:56:20.9867450Z adding 'torch/include/ATen/cuda/CUDAGraphsUtils.cuh' 2025-01-24T02:56:20.9868740Z adding 'torch/include/ATen/cuda/CUDASparse.h' 2025-01-24T02:56:20.9870940Z adding 'torch/include/ATen/cuda/CUDASparseBlas.h' 2025-01-24T02:56:20.9873000Z adding 'torch/include/ATen/cuda/CUDASparseDescriptors.h' 2025-01-24T02:56:20.9873770Z adding 'torch/include/ATen/cuda/CUDATensorMethods.cuh' 2025-01-24T02:56:20.9875100Z adding 'torch/include/ATen/cuda/CUDAUtils.h' 2025-01-24T02:56:20.9881000Z adding 'torch/include/ATen/cuda/CachingHostAllocator.h' 2025-01-24T02:56:20.9881410Z adding 'torch/include/ATen/cuda/DeviceUtils.cuh' 2025-01-24T02:56:20.9881790Z adding 'torch/include/ATen/cuda/EmptyTensor.h' 2025-01-24T02:56:20.9882150Z adding 'torch/include/ATen/cuda/Exceptions.h' 2025-01-24T02:56:20.9882600Z adding 'torch/include/ATen/cuda/NumericLimits.cuh' 2025-01-24T02:56:20.9884540Z adding 'torch/include/ATen/cuda/PeerToPeerAccess.h' 2025-01-24T02:56:20.9885290Z adding 'torch/include/ATen/cuda/PhiloxCudaState.h' 2025-01-24T02:56:20.9886620Z adding 'torch/include/ATen/cuda/PhiloxUtils.cuh' 2025-01-24T02:56:20.9887490Z adding 'torch/include/ATen/cuda/PinnedMemoryAllocator.h' 2025-01-24T02:56:20.9889050Z adding 'torch/include/ATen/cuda/ScanUtils.cuh' 2025-01-24T02:56:20.9890300Z adding 'torch/include/ATen/cuda/Sleep.h' 2025-01-24T02:56:20.9890980Z adding 'torch/include/ATen/cuda/ThrustAllocator.h' 2025-01-24T02:56:20.9895500Z adding 'torch/include/ATen/cuda/cub.cuh' 2025-01-24T02:56:20.9897130Z adding 'torch/include/ATen/cuda/cub.h' 2025-01-24T02:56:20.9898390Z adding 'torch/include/ATen/cuda/cub_definitions.cuh' 2025-01-24T02:56:20.9899650Z adding 'torch/include/ATen/cuda/jiterator.h' 2025-01-24T02:56:20.9901410Z adding 'torch/include/ATen/cuda/jiterator_impl.h' 2025-01-24T02:56:20.9902220Z adding 'torch/include/ATen/cuda/llvm_jit_strings.h' 2025-01-24T02:56:20.9904200Z adding 'torch/include/ATen/cuda/detail/CUDAHooks.h' 2025-01-24T02:56:20.9906650Z adding 'torch/include/ATen/cuda/detail/DeviceThreadHandles.h' 2025-01-24T02:56:20.9908010Z adding 'torch/include/ATen/cuda/detail/IndexUtils.cuh' 2025-01-24T02:56:20.9909870Z adding 'torch/include/ATen/cuda/detail/IntegerDivider.cuh' 2025-01-24T02:56:20.9910680Z adding 'torch/include/ATen/cuda/detail/KernelUtils.h' 2025-01-24T02:56:20.9912050Z adding 'torch/include/ATen/cuda/detail/LazyNVRTC.h' 2025-01-24T02:56:20.9913700Z adding 'torch/include/ATen/cuda/detail/OffsetCalculator.cuh' 2025-01-24T02:56:20.9915260Z adding 'torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh' 2025-01-24T02:56:20.9916600Z adding 'torch/include/ATen/cuda/detail/TensorInfo.cuh' 2025-01-24T02:56:20.9917930Z adding 'torch/include/ATen/cuda/detail/UnpackRaw.cuh' 2025-01-24T02:56:20.9920410Z adding 'torch/include/ATen/cuda/tunable/GemmCommon.h' 2025-01-24T02:56:20.9924060Z adding 'torch/include/ATen/cuda/tunable/GemmHipblaslt.h' 2025-01-24T02:56:20.9926210Z adding 'torch/include/ATen/cuda/tunable/GemmRocblas.h' 2025-01-24T02:56:20.9927500Z adding 'torch/include/ATen/cuda/tunable/StreamTimer.h' 2025-01-24T02:56:20.9929540Z adding 'torch/include/ATen/cuda/tunable/Tunable.h' 2025-01-24T02:56:20.9931470Z adding 'torch/include/ATen/cuda/tunable/TunableGemm.h' 2025-01-24T02:56:20.9934140Z adding 'torch/include/ATen/cuda/tunable/TunableOp.h' 2025-01-24T02:56:20.9937850Z adding 'torch/include/ATen/cudnn/Descriptors.h' 2025-01-24T02:56:20.9939130Z adding 'torch/include/ATen/cudnn/Handle.h' 2025-01-24T02:56:20.9939760Z adding 'torch/include/ATen/cudnn/Handles.h' 2025-01-24T02:56:20.9941150Z adding 'torch/include/ATen/cudnn/Types.h' 2025-01-24T02:56:20.9942370Z adding 'torch/include/ATen/cudnn/Utils.h' 2025-01-24T02:56:20.9943140Z adding 'torch/include/ATen/cudnn/cudnn-wrapper.h' 2025-01-24T02:56:20.9945200Z adding 'torch/include/ATen/detail/AcceleratorHooksInterface.h' 2025-01-24T02:56:20.9947190Z adding 'torch/include/ATen/detail/CUDAHooksInterface.h' 2025-01-24T02:56:20.9948610Z adding 'torch/include/ATen/detail/FunctionTraits.h' 2025-01-24T02:56:20.9949950Z adding 'torch/include/ATen/detail/HIPHooksInterface.h' 2025-01-24T02:56:20.9951310Z adding 'torch/include/ATen/detail/HPUHooksInterface.h' 2025-01-24T02:56:20.9952610Z adding 'torch/include/ATen/detail/IPUHooksInterface.h' 2025-01-24T02:56:20.9953520Z adding 'torch/include/ATen/detail/MAIAHooksInterface.h' 2025-01-24T02:56:20.9955150Z adding 'torch/include/ATen/detail/MPSHooksInterface.h' 2025-01-24T02:56:20.9956700Z adding 'torch/include/ATen/detail/MTIAHooksInterface.h' 2025-01-24T02:56:20.9958120Z adding 'torch/include/ATen/detail/PrivateUse1HooksInterface.h' 2025-01-24T02:56:20.9959470Z adding 'torch/include/ATen/detail/XPUHooksInterface.h' 2025-01-24T02:56:20.9961120Z adding 'torch/include/ATen/functorch/ADInterpreters.h' 2025-01-24T02:56:20.9964700Z adding 'torch/include/ATen/functorch/BatchRulesHelper.h' 2025-01-24T02:56:20.9966320Z adding 'torch/include/ATen/functorch/BatchedFallback.h' 2025-01-24T02:56:20.9968460Z adding 'torch/include/ATen/functorch/BatchedTensorImpl.h' 2025-01-24T02:56:20.9970110Z adding 'torch/include/ATen/functorch/BatchingMetaprogramming.h' 2025-01-24T02:56:20.9972090Z adding 'torch/include/ATen/functorch/DynamicLayer.h' 2025-01-24T02:56:20.9973440Z adding 'torch/include/ATen/functorch/FunctionalizeInterpreter.h' 2025-01-24T02:56:20.9975490Z adding 'torch/include/ATen/functorch/Interpreter.h' 2025-01-24T02:56:20.9978070Z adding 'torch/include/ATen/functorch/LegacyVmapTransforms.h' 2025-01-24T02:56:20.9978790Z adding 'torch/include/ATen/functorch/Macros.h' 2025-01-24T02:56:20.9980560Z adding 'torch/include/ATen/functorch/PlumbingHelper.h' 2025-01-24T02:56:20.9982320Z adding 'torch/include/ATen/functorch/TensorWrapper.h' 2025-01-24T02:56:20.9984220Z adding 'torch/include/ATen/functorch/VmapInterpreter.h' 2025-01-24T02:56:20.9986030Z adding 'torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h' 2025-01-24T02:56:20.9986940Z adding 'torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h' 2025-01-24T02:56:20.9990450Z adding 'torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h' 2025-01-24T02:56:20.9992210Z adding 'torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h' 2025-01-24T02:56:20.9994140Z adding 'torch/include/ATen/miopen/Descriptors.h' 2025-01-24T02:56:20.9995400Z adding 'torch/include/ATen/miopen/Exceptions.h' 2025-01-24T02:56:20.9996090Z adding 'torch/include/ATen/miopen/Handle.h' 2025-01-24T02:56:20.9997420Z adding 'torch/include/ATen/miopen/Types.h' 2025-01-24T02:56:20.9998630Z adding 'torch/include/ATen/miopen/Utils.h' 2025-01-24T02:56:20.9999160Z adding 'torch/include/ATen/miopen/miopen-wrapper.h' 2025-01-24T02:56:21.0000820Z adding 'torch/include/ATen/mps/EmptyTensor.h' 2025-01-24T02:56:21.0002680Z adding 'torch/include/ATen/mps/IndexKernels.h' 2025-01-24T02:56:21.0007790Z adding 'torch/include/ATen/mps/MPSAllocator.h' 2025-01-24T02:56:21.0009100Z adding 'torch/include/ATen/mps/MPSAllocatorInterface.h' 2025-01-24T02:56:21.0010370Z adding 'torch/include/ATen/mps/MPSDevice.h' 2025-01-24T02:56:21.0012010Z adding 'torch/include/ATen/mps/MPSEvent.h' 2025-01-24T02:56:21.0013290Z adding 'torch/include/ATen/mps/MPSGeneratorImpl.h' 2025-01-24T02:56:21.0015070Z adding 'torch/include/ATen/mps/MPSGuardImpl.h' 2025-01-24T02:56:21.0016430Z adding 'torch/include/ATen/mps/MPSHooks.h' 2025-01-24T02:56:21.0020410Z adding 'torch/include/ATen/mps/MPSProfiler.h' 2025-01-24T02:56:21.0024520Z adding 'torch/include/ATen/mps/MPSStream.h' 2025-01-24T02:56:21.0024870Z adding 'torch/include/ATen/native/Activation.h' 2025-01-24T02:56:21.0025620Z adding 'torch/include/ATen/native/AdaptivePooling.h' 2025-01-24T02:56:21.0027040Z adding 'torch/include/ATen/native/AmpKernels.h' 2025-01-24T02:56:21.0029150Z adding 'torch/include/ATen/native/BatchLinearAlgebra.h' 2025-01-24T02:56:21.0030690Z adding 'torch/include/ATen/native/BinaryOps.h' 2025-01-24T02:56:21.0032910Z adding 'torch/include/ATen/native/BucketizationUtils.h' 2025-01-24T02:56:21.0034770Z adding 'torch/include/ATen/native/CPUBlas.h' 2025-01-24T02:56:21.0036140Z adding 'torch/include/ATen/native/CPUFallback.h' 2025-01-24T02:56:21.0037480Z adding 'torch/include/ATen/native/CanUse32BitIndexMath.h' 2025-01-24T02:56:21.0038970Z adding 'torch/include/ATen/native/ComplexHelper.h' 2025-01-24T02:56:21.0040380Z adding 'torch/include/ATen/native/CompositeRandomAccessor.h' 2025-01-24T02:56:21.0042090Z adding 'torch/include/ATen/native/CompositeRandomAccessorCommon.h' 2025-01-24T02:56:21.0045530Z adding 'torch/include/ATen/native/ConvUtils.h' 2025-01-24T02:56:21.0046780Z adding 'torch/include/ATen/native/ConvolutionMM3d.h' 2025-01-24T02:56:21.0047510Z adding 'torch/include/ATen/native/Copy.h' 2025-01-24T02:56:21.0048880Z adding 'torch/include/ATen/native/Cross.h' 2025-01-24T02:56:21.0050910Z adding 'torch/include/ATen/native/DilatedConvolutionUtils.h' 2025-01-24T02:56:21.0053990Z adding 'torch/include/ATen/native/DispatchStub.h' 2025-01-24T02:56:21.0054740Z adding 'torch/include/ATen/native/Distance.h' 2025-01-24T02:56:21.0058530Z adding 'torch/include/ATen/native/DistributionTemplates.h' 2025-01-24T02:56:21.0063540Z adding 'torch/include/ATen/native/Distributions.h' 2025-01-24T02:56:21.0065330Z adding 'torch/include/ATen/native/EmbeddingBag.h' 2025-01-24T02:56:21.0066170Z adding 'torch/include/ATen/native/Fill.h' 2025-01-24T02:56:21.0069890Z adding 'torch/include/ATen/native/ForeachUtils.h' 2025-01-24T02:56:21.0071350Z adding 'torch/include/ATen/native/FractionalMaxPooling.h' 2025-01-24T02:56:21.0072190Z adding 'torch/include/ATen/native/FunctionOfAMatrixUtils.h' 2025-01-24T02:56:21.0073500Z adding 'torch/include/ATen/native/FusedAdagrad.h' 2025-01-24T02:56:21.0074750Z adding 'torch/include/ATen/native/FusedAdam.h' 2025-01-24T02:56:21.0075390Z adding 'torch/include/ATen/native/FusedSGD.h' 2025-01-24T02:56:21.0076860Z adding 'torch/include/ATen/native/Gelu.h' 2025-01-24T02:56:21.0079160Z adding 'torch/include/ATen/native/GridSampler.h' 2025-01-24T02:56:21.0080680Z adding 'torch/include/ATen/native/GridSamplerUtils.h' 2025-01-24T02:56:21.0081510Z adding 'torch/include/ATen/native/Histogram.h' 2025-01-24T02:56:21.0083010Z adding 'torch/include/ATen/native/IndexKernel.h' 2025-01-24T02:56:21.0084830Z adding 'torch/include/ATen/native/IndexingUtils.h' 2025-01-24T02:56:21.0086060Z adding 'torch/include/ATen/native/Lerp.h' 2025-01-24T02:56:21.0086960Z adding 'torch/include/ATen/native/LinearAlgebra.h' 2025-01-24T02:56:21.0093540Z adding 'torch/include/ATen/native/LinearAlgebraUtils.h' 2025-01-24T02:56:21.0095000Z adding 'torch/include/ATen/native/LossMulti.h' 2025-01-24T02:56:21.0125690Z adding 'torch/include/ATen/native/Math.h' 2025-01-24T02:56:21.0127870Z adding 'torch/include/ATen/native/MathBitFallThroughLists.h' 2025-01-24T02:56:21.0130140Z adding 'torch/include/ATen/native/MathBitsFallback.h' 2025-01-24T02:56:21.0131900Z adding 'torch/include/ATen/native/MaxPooling.h' 2025-01-24T02:56:21.0132720Z adding 'torch/include/ATen/native/NonEmptyUtils.h' 2025-01-24T02:56:21.0134360Z adding 'torch/include/ATen/native/NonSymbolicBC.h' 2025-01-24T02:56:21.0135640Z adding 'torch/include/ATen/native/Normalization.h' 2025-01-24T02:56:21.0136880Z adding 'torch/include/ATen/native/Padding.h' 2025-01-24T02:56:21.0138120Z adding 'torch/include/ATen/native/PixelShuffle.h' 2025-01-24T02:56:21.0139380Z adding 'torch/include/ATen/native/PointwiseOps.h' 2025-01-24T02:56:21.0142020Z adding 'torch/include/ATen/native/Pool.h' 2025-01-24T02:56:21.0143320Z adding 'torch/include/ATen/native/Pow.h' 2025-01-24T02:56:21.0144650Z adding 'torch/include/ATen/native/RNN.h' 2025-01-24T02:56:21.0145900Z adding 'torch/include/ATen/native/RangeFactories.h' 2025-01-24T02:56:21.0146560Z adding 'torch/include/ATen/native/ReduceAllOps.h' 2025-01-24T02:56:21.0148040Z adding 'torch/include/ATen/native/ReduceOps.h' 2025-01-24T02:56:21.0151410Z adding 'torch/include/ATen/native/ReduceOpsUtils.h' 2025-01-24T02:56:21.0152730Z adding 'torch/include/ATen/native/ReductionType.h' 2025-01-24T02:56:21.0153990Z adding 'torch/include/ATen/native/Repeat.h' 2025-01-24T02:56:21.0156100Z adding 'torch/include/ATen/native/Resize.h' 2025-01-24T02:56:21.0157550Z adding 'torch/include/ATen/native/ResizeCommon.h' 2025-01-24T02:56:21.0159220Z adding 'torch/include/ATen/native/ScatterGatherChecks.h' 2025-01-24T02:56:21.0160040Z adding 'torch/include/ATen/native/SegmentReduce.h' 2025-01-24T02:56:21.0163160Z adding 'torch/include/ATen/native/SharedReduceOps.h' 2025-01-24T02:56:21.0164560Z adding 'torch/include/ATen/native/SobolEngineOpsUtils.h' 2025-01-24T02:56:21.0165320Z adding 'torch/include/ATen/native/Sorting.h' 2025-01-24T02:56:21.0166880Z adding 'torch/include/ATen/native/SortingUtils.h' 2025-01-24T02:56:21.0168950Z adding 'torch/include/ATen/native/SparseTensorUtils.h' 2025-01-24T02:56:21.0170460Z adding 'torch/include/ATen/native/SpectralOpsUtils.h' 2025-01-24T02:56:21.0172290Z adding 'torch/include/ATen/native/StridedRandomAccessor.h' 2025-01-24T02:56:21.0173640Z adding 'torch/include/ATen/native/TensorAdvancedIndexing.h' 2025-01-24T02:56:21.0175210Z adding 'torch/include/ATen/native/TensorAdvancedIndexingUtils.h' 2025-01-24T02:56:21.0176090Z adding 'torch/include/ATen/native/TensorCompare.h' 2025-01-24T02:56:21.0177500Z adding 'torch/include/ATen/native/TensorConversions.h' 2025-01-24T02:56:21.0178840Z adding 'torch/include/ATen/native/TensorDimApply.h' 2025-01-24T02:56:21.0180640Z adding 'torch/include/ATen/native/TensorFactories.h' 2025-01-24T02:56:21.0181340Z adding 'torch/include/ATen/native/TensorIterator.h' 2025-01-24T02:56:21.0182960Z adding 'torch/include/ATen/native/TensorIteratorDynamicCasting.h' 2025-01-24T02:56:21.0183640Z adding 'torch/include/ATen/native/TensorProperties.h' 2025-01-24T02:56:21.0185680Z adding 'torch/include/ATen/native/TensorShape.h' 2025-01-24T02:56:21.0186980Z adding 'torch/include/ATen/native/TensorTransformations.h' 2025-01-24T02:56:21.0188260Z adding 'torch/include/ATen/native/TopKImpl.h' 2025-01-24T02:56:21.0189520Z adding 'torch/include/ATen/native/TransposeType.h' 2025-01-24T02:56:21.0190850Z adding 'torch/include/ATen/native/TriangularOpsUtils.h' 2025-01-24T02:56:21.0195010Z adding 'torch/include/ATen/native/TypeProperties.h' 2025-01-24T02:56:21.0195420Z adding 'torch/include/ATen/native/UnaryOps.h' 2025-01-24T02:56:21.0195760Z adding 'torch/include/ATen/native/Unfold2d.h' 2025-01-24T02:56:21.0196090Z adding 'torch/include/ATen/native/Unfold3d.h' 2025-01-24T02:56:21.0196630Z adding 'torch/include/ATen/native/UnfoldBackward.h' 2025-01-24T02:56:21.0200870Z adding 'torch/include/ATen/native/UpSample.h' 2025-01-24T02:56:21.0202190Z adding 'torch/include/ATen/native/batch_norm.h' 2025-01-24T02:56:21.0203450Z adding 'torch/include/ATen/native/group_norm.h' 2025-01-24T02:56:21.0204950Z adding 'torch/include/ATen/native/im2col.h' 2025-01-24T02:56:21.0206830Z adding 'torch/include/ATen/native/im2col_shape_check.h' 2025-01-24T02:56:21.0208400Z adding 'torch/include/ATen/native/layer_norm.h' 2025-01-24T02:56:21.0209120Z adding 'torch/include/ATen/native/verbose_wrapper.h' 2025-01-24T02:56:21.0210800Z adding 'torch/include/ATen/native/vol2col.h' 2025-01-24T02:56:21.0212580Z adding 'torch/include/ATen/native/cpu/AtomicAddFloat.h' 2025-01-24T02:56:21.0213350Z adding 'torch/include/ATen/native/cpu/CatKernel.h' 2025-01-24T02:56:21.0214790Z adding 'torch/include/ATen/native/cpu/ChannelShuffleKernel.h' 2025-01-24T02:56:21.0215570Z adding 'torch/include/ATen/native/cpu/CopyKernel.h' 2025-01-24T02:56:21.0217020Z adding 'torch/include/ATen/native/cpu/DepthwiseConvKernel.h' 2025-01-24T02:56:21.0220010Z adding 'torch/include/ATen/native/cpu/DistributionTemplates.h' 2025-01-24T02:56:21.0221310Z adding 'torch/include/ATen/native/cpu/Gelu.h' 2025-01-24T02:56:21.0222610Z adding 'torch/include/ATen/native/cpu/GridSamplerKernel.h' 2025-01-24T02:56:21.0223980Z adding 'torch/include/ATen/native/cpu/IndexKernelUtils.h' 2025-01-24T02:56:21.0225270Z adding 'torch/include/ATen/native/cpu/Intrinsics.h' 2025-01-24T02:56:21.0226540Z adding 'torch/include/ATen/native/cpu/IsContiguous.h' 2025-01-24T02:56:21.0227870Z adding 'torch/include/ATen/native/cpu/LogAddExp.h' 2025-01-24T02:56:21.0230890Z adding 'torch/include/ATen/native/cpu/Loops.h' 2025-01-24T02:56:21.0232170Z adding 'torch/include/ATen/native/cpu/MaxUnpoolKernel.h' 2025-01-24T02:56:21.0232860Z adding 'torch/include/ATen/native/cpu/PixelShuffleKernel.h' 2025-01-24T02:56:21.0236100Z adding 'torch/include/ATen/native/cpu/Reduce.h' 2025-01-24T02:56:21.0238160Z adding 'torch/include/ATen/native/cpu/ReduceUtils.h' 2025-01-24T02:56:21.0239590Z adding 'torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h' 2025-01-24T02:56:21.0240260Z adding 'torch/include/ATen/native/cpu/SampledAddmmKernel.h' 2025-01-24T02:56:21.0242300Z adding 'torch/include/ATen/native/cpu/SerialStackImpl.h' 2025-01-24T02:56:21.0243150Z adding 'torch/include/ATen/native/cpu/SoftmaxKernel.h' 2025-01-24T02:56:21.0244520Z adding 'torch/include/ATen/native/cpu/SpmmReduceKernel.h' 2025-01-24T02:56:21.0245260Z adding 'torch/include/ATen/native/cpu/StackKernel.h' 2025-01-24T02:56:21.0255230Z adding 'torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h' 2025-01-24T02:56:21.0256670Z adding 'torch/include/ATen/native/cpu/WeightNormKernel.h' 2025-01-24T02:56:21.0260210Z adding 'torch/include/ATen/native/cpu/avx_mathfun.h' 2025-01-24T02:56:21.0261500Z adding 'torch/include/ATen/native/cpu/int_mm_kernel.h' 2025-01-24T02:56:21.0262820Z adding 'torch/include/ATen/native/cpu/mixed_data_type.h' 2025-01-24T02:56:21.0264730Z adding 'torch/include/ATen/native/cpu/moments_utils.h' 2025-01-24T02:56:21.0266780Z adding 'torch/include/ATen/native/cpu/utils.h' 2025-01-24T02:56:21.0268410Z adding 'torch/include/ATen/native/cpu/zmath.h' 2025-01-24T02:56:21.0270230Z adding 'torch/include/ATen/native/cuda/Activation.h' 2025-01-24T02:56:21.0271510Z adding 'torch/include/ATen/native/cuda/BinaryInternal.h' 2025-01-24T02:56:21.0274140Z adding 'torch/include/ATen/native/cuda/CUDAJitLoops.cuh' 2025-01-24T02:56:21.0277110Z adding 'torch/include/ATen/native/cuda/CUDALoops.cuh' 2025-01-24T02:56:21.0278510Z adding 'torch/include/ATen/native/cuda/CompositeRandomAccessor.h' 2025-01-24T02:56:21.0279060Z adding 'torch/include/ATen/native/cuda/Copy.h' 2025-01-24T02:56:21.0283740Z adding 'torch/include/ATen/native/cuda/CuFFTPlanCache.h' 2025-01-24T02:56:21.0285070Z adding 'torch/include/ATen/native/cuda/CuFFTUtils.h' 2025-01-24T02:56:21.0285890Z adding 'torch/include/ATen/native/cuda/DeviceSqrt.cuh' 2025-01-24T02:56:21.0291100Z adding 'torch/include/ATen/native/cuda/DistributionTemplates.h' 2025-01-24T02:56:21.0292460Z adding 'torch/include/ATen/native/cuda/Distributions.h' 2025-01-24T02:56:21.0293280Z adding 'torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh' 2025-01-24T02:56:21.0296430Z adding 'torch/include/ATen/native/cuda/ForeachFunctors.cuh' 2025-01-24T02:56:21.0297240Z adding 'torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh' 2025-01-24T02:56:21.0299920Z adding 'torch/include/ATen/native/cuda/GridSampler.cuh' 2025-01-24T02:56:21.0300780Z adding 'torch/include/ATen/native/cuda/GridSampler.h' 2025-01-24T02:56:21.0302080Z adding 'torch/include/ATen/native/cuda/IndexKernel.h' 2025-01-24T02:56:21.0304220Z adding 'torch/include/ATen/native/cuda/JitLoops.cuh' 2025-01-24T02:56:21.0306230Z adding 'torch/include/ATen/native/cuda/KernelUtils.cuh' 2025-01-24T02:56:21.0307040Z adding 'torch/include/ATen/native/cuda/LaunchUtils.h' 2025-01-24T02:56:21.0309780Z adding 'torch/include/ATen/native/cuda/Loops.cuh' 2025-01-24T02:56:21.0332270Z adding 'torch/include/ATen/native/cuda/Math.cuh' 2025-01-24T02:56:21.0335930Z adding 'torch/include/ATen/native/cuda/MemoryAccess.cuh' 2025-01-24T02:56:21.0337210Z adding 'torch/include/ATen/native/cuda/MiscUtils.h' 2025-01-24T02:56:21.0339990Z adding 'torch/include/ATen/native/cuda/MultiTensorApply.cuh' 2025-01-24T02:56:21.0351470Z adding 'torch/include/ATen/native/cuda/Normalization.cuh' 2025-01-24T02:56:21.0355050Z adding 'torch/include/ATen/native/cuda/PersistentSoftmax.cuh' 2025-01-24T02:56:21.0356410Z adding 'torch/include/ATen/native/cuda/Pow.cuh' 2025-01-24T02:56:21.0357850Z adding 'torch/include/ATen/native/cuda/Randperm.cuh' 2025-01-24T02:56:21.0368050Z adding 'torch/include/ATen/native/cuda/Reduce.cuh' 2025-01-24T02:56:21.0369430Z adding 'torch/include/ATen/native/cuda/ReduceOps.h' 2025-01-24T02:56:21.0370820Z adding 'torch/include/ATen/native/cuda/Resize.h' 2025-01-24T02:56:21.0371940Z adding 'torch/include/ATen/native/cuda/RowwiseScaledMM.h' 2025-01-24T02:56:21.0373010Z adding 'torch/include/ATen/native/cuda/ScanKernels.h' 2025-01-24T02:56:21.0376900Z adding 'torch/include/ATen/native/cuda/ScanUtils.cuh' 2025-01-24T02:56:21.0378060Z adding 'torch/include/ATen/native/cuda/Sort.h' 2025-01-24T02:56:21.0379140Z adding 'torch/include/ATen/native/cuda/SortStable.h' 2025-01-24T02:56:21.0381850Z adding 'torch/include/ATen/native/cuda/SortUtils.cuh' 2025-01-24T02:56:21.0382930Z adding 'torch/include/ATen/native/cuda/Sorting.h' 2025-01-24T02:56:21.0384700Z adding 'torch/include/ATen/native/cuda/SortingCommon.cuh' 2025-01-24T02:56:21.0387770Z adding 'torch/include/ATen/native/cuda/SortingRadixSelect.cuh' 2025-01-24T02:56:21.0395110Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.cuh' 2025-01-24T02:56:21.0395630Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.h' 2025-01-24T02:56:21.0396050Z adding 'torch/include/ATen/native/cuda/TensorTopK.h' 2025-01-24T02:56:21.0396490Z adding 'torch/include/ATen/native/cuda/UniqueCub.cuh' 2025-01-24T02:56:21.0397250Z adding 'torch/include/ATen/native/cuda/UpSample.cuh' 2025-01-24T02:56:21.0399030Z adding 'torch/include/ATen/native/cuda/block_reduce.cuh' 2025-01-24T02:56:21.0400190Z adding 'torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh' 2025-01-24T02:56:21.0401090Z adding 'torch/include/ATen/native/cuda/fused_adam_impl.cuh' 2025-01-24T02:56:21.0403300Z adding 'torch/include/ATen/native/cuda/fused_adam_utils.cuh' 2025-01-24T02:56:21.0404460Z adding 'torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh' 2025-01-24T02:56:21.0405330Z adding 'torch/include/ATen/native/cuda/fused_adamw_impl.cuh' 2025-01-24T02:56:21.0407670Z adding 'torch/include/ATen/native/cuda/im2col.cuh' 2025-01-24T02:56:21.0409680Z adding 'torch/include/ATen/native/cuda/jit_utils.h' 2025-01-24T02:56:21.0414180Z adding 'torch/include/ATen/native/cuda/reduction_template.cuh' 2025-01-24T02:56:21.0415370Z adding 'torch/include/ATen/native/cuda/thread_constants.h' 2025-01-24T02:56:21.0417680Z adding 'torch/include/ATen/native/cuda/vol2col.cuh' 2025-01-24T02:56:21.0419080Z adding 'torch/include/ATen/native/hip/ck_bgemm.h' 2025-01-24T02:56:21.0420190Z adding 'torch/include/ATen/native/hip/ck_gemm.h' 2025-01-24T02:56:21.0422270Z adding 'torch/include/ATen/native/hip/ck_gemm_template.h' 2025-01-24T02:56:21.0423500Z adding 'torch/include/ATen/native/hip/ck_types.h' 2025-01-24T02:56:21.0424940Z adding 'torch/include/ATen/native/kleidiai/kai_kernels.h' 2025-01-24T02:56:21.0426300Z adding 'torch/include/ATen/native/kleidiai/kai_pack.h' 2025-01-24T02:56:21.0427770Z adding 'torch/include/ATen/native/kleidiai/kai_ukernel_interface.h' 2025-01-24T02:56:21.0431970Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Attr.h' 2025-01-24T02:56:21.0433450Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Utils.h' 2025-01-24T02:56:21.0434880Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h' 2025-01-24T02:56:21.0436360Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h' 2025-01-24T02:56:21.0437620Z adding 'torch/include/ATen/native/mps/Copy.h' 2025-01-24T02:56:21.0438910Z adding 'torch/include/ATen/native/mps/MPSGraphSequoiaOps.h' 2025-01-24T02:56:21.0440200Z adding 'torch/include/ATen/native/mps/MPSGraphSonomaOps.h' 2025-01-24T02:56:21.0442110Z adding 'torch/include/ATen/native/mps/MPSGraphVenturaOps.h' 2025-01-24T02:56:21.0443840Z adding 'torch/include/ATen/native/mps/MetalShaderLibrary.h' 2025-01-24T02:56:21.0447880Z adding 'torch/include/ATen/native/mps/OperationUtils.h' 2025-01-24T02:56:21.0449170Z adding 'torch/include/ATen/native/mps/TensorFactory.h' 2025-01-24T02:56:21.0450700Z adding 'torch/include/ATen/native/nested/NestedTensorBinaryOps.h' 2025-01-24T02:56:21.0452060Z adding 'torch/include/ATen/native/nested/NestedTensorMath.h' 2025-01-24T02:56:21.0453540Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h' 2025-01-24T02:56:21.0454680Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerUtils.h' 2025-01-24T02:56:21.0458280Z adding 'torch/include/ATen/native/nested/NestedTensorUtils.h' 2025-01-24T02:56:21.0459990Z adding 'torch/include/ATen/native/quantized/AffineQuantizer.h' 2025-01-24T02:56:21.0461310Z adding 'torch/include/ATen/native/quantized/AffineQuantizerBase.h' 2025-01-24T02:56:21.0462510Z adding 'torch/include/ATen/native/quantized/ConvUtils.h' 2025-01-24T02:56:21.0463560Z adding 'torch/include/ATen/native/quantized/Copy.h' 2025-01-24T02:56:21.0464780Z adding 'torch/include/ATen/native/quantized/FakeQuantAffine.h' 2025-01-24T02:56:21.0465900Z adding 'torch/include/ATen/native/quantized/IndexKernel.h' 2025-01-24T02:56:21.0467290Z adding 'torch/include/ATen/native/quantized/PackedParams.h' 2025-01-24T02:56:21.0468170Z adding 'torch/include/ATen/native/quantized/library.h' 2025-01-24T02:56:21.0469740Z adding 'torch/include/ATen/native/quantized/cpu/BinaryOps.h' 2025-01-24T02:56:21.0470940Z adding 'torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h' 2025-01-24T02:56:21.0473750Z adding 'torch/include/ATen/native/quantized/cpu/OnednnUtils.h' 2025-01-24T02:56:21.0477380Z adding 'torch/include/ATen/native/quantized/cpu/QnnpackUtils.h' 2025-01-24T02:56:21.0479940Z adding 'torch/include/ATen/native/quantized/cpu/QuantUtils.h' 2025-01-24T02:56:21.0481860Z adding 'torch/include/ATen/native/quantized/cpu/QuantizedOps.h' 2025-01-24T02:56:21.0482980Z adding 'torch/include/ATen/native/quantized/cpu/RuyUtils.h' 2025-01-24T02:56:21.0485650Z adding 'torch/include/ATen/native/quantized/cpu/XnnpackUtils.h' 2025-01-24T02:56:21.0488520Z adding 'torch/include/ATen/native/quantized/cpu/conv_serialization.h' 2025-01-24T02:56:21.0490940Z adding 'torch/include/ATen/native/quantized/cpu/fbgemm_utils.h' 2025-01-24T02:56:21.0491860Z adding 'torch/include/ATen/native/quantized/cpu/init_qnnpack.h' 2025-01-24T02:56:21.0493220Z adding 'torch/include/ATen/native/quantized/cpu/qconv.h' 2025-01-24T02:56:21.0494370Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag.h' 2025-01-24T02:56:21.0495270Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h' 2025-01-24T02:56:21.0496520Z adding 'torch/include/ATen/native/quantized/cpu/qlinear.h' 2025-01-24T02:56:21.0498050Z adding 'torch/include/ATen/native/transformers/attention.h' 2025-01-24T02:56:21.0501490Z adding 'torch/include/ATen/native/transformers/sdp_utils_cpp.h' 2025-01-24T02:56:21.0502930Z adding 'torch/include/ATen/native/utils/Factory.h' 2025-01-24T02:56:21.0504120Z adding 'torch/include/ATen/native/utils/ParamUtils.h' 2025-01-24T02:56:21.0505540Z adding 'torch/include/ATen/native/utils/ParamsHash.h' 2025-01-24T02:56:21.0568490Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d.h' 2025-01-24T02:56:21.0569790Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h' 2025-01-24T02:56:21.0571180Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0572120Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.0573400Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.0574290Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h' 2025-01-24T02:56:21.0575560Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h' 2025-01-24T02:56:21.0576790Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h' 2025-01-24T02:56:21.0578080Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0578950Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h' 2025-01-24T02:56:21.0580160Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h' 2025-01-24T02:56:21.0581060Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h' 2025-01-24T02:56:21.0582400Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_native.h' 2025-01-24T02:56:21.0583710Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h' 2025-01-24T02:56:21.0584990Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d.h' 2025-01-24T02:56:21.0586280Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h' 2025-01-24T02:56:21.0587160Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0588180Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.0594590Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.0595390Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h' 2025-01-24T02:56:21.0595940Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h' 2025-01-24T02:56:21.0596550Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0597150Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h' 2025-01-24T02:56:21.0597670Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h' 2025-01-24T02:56:21.0598150Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_native.h' 2025-01-24T02:56:21.0598680Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h' 2025-01-24T02:56:21.0599090Z adding 'torch/include/ATen/ops/_add_batch_dim.h' 2025-01-24T02:56:21.0599600Z adding 'torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0600310Z adding 'torch/include/ATen/ops/_add_batch_dim_native.h' 2025-01-24T02:56:21.0601850Z adding 'torch/include/ATen/ops/_add_batch_dim_ops.h' 2025-01-24T02:56:21.0603150Z adding 'torch/include/ATen/ops/_add_relu.h' 2025-01-24T02:56:21.0604810Z adding 'torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0605390Z adding 'torch/include/ATen/ops/_add_relu_cpu_dispatch.h' 2025-01-24T02:56:21.0606820Z adding 'torch/include/ATen/ops/_add_relu_meta_dispatch.h' 2025-01-24T02:56:21.0607370Z adding 'torch/include/ATen/ops/_add_relu_native.h' 2025-01-24T02:56:21.0609150Z adding 'torch/include/ATen/ops/_add_relu_ops.h' 2025-01-24T02:56:21.0613300Z adding 'torch/include/ATen/ops/_addmm_activation.h' 2025-01-24T02:56:21.0614110Z adding 'torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.0614810Z adding 'torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h' 2025-01-24T02:56:21.0615300Z adding 'torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h' 2025-01-24T02:56:21.0616690Z adding 'torch/include/ATen/ops/_addmm_activation_meta.h' 2025-01-24T02:56:21.0617610Z adding 'torch/include/ATen/ops/_addmm_activation_meta_dispatch.h' 2025-01-24T02:56:21.0618680Z adding 'torch/include/ATen/ops/_addmm_activation_native.h' 2025-01-24T02:56:21.0620060Z adding 'torch/include/ATen/ops/_addmm_activation_ops.h' 2025-01-24T02:56:21.0621010Z adding 'torch/include/ATen/ops/_aminmax.h' 2025-01-24T02:56:21.0622580Z adding 'torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0623300Z adding 'torch/include/ATen/ops/_aminmax_cpu_dispatch.h' 2025-01-24T02:56:21.0624640Z adding 'torch/include/ATen/ops/_aminmax_cuda_dispatch.h' 2025-01-24T02:56:21.0625420Z adding 'torch/include/ATen/ops/_aminmax_native.h' 2025-01-24T02:56:21.0626950Z adding 'torch/include/ATen/ops/_aminmax_ops.h' 2025-01-24T02:56:21.0628300Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h' 2025-01-24T02:56:21.0629230Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0630210Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h' 2025-01-24T02:56:21.0631240Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h' 2025-01-24T02:56:21.0632290Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h' 2025-01-24T02:56:21.0633820Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h' 2025-01-24T02:56:21.0634650Z adding 'torch/include/ATen/ops/_amp_update_scale.h' 2025-01-24T02:56:21.0636220Z adding 'torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0636920Z adding 'torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h' 2025-01-24T02:56:21.0638290Z adding 'torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h' 2025-01-24T02:56:21.0638930Z adding 'torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h' 2025-01-24T02:56:21.0640300Z adding 'torch/include/ATen/ops/_amp_update_scale_native.h' 2025-01-24T02:56:21.0641660Z adding 'torch/include/ATen/ops/_amp_update_scale_ops.h' 2025-01-24T02:56:21.0642390Z adding 'torch/include/ATen/ops/_assert_async.h' 2025-01-24T02:56:21.0643820Z adding 'torch/include/ATen/ops/_assert_async_cpu_dispatch.h' 2025-01-24T02:56:21.0644720Z adding 'torch/include/ATen/ops/_assert_async_cuda_dispatch.h' 2025-01-24T02:56:21.0645910Z adding 'torch/include/ATen/ops/_assert_async_native.h' 2025-01-24T02:56:21.0647120Z adding 'torch/include/ATen/ops/_assert_async_ops.h' 2025-01-24T02:56:21.0648150Z adding 'torch/include/ATen/ops/_assert_scalar.h' 2025-01-24T02:56:21.0649400Z adding 'torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0650020Z adding 'torch/include/ATen/ops/_assert_scalar_native.h' 2025-01-24T02:56:21.0651380Z adding 'torch/include/ATen/ops/_assert_scalar_ops.h' 2025-01-24T02:56:21.0654100Z adding 'torch/include/ATen/ops/_assert_tensor_metadata.h' 2025-01-24T02:56:21.0655460Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0656260Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h' 2025-01-24T02:56:21.0657510Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_native.h' 2025-01-24T02:56:21.0658720Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_ops.h' 2025-01-24T02:56:21.0659590Z adding 'torch/include/ATen/ops/_autocast_to_full_precision.h' 2025-01-24T02:56:21.0660960Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0661650Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_native.h' 2025-01-24T02:56:21.0663040Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_ops.h' 2025-01-24T02:56:21.0664260Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision.h' 2025-01-24T02:56:21.0665270Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0666400Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_native.h' 2025-01-24T02:56:21.0667630Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h' 2025-01-24T02:56:21.0668110Z adding 'torch/include/ATen/ops/_backward.h' 2025-01-24T02:56:21.0669550Z adding 'torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0670620Z adding 'torch/include/ATen/ops/_backward_native.h' 2025-01-24T02:56:21.0671500Z adding 'torch/include/ATen/ops/_backward_ops.h' 2025-01-24T02:56:21.0672810Z adding 'torch/include/ATen/ops/_batch_norm_impl_index.h' 2025-01-24T02:56:21.0674090Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward.h' 2025-01-24T02:56:21.0675450Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0676000Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h' 2025-01-24T02:56:21.0677520Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h' 2025-01-24T02:56:21.0678840Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0679950Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_native.h' 2025-01-24T02:56:21.0681160Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_ops.h' 2025-01-24T02:56:21.0682360Z adding 'torch/include/ATen/ops/_batch_norm_no_update.h' 2025-01-24T02:56:21.0683800Z adding 'torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0684330Z adding 'torch/include/ATen/ops/_batch_norm_no_update_native.h' 2025-01-24T02:56:21.0685810Z adding 'torch/include/ATen/ops/_batch_norm_no_update_ops.h' 2025-01-24T02:56:21.0687020Z adding 'torch/include/ATen/ops/_batch_norm_with_update.h' 2025-01-24T02:56:21.0688350Z adding 'torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0688980Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h' 2025-01-24T02:56:21.0690300Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h' 2025-01-24T02:56:21.0691860Z adding 'torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h' 2025-01-24T02:56:21.0692120Z adding 'torch/include/ATen/ops/_batch_norm_with_update_native.h' 2025-01-24T02:56:21.0693710Z adding 'torch/include/ATen/ops/_batch_norm_with_update_ops.h' 2025-01-24T02:56:21.0694530Z adding 'torch/include/ATen/ops/_cast_Byte.h' 2025-01-24T02:56:21.0695860Z adding 'torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0696600Z adding 'torch/include/ATen/ops/_cast_Byte_native.h' 2025-01-24T02:56:21.0697860Z adding 'torch/include/ATen/ops/_cast_Byte_ops.h' 2025-01-24T02:56:21.0698720Z adding 'torch/include/ATen/ops/_cast_Char.h' 2025-01-24T02:56:21.0700010Z adding 'torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0700600Z adding 'torch/include/ATen/ops/_cast_Char_native.h' 2025-01-24T02:56:21.0701930Z adding 'torch/include/ATen/ops/_cast_Char_ops.h' 2025-01-24T02:56:21.0703430Z adding 'torch/include/ATen/ops/_cast_Double.h' 2025-01-24T02:56:21.0705050Z adding 'torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0706180Z adding 'torch/include/ATen/ops/_cast_Double_native.h' 2025-01-24T02:56:21.0707430Z adding 'torch/include/ATen/ops/_cast_Double_ops.h' 2025-01-24T02:56:21.0708280Z adding 'torch/include/ATen/ops/_cast_Float.h' 2025-01-24T02:56:21.0709660Z adding 'torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0710740Z adding 'torch/include/ATen/ops/_cast_Float_native.h' 2025-01-24T02:56:21.0711580Z adding 'torch/include/ATen/ops/_cast_Float_ops.h' 2025-01-24T02:56:21.0712760Z adding 'torch/include/ATen/ops/_cast_Half.h' 2025-01-24T02:56:21.0713970Z adding 'torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0714560Z adding 'torch/include/ATen/ops/_cast_Half_native.h' 2025-01-24T02:56:21.0715920Z adding 'torch/include/ATen/ops/_cast_Half_ops.h' 2025-01-24T02:56:21.0716920Z adding 'torch/include/ATen/ops/_cast_Int.h' 2025-01-24T02:56:21.0718310Z adding 'torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0718780Z adding 'torch/include/ATen/ops/_cast_Int_native.h' 2025-01-24T02:56:21.0720050Z adding 'torch/include/ATen/ops/_cast_Int_ops.h' 2025-01-24T02:56:21.0721060Z adding 'torch/include/ATen/ops/_cast_Long.h' 2025-01-24T02:56:21.0722070Z adding 'torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0723150Z adding 'torch/include/ATen/ops/_cast_Long_native.h' 2025-01-24T02:56:21.0724180Z adding 'torch/include/ATen/ops/_cast_Long_ops.h' 2025-01-24T02:56:21.0725030Z adding 'torch/include/ATen/ops/_cast_Short.h' 2025-01-24T02:56:21.0726300Z adding 'torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0732290Z adding 'torch/include/ATen/ops/_cast_Short_native.h' 2025-01-24T02:56:21.0732480Z adding 'torch/include/ATen/ops/_cast_Short_ops.h' 2025-01-24T02:56:21.0732630Z adding 'torch/include/ATen/ops/_cdist_backward.h' 2025-01-24T02:56:21.0732930Z adding 'torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0733130Z adding 'torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h' 2025-01-24T02:56:21.0733330Z adding 'torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h' 2025-01-24T02:56:21.0733500Z adding 'torch/include/ATen/ops/_cdist_backward_native.h' 2025-01-24T02:56:21.0734160Z adding 'torch/include/ATen/ops/_cdist_backward_ops.h' 2025-01-24T02:56:21.0735220Z adding 'torch/include/ATen/ops/_cdist_forward.h' 2025-01-24T02:56:21.0736760Z adding 'torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0737520Z adding 'torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h' 2025-01-24T02:56:21.0738710Z adding 'torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h' 2025-01-24T02:56:21.0739560Z adding 'torch/include/ATen/ops/_cdist_forward_mps_dispatch.h' 2025-01-24T02:56:21.0740780Z adding 'torch/include/ATen/ops/_cdist_forward_native.h' 2025-01-24T02:56:21.0741650Z adding 'torch/include/ATen/ops/_cdist_forward_ops.h' 2025-01-24T02:56:21.0742850Z adding 'torch/include/ATen/ops/_cholesky_solve_helper.h' 2025-01-24T02:56:21.0744180Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0744700Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h' 2025-01-24T02:56:21.0746030Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h' 2025-01-24T02:56:21.0746700Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_native.h' 2025-01-24T02:56:21.0748000Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_ops.h' 2025-01-24T02:56:21.0748870Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor.h' 2025-01-24T02:56:21.0750210Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0750850Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_native.h' 2025-01-24T02:56:21.0752160Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h' 2025-01-24T02:56:21.0753270Z adding 'torch/include/ATen/ops/_chunk_cat.h' 2025-01-24T02:56:21.0754270Z adding 'torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0755380Z adding 'torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h' 2025-01-24T02:56:21.0756210Z adding 'torch/include/ATen/ops/_chunk_cat_native.h' 2025-01-24T02:56:21.0757390Z adding 'torch/include/ATen/ops/_chunk_cat_ops.h' 2025-01-24T02:56:21.0758410Z adding 'torch/include/ATen/ops/_coalesce.h' 2025-01-24T02:56:21.0759390Z adding 'torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0760480Z adding 'torch/include/ATen/ops/_coalesce_native.h' 2025-01-24T02:56:21.0761540Z adding 'torch/include/ATen/ops/_coalesce_ops.h' 2025-01-24T02:56:21.0762250Z adding 'torch/include/ATen/ops/_coalesced.h' 2025-01-24T02:56:21.0763670Z adding 'torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0764490Z adding 'torch/include/ATen/ops/_coalesced_meta_dispatch.h' 2025-01-24T02:56:21.0765610Z adding 'torch/include/ATen/ops/_coalesced_native.h' 2025-01-24T02:56:21.0766670Z adding 'torch/include/ATen/ops/_coalesced_ops.h' 2025-01-24T02:56:21.0767920Z adding 'torch/include/ATen/ops/_compute_linear_combination.h' 2025-01-24T02:56:21.0768580Z adding 'torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h' 2025-01-24T02:56:21.0769890Z adding 'torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h' 2025-01-24T02:56:21.0770550Z adding 'torch/include/ATen/ops/_compute_linear_combination_native.h' 2025-01-24T02:56:21.0771860Z adding 'torch/include/ATen/ops/_compute_linear_combination_ops.h' 2025-01-24T02:56:21.0772670Z adding 'torch/include/ATen/ops/_conj.h' 2025-01-24T02:56:21.0773810Z adding 'torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0774920Z adding 'torch/include/ATen/ops/_conj_copy.h' 2025-01-24T02:56:21.0776080Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0776760Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.0777810Z adding 'torch/include/ATen/ops/_conj_copy_native.h' 2025-01-24T02:56:21.0778860Z adding 'torch/include/ATen/ops/_conj_copy_ops.h' 2025-01-24T02:56:21.0779870Z adding 'torch/include/ATen/ops/_conj_native.h' 2025-01-24T02:56:21.0780720Z adding 'torch/include/ATen/ops/_conj_ops.h' 2025-01-24T02:56:21.0781930Z adding 'torch/include/ATen/ops/_conj_physical.h' 2025-01-24T02:56:21.0782940Z adding 'torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0784050Z adding 'torch/include/ATen/ops/_conj_physical_native.h' 2025-01-24T02:56:21.0784900Z adding 'torch/include/ATen/ops/_conj_physical_ops.h' 2025-01-24T02:56:21.0786330Z adding 'torch/include/ATen/ops/_conv_depthwise2d.h' 2025-01-24T02:56:21.0787590Z adding 'torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h' 2025-01-24T02:56:21.0788450Z adding 'torch/include/ATen/ops/_conv_depthwise2d_native.h' 2025-01-24T02:56:21.0789660Z adding 'torch/include/ATen/ops/_conv_depthwise2d_ops.h' 2025-01-24T02:56:21.0790920Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h' 2025-01-24T02:56:21.0791740Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.0792880Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h' 2025-01-24T02:56:21.0793800Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h' 2025-01-24T02:56:21.0794930Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h' 2025-01-24T02:56:21.0795570Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h' 2025-01-24T02:56:21.0796900Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h' 2025-01-24T02:56:21.0798120Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h' 2025-01-24T02:56:21.0798760Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h' 2025-01-24T02:56:21.0800290Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.0800900Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h' 2025-01-24T02:56:21.0802180Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h' 2025-01-24T02:56:21.0803440Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h' 2025-01-24T02:56:21.0804670Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h' 2025-01-24T02:56:21.0805350Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h' 2025-01-24T02:56:21.0806780Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h' 2025-01-24T02:56:21.0807930Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack.h' 2025-01-24T02:56:21.0808660Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h' 2025-01-24T02:56:21.0809960Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h' 2025-01-24T02:56:21.0810690Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h' 2025-01-24T02:56:21.0812030Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h' 2025-01-24T02:56:21.0812970Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h' 2025-01-24T02:56:21.0814180Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h' 2025-01-24T02:56:21.0814790Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_native.h' 2025-01-24T02:56:21.0816160Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h' 2025-01-24T02:56:21.0817710Z adding 'torch/include/ATen/ops/_convolution.h' 2025-01-24T02:56:21.0819080Z adding 'torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0820310Z adding 'torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0821450Z adding 'torch/include/ATen/ops/_convolution_double_backward.h' 2025-01-24T02:56:21.0822470Z adding 'torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0823590Z adding 'torch/include/ATen/ops/_convolution_double_backward_native.h' 2025-01-24T02:56:21.0824460Z adding 'torch/include/ATen/ops/_convolution_double_backward_ops.h' 2025-01-24T02:56:21.0825720Z adding 'torch/include/ATen/ops/_convolution_mode.h' 2025-01-24T02:56:21.0826920Z adding 'torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0827550Z adding 'torch/include/ATen/ops/_convolution_mode_native.h' 2025-01-24T02:56:21.0828900Z adding 'torch/include/ATen/ops/_convolution_mode_ops.h' 2025-01-24T02:56:21.0830200Z adding 'torch/include/ATen/ops/_convolution_native.h' 2025-01-24T02:56:21.0831300Z adding 'torch/include/ATen/ops/_convolution_ops.h' 2025-01-24T02:56:21.0832370Z adding 'torch/include/ATen/ops/_copy_from.h' 2025-01-24T02:56:21.0833280Z adding 'torch/include/ATen/ops/_copy_from_and_resize.h' 2025-01-24T02:56:21.0834650Z adding 'torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0835320Z adding 'torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h' 2025-01-24T02:56:21.0836560Z adding 'torch/include/ATen/ops/_copy_from_and_resize_native.h' 2025-01-24T02:56:21.0837780Z adding 'torch/include/ATen/ops/_copy_from_and_resize_ops.h' 2025-01-24T02:56:21.0838770Z adding 'torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0839880Z adding 'torch/include/ATen/ops/_copy_from_mps_dispatch.h' 2025-01-24T02:56:21.0840410Z adding 'torch/include/ATen/ops/_copy_from_native.h' 2025-01-24T02:56:21.0841790Z adding 'torch/include/ATen/ops/_copy_from_ops.h' 2025-01-24T02:56:21.0842830Z adding 'torch/include/ATen/ops/_cslt_compress.h' 2025-01-24T02:56:21.0843760Z adding 'torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h' 2025-01-24T02:56:21.0844950Z adding 'torch/include/ATen/ops/_cslt_compress_native.h' 2025-01-24T02:56:21.0845810Z adding 'torch/include/ATen/ops/_cslt_compress_ops.h' 2025-01-24T02:56:21.0847010Z adding 'torch/include/ATen/ops/_cslt_sparse_mm.h' 2025-01-24T02:56:21.0848100Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h' 2025-01-24T02:56:21.0848940Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_native.h' 2025-01-24T02:56:21.0850180Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_ops.h' 2025-01-24T02:56:21.0851060Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search.h' 2025-01-24T02:56:21.0852370Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h' 2025-01-24T02:56:21.0853020Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_native.h' 2025-01-24T02:56:21.0854380Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h' 2025-01-24T02:56:21.0855550Z adding 'torch/include/ATen/ops/_ctc_loss.h' 2025-01-24T02:56:21.0856790Z adding 'torch/include/ATen/ops/_ctc_loss_backward.h' 2025-01-24T02:56:21.0858200Z adding 'torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0858710Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h' 2025-01-24T02:56:21.0860040Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h' 2025-01-24T02:56:21.0860880Z adding 'torch/include/ATen/ops/_ctc_loss_backward_native.h' 2025-01-24T02:56:21.0862290Z adding 'torch/include/ATen/ops/_ctc_loss_backward_ops.h' 2025-01-24T02:56:21.0863620Z adding 'torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0864150Z adding 'torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h' 2025-01-24T02:56:21.0865470Z adding 'torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h' 2025-01-24T02:56:21.0866350Z adding 'torch/include/ATen/ops/_ctc_loss_meta_dispatch.h' 2025-01-24T02:56:21.0867550Z adding 'torch/include/ATen/ops/_ctc_loss_native.h' 2025-01-24T02:56:21.0868820Z adding 'torch/include/ATen/ops/_ctc_loss_ops.h' 2025-01-24T02:56:21.0870050Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss.h' 2025-01-24T02:56:21.0871040Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0872160Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h' 2025-01-24T02:56:21.0873020Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_native.h' 2025-01-24T02:56:21.0874400Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_ops.h' 2025-01-24T02:56:21.0875660Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state.h' 2025-01-24T02:56:21.0876510Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0877800Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h' 2025-01-24T02:56:21.0878450Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_native.h' 2025-01-24T02:56:21.0879850Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h' 2025-01-24T02:56:21.0881460Z adding 'torch/include/ATen/ops/_cudnn_rnn.h' 2025-01-24T02:56:21.0883320Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward.h' 2025-01-24T02:56:21.0884720Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0885840Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h' 2025-01-24T02:56:21.0887030Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_native.h' 2025-01-24T02:56:21.0888270Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_ops.h' 2025-01-24T02:56:21.0889610Z adding 'torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0890690Z adding 'torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h' 2025-01-24T02:56:21.0891990Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h' 2025-01-24T02:56:21.0893380Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0893910Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h' 2025-01-24T02:56:21.0895200Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h' 2025-01-24T02:56:21.0896380Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h' 2025-01-24T02:56:21.0897210Z adding 'torch/include/ATen/ops/_cudnn_rnn_native.h' 2025-01-24T02:56:21.0898680Z adding 'torch/include/ATen/ops/_cudnn_rnn_ops.h' 2025-01-24T02:56:21.0899750Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache.h' 2025-01-24T02:56:21.0900770Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0901880Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_native.h' 2025-01-24T02:56:21.0902740Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h' 2025-01-24T02:56:21.0908430Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h' 2025-01-24T02:56:21.0908930Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0909170Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h' 2025-01-24T02:56:21.0909430Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h' 2025-01-24T02:56:21.0909650Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size.h' 2025-01-24T02:56:21.0909980Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0910190Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h' 2025-01-24T02:56:21.0911550Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h' 2025-01-24T02:56:21.0912290Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h' 2025-01-24T02:56:21.0913720Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0914300Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h' 2025-01-24T02:56:21.0915600Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h' 2025-01-24T02:56:21.0916400Z adding 'torch/include/ATen/ops/_cummax_helper.h' 2025-01-24T02:56:21.0917590Z adding 'torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h' 2025-01-24T02:56:21.0918480Z adding 'torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h' 2025-01-24T02:56:21.0919660Z adding 'torch/include/ATen/ops/_cummax_helper_native.h' 2025-01-24T02:56:21.0920520Z adding 'torch/include/ATen/ops/_cummax_helper_ops.h' 2025-01-24T02:56:21.0921720Z adding 'torch/include/ATen/ops/_cummin_helper.h' 2025-01-24T02:56:21.0922800Z adding 'torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h' 2025-01-24T02:56:21.0923320Z adding 'torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h' 2025-01-24T02:56:21.0924530Z adding 'torch/include/ATen/ops/_cummin_helper_native.h' 2025-01-24T02:56:21.0925730Z adding 'torch/include/ATen/ops/_cummin_helper_ops.h' 2025-01-24T02:56:21.0926340Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap.h' 2025-01-24T02:56:21.0927800Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0928410Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_native.h' 2025-01-24T02:56:21.0929710Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_ops.h' 2025-01-24T02:56:21.0930520Z adding 'torch/include/ATen/ops/_dimI.h' 2025-01-24T02:56:21.0931810Z adding 'torch/include/ATen/ops/_dimI_native.h' 2025-01-24T02:56:21.0932360Z adding 'torch/include/ATen/ops/_dimI_ops.h' 2025-01-24T02:56:21.0933560Z adding 'torch/include/ATen/ops/_dimV.h' 2025-01-24T02:56:21.0934410Z adding 'torch/include/ATen/ops/_dimV_native.h' 2025-01-24T02:56:21.0935630Z adding 'torch/include/ATen/ops/_dimV_ops.h' 2025-01-24T02:56:21.0936480Z adding 'torch/include/ATen/ops/_dim_arange.h' 2025-01-24T02:56:21.0937820Z adding 'torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.0938320Z adding 'torch/include/ATen/ops/_dim_arange_native.h' 2025-01-24T02:56:21.0939650Z adding 'torch/include/ATen/ops/_dim_arange_ops.h' 2025-01-24T02:56:21.0940700Z adding 'torch/include/ATen/ops/_dirichlet_grad.h' 2025-01-24T02:56:21.0941860Z adding 'torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0942490Z adding 'torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h' 2025-01-24T02:56:21.0943740Z adding 'torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h' 2025-01-24T02:56:21.0944620Z adding 'torch/include/ATen/ops/_dirichlet_grad_native.h' 2025-01-24T02:56:21.0945790Z adding 'torch/include/ATen/ops/_dirichlet_grad_ops.h' 2025-01-24T02:56:21.0946750Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit.h' 2025-01-24T02:56:21.0947890Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h' 2025-01-24T02:56:21.0948610Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h' 2025-01-24T02:56:21.0950000Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h' 2025-01-24T02:56:21.0950870Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h' 2025-01-24T02:56:21.0952140Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h' 2025-01-24T02:56:21.0952840Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h' 2025-01-24T02:56:21.0954220Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h' 2025-01-24T02:56:21.0955490Z adding 'torch/include/ATen/ops/_efficient_attention_backward.h' 2025-01-24T02:56:21.0956760Z adding 'torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h' 2025-01-24T02:56:21.0957610Z adding 'torch/include/ATen/ops/_efficient_attention_backward_native.h' 2025-01-24T02:56:21.0958990Z adding 'torch/include/ATen/ops/_efficient_attention_backward_ops.h' 2025-01-24T02:56:21.0960280Z adding 'torch/include/ATen/ops/_efficient_attention_forward.h' 2025-01-24T02:56:21.0961550Z adding 'torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h' 2025-01-24T02:56:21.0962380Z adding 'torch/include/ATen/ops/_efficient_attention_forward_native.h' 2025-01-24T02:56:21.0963680Z adding 'torch/include/ATen/ops/_efficient_attention_forward_ops.h' 2025-01-24T02:56:21.0964980Z adding 'torch/include/ATen/ops/_efficientzerotensor.h' 2025-01-24T02:56:21.0966010Z adding 'torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0967150Z adding 'torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h' 2025-01-24T02:56:21.0968020Z adding 'torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h' 2025-01-24T02:56:21.0969230Z adding 'torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h' 2025-01-24T02:56:21.0970090Z adding 'torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h' 2025-01-24T02:56:21.0971280Z adding 'torch/include/ATen/ops/_efficientzerotensor_native.h' 2025-01-24T02:56:21.0972500Z adding 'torch/include/ATen/ops/_efficientzerotensor_ops.h' 2025-01-24T02:56:21.0973670Z adding 'torch/include/ATen/ops/_embedding_bag.h' 2025-01-24T02:56:21.0974910Z adding 'torch/include/ATen/ops/_embedding_bag_backward.h' 2025-01-24T02:56:21.0975830Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h' 2025-01-24T02:56:21.0977050Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h' 2025-01-24T02:56:21.0977620Z adding 'torch/include/ATen/ops/_embedding_bag_backward_native.h' 2025-01-24T02:56:21.0978990Z adding 'torch/include/ATen/ops/_embedding_bag_backward_ops.h' 2025-01-24T02:56:21.0980300Z adding 'torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0980850Z adding 'torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h' 2025-01-24T02:56:21.0982190Z adding 'torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h' 2025-01-24T02:56:21.0983600Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward.h' 2025-01-24T02:56:21.0984960Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0986140Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h' 2025-01-24T02:56:21.0986740Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h' 2025-01-24T02:56:21.0988050Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_native.h' 2025-01-24T02:56:21.0989250Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h' 2025-01-24T02:56:21.0990490Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only.h' 2025-01-24T02:56:21.0991840Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.0992810Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h' 2025-01-24T02:56:21.0993740Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h' 2025-01-24T02:56:21.0994930Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_native.h' 2025-01-24T02:56:21.0996190Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_ops.h' 2025-01-24T02:56:21.0997370Z adding 'torch/include/ATen/ops/_embedding_bag_native.h' 2025-01-24T02:56:21.0998670Z adding 'torch/include/ATen/ops/_embedding_bag_ops.h' 2025-01-24T02:56:21.0999650Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h' 2025-01-24T02:56:21.1001090Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1001740Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h' 2025-01-24T02:56:21.1003030Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h' 2025-01-24T02:56:21.1003880Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h' 2025-01-24T02:56:21.1005220Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h' 2025-01-24T02:56:21.1006500Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward.h' 2025-01-24T02:56:21.1007820Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.1008330Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h' 2025-01-24T02:56:21.1009750Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h' 2025-01-24T02:56:21.1011210Z adding 'torch/include/ATen/ops/_empty_affine_quantized.h' 2025-01-24T02:56:21.1012590Z adding 'torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1013200Z adding 'torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h' 2025-01-24T02:56:21.1014510Z adding 'torch/include/ATen/ops/_empty_affine_quantized_native.h' 2025-01-24T02:56:21.1015710Z adding 'torch/include/ATen/ops/_empty_affine_quantized_ops.h' 2025-01-24T02:56:21.1017290Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized.h' 2025-01-24T02:56:21.1018680Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1019400Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h' 2025-01-24T02:56:21.1020760Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h' 2025-01-24T02:56:21.1022010Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h' 2025-01-24T02:56:21.1023120Z adding 'torch/include/ATen/ops/_euclidean_dist.h' 2025-01-24T02:56:21.1024310Z adding 'torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1025060Z adding 'torch/include/ATen/ops/_euclidean_dist_native.h' 2025-01-24T02:56:21.1026340Z adding 'torch/include/ATen/ops/_euclidean_dist_ops.h' 2025-01-24T02:56:21.1027700Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h' 2025-01-24T02:56:21.1028900Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h' 2025-01-24T02:56:21.1030160Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h' 2025-01-24T02:56:21.1030790Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h' 2025-01-24T02:56:21.1032130Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h' 2025-01-24T02:56:21.1033330Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h' 2025-01-24T02:56:21.1034120Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1035370Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h' 2025-01-24T02:56:21.1036240Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h' 2025-01-24T02:56:21.1037440Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h' 2025-01-24T02:56:21.1038640Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h' 2025-01-24T02:56:21.1039870Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h' 2025-01-24T02:56:21.1041090Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h' 2025-01-24T02:56:21.1042410Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h' 2025-01-24T02:56:21.1043070Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h' 2025-01-24T02:56:21.1044380Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h' 2025-01-24T02:56:21.1045580Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h' 2025-01-24T02:56:21.1046890Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1047500Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h' 2025-01-24T02:56:21.1048800Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h' 2025-01-24T02:56:21.1049530Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h' 2025-01-24T02:56:21.1050970Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h' 2025-01-24T02:56:21.1052250Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h' 2025-01-24T02:56:21.1053140Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1054380Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h' 2025-01-24T02:56:21.1055090Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h' 2025-01-24T02:56:21.1056390Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h' 2025-01-24T02:56:21.1057600Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h' 2025-01-24T02:56:21.1058680Z adding 'torch/include/ATen/ops/_fft_c2c.h' 2025-01-24T02:56:21.1059910Z adding 'torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h' 2025-01-24T02:56:21.1060780Z adding 'torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h' 2025-01-24T02:56:21.1062000Z adding 'torch/include/ATen/ops/_fft_c2c_mps_dispatch.h' 2025-01-24T02:56:21.1062850Z adding 'torch/include/ATen/ops/_fft_c2c_native.h' 2025-01-24T02:56:21.1064130Z adding 'torch/include/ATen/ops/_fft_c2c_ops.h' 2025-01-24T02:56:21.1065370Z adding 'torch/include/ATen/ops/_fft_c2r.h' 2025-01-24T02:56:21.1066600Z adding 'torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h' 2025-01-24T02:56:21.1067450Z adding 'torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h' 2025-01-24T02:56:21.1068640Z adding 'torch/include/ATen/ops/_fft_c2r_mps_dispatch.h' 2025-01-24T02:56:21.1069820Z adding 'torch/include/ATen/ops/_fft_c2r_native.h' 2025-01-24T02:56:21.1071030Z adding 'torch/include/ATen/ops/_fft_c2r_ops.h' 2025-01-24T02:56:21.1072110Z adding 'torch/include/ATen/ops/_fft_r2c.h' 2025-01-24T02:56:21.1073350Z adding 'torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h' 2025-01-24T02:56:21.1073930Z adding 'torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h' 2025-01-24T02:56:21.1075190Z adding 'torch/include/ATen/ops/_fft_r2c_mps_dispatch.h' 2025-01-24T02:56:21.1076400Z adding 'torch/include/ATen/ops/_fft_r2c_native.h' 2025-01-24T02:56:21.1077270Z adding 'torch/include/ATen/ops/_fft_r2c_ops.h' 2025-01-24T02:56:21.1078510Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h' 2025-01-24T02:56:21.1079790Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h' 2025-01-24T02:56:21.1080370Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h' 2025-01-24T02:56:21.1081700Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h' 2025-01-24T02:56:21.1086350Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h' 2025-01-24T02:56:21.1086710Z adding 'torch/include/ATen/ops/_flash_attention_backward.h' 2025-01-24T02:56:21.1086960Z adding 'torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h' 2025-01-24T02:56:21.1087160Z adding 'torch/include/ATen/ops/_flash_attention_backward_native.h' 2025-01-24T02:56:21.1087580Z adding 'torch/include/ATen/ops/_flash_attention_backward_ops.h' 2025-01-24T02:56:21.1089140Z adding 'torch/include/ATen/ops/_flash_attention_forward.h' 2025-01-24T02:56:21.1090420Z adding 'torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h' 2025-01-24T02:56:21.1091280Z adding 'torch/include/ATen/ops/_flash_attention_forward_native.h' 2025-01-24T02:56:21.1092640Z adding 'torch/include/ATen/ops/_flash_attention_forward_ops.h' 2025-01-24T02:56:21.1093790Z adding 'torch/include/ATen/ops/_foobar.h' 2025-01-24T02:56:21.1094830Z adding 'torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1095970Z adding 'torch/include/ATen/ops/_foobar_cpu_dispatch.h' 2025-01-24T02:56:21.1096830Z adding 'torch/include/ATen/ops/_foobar_native.h' 2025-01-24T02:56:21.1098100Z adding 'torch/include/ATen/ops/_foobar_ops.h' 2025-01-24T02:56:21.1099320Z adding 'torch/include/ATen/ops/_foreach_abs.h' 2025-01-24T02:56:21.1100330Z adding 'torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1101460Z adding 'torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h' 2025-01-24T02:56:21.1102010Z adding 'torch/include/ATen/ops/_foreach_abs_native.h' 2025-01-24T02:56:21.1103390Z adding 'torch/include/ATen/ops/_foreach_abs_ops.h' 2025-01-24T02:56:21.1104440Z adding 'torch/include/ATen/ops/_foreach_acos.h' 2025-01-24T02:56:21.1105450Z adding 'torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1106690Z adding 'torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h' 2025-01-24T02:56:21.1107920Z adding 'torch/include/ATen/ops/_foreach_acos_native.h' 2025-01-24T02:56:21.1109460Z adding 'torch/include/ATen/ops/_foreach_acos_ops.h' 2025-01-24T02:56:21.1110890Z adding 'torch/include/ATen/ops/_foreach_add.h' 2025-01-24T02:56:21.1112430Z adding 'torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1113540Z adding 'torch/include/ATen/ops/_foreach_add_cuda_dispatch.h' 2025-01-24T02:56:21.1114780Z adding 'torch/include/ATen/ops/_foreach_add_native.h' 2025-01-24T02:56:21.1116450Z adding 'torch/include/ATen/ops/_foreach_add_ops.h' 2025-01-24T02:56:21.1117850Z adding 'torch/include/ATen/ops/_foreach_addcdiv.h' 2025-01-24T02:56:21.1119240Z adding 'torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1120370Z adding 'torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h' 2025-01-24T02:56:21.1121570Z adding 'torch/include/ATen/ops/_foreach_addcdiv_native.h' 2025-01-24T02:56:21.1123040Z adding 'torch/include/ATen/ops/_foreach_addcdiv_ops.h' 2025-01-24T02:56:21.1124380Z adding 'torch/include/ATen/ops/_foreach_addcmul.h' 2025-01-24T02:56:21.1125720Z adding 'torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1126850Z adding 'torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h' 2025-01-24T02:56:21.1128040Z adding 'torch/include/ATen/ops/_foreach_addcmul_native.h' 2025-01-24T02:56:21.1129550Z adding 'torch/include/ATen/ops/_foreach_addcmul_ops.h' 2025-01-24T02:56:21.1130750Z adding 'torch/include/ATen/ops/_foreach_asin.h' 2025-01-24T02:56:21.1131930Z adding 'torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1132560Z adding 'torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h' 2025-01-24T02:56:21.1133870Z adding 'torch/include/ATen/ops/_foreach_asin_native.h' 2025-01-24T02:56:21.1135080Z adding 'torch/include/ATen/ops/_foreach_asin_ops.h' 2025-01-24T02:56:21.1136100Z adding 'torch/include/ATen/ops/_foreach_atan.h' 2025-01-24T02:56:21.1137480Z adding 'torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1138070Z adding 'torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h' 2025-01-24T02:56:21.1139330Z adding 'torch/include/ATen/ops/_foreach_atan_native.h' 2025-01-24T02:56:21.1140560Z adding 'torch/include/ATen/ops/_foreach_atan_ops.h' 2025-01-24T02:56:21.1141610Z adding 'torch/include/ATen/ops/_foreach_ceil.h' 2025-01-24T02:56:21.1142470Z adding 'torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1143550Z adding 'torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h' 2025-01-24T02:56:21.1144390Z adding 'torch/include/ATen/ops/_foreach_ceil_native.h' 2025-01-24T02:56:21.1145620Z adding 'torch/include/ATen/ops/_foreach_ceil_ops.h' 2025-01-24T02:56:21.1146880Z adding 'torch/include/ATen/ops/_foreach_clamp_max.h' 2025-01-24T02:56:21.1148140Z adding 'torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1149270Z adding 'torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h' 2025-01-24T02:56:21.1150130Z adding 'torch/include/ATen/ops/_foreach_clamp_max_native.h' 2025-01-24T02:56:21.1151550Z adding 'torch/include/ATen/ops/_foreach_clamp_max_ops.h' 2025-01-24T02:56:21.1152790Z adding 'torch/include/ATen/ops/_foreach_clamp_min.h' 2025-01-24T02:56:21.1154060Z adding 'torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1154850Z adding 'torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h' 2025-01-24T02:56:21.1156170Z adding 'torch/include/ATen/ops/_foreach_clamp_min_native.h' 2025-01-24T02:56:21.1157550Z adding 'torch/include/ATen/ops/_foreach_clamp_min_ops.h' 2025-01-24T02:56:21.1158770Z adding 'torch/include/ATen/ops/_foreach_copy.h' 2025-01-24T02:56:21.1159560Z adding 'torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1161160Z adding 'torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h' 2025-01-24T02:56:21.1162030Z adding 'torch/include/ATen/ops/_foreach_copy_native.h' 2025-01-24T02:56:21.1163300Z adding 'torch/include/ATen/ops/_foreach_copy_ops.h' 2025-01-24T02:56:21.1164350Z adding 'torch/include/ATen/ops/_foreach_cos.h' 2025-01-24T02:56:21.1165390Z adding 'torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1166520Z adding 'torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h' 2025-01-24T02:56:21.1167150Z adding 'torch/include/ATen/ops/_foreach_cos_native.h' 2025-01-24T02:56:21.1168530Z adding 'torch/include/ATen/ops/_foreach_cos_ops.h' 2025-01-24T02:56:21.1169560Z adding 'torch/include/ATen/ops/_foreach_cosh.h' 2025-01-24T02:56:21.1170570Z adding 'torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1171710Z adding 'torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h' 2025-01-24T02:56:21.1172550Z adding 'torch/include/ATen/ops/_foreach_cosh_native.h' 2025-01-24T02:56:21.1173900Z adding 'torch/include/ATen/ops/_foreach_cosh_ops.h' 2025-01-24T02:56:21.1175150Z adding 'torch/include/ATen/ops/_foreach_div.h' 2025-01-24T02:56:21.1176520Z adding 'torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1177170Z adding 'torch/include/ATen/ops/_foreach_div_cuda_dispatch.h' 2025-01-24T02:56:21.1178660Z adding 'torch/include/ATen/ops/_foreach_div_native.h' 2025-01-24T02:56:21.1180180Z adding 'torch/include/ATen/ops/_foreach_div_ops.h' 2025-01-24T02:56:21.1181280Z adding 'torch/include/ATen/ops/_foreach_erf.h' 2025-01-24T02:56:21.1182640Z adding 'torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1183200Z adding 'torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h' 2025-01-24T02:56:21.1184510Z adding 'torch/include/ATen/ops/_foreach_erf_native.h' 2025-01-24T02:56:21.1185790Z adding 'torch/include/ATen/ops/_foreach_erf_ops.h' 2025-01-24T02:56:21.1186850Z adding 'torch/include/ATen/ops/_foreach_erfc.h' 2025-01-24T02:56:21.1187600Z adding 'torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1188790Z adding 'torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h' 2025-01-24T02:56:21.1189680Z adding 'torch/include/ATen/ops/_foreach_erfc_native.h' 2025-01-24T02:56:21.1190870Z adding 'torch/include/ATen/ops/_foreach_erfc_ops.h' 2025-01-24T02:56:21.1192090Z adding 'torch/include/ATen/ops/_foreach_exp.h' 2025-01-24T02:56:21.1192830Z adding 'torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1194040Z adding 'torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h' 2025-01-24T02:56:21.1194840Z adding 'torch/include/ATen/ops/_foreach_exp_native.h' 2025-01-24T02:56:21.1196060Z adding 'torch/include/ATen/ops/_foreach_exp_ops.h' 2025-01-24T02:56:21.1197120Z adding 'torch/include/ATen/ops/_foreach_expm1.h' 2025-01-24T02:56:21.1198310Z adding 'torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1198880Z adding 'torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h' 2025-01-24T02:56:21.1200150Z adding 'torch/include/ATen/ops/_foreach_expm1_native.h' 2025-01-24T02:56:21.1201030Z adding 'torch/include/ATen/ops/_foreach_expm1_ops.h' 2025-01-24T02:56:21.1202230Z adding 'torch/include/ATen/ops/_foreach_floor.h' 2025-01-24T02:56:21.1203230Z adding 'torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1204440Z adding 'torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h' 2025-01-24T02:56:21.1205030Z adding 'torch/include/ATen/ops/_foreach_floor_native.h' 2025-01-24T02:56:21.1206370Z adding 'torch/include/ATen/ops/_foreach_floor_ops.h' 2025-01-24T02:56:21.1207550Z adding 'torch/include/ATen/ops/_foreach_frac.h' 2025-01-24T02:56:21.1208200Z adding 'torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1209380Z adding 'torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h' 2025-01-24T02:56:21.1210560Z adding 'torch/include/ATen/ops/_foreach_frac_native.h' 2025-01-24T02:56:21.1211600Z adding 'torch/include/ATen/ops/_foreach_frac_ops.h' 2025-01-24T02:56:21.1212820Z adding 'torch/include/ATen/ops/_foreach_lerp.h' 2025-01-24T02:56:21.1213830Z adding 'torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1214950Z adding 'torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h' 2025-01-24T02:56:21.1216130Z adding 'torch/include/ATen/ops/_foreach_lerp_native.h' 2025-01-24T02:56:21.1217380Z adding 'torch/include/ATen/ops/_foreach_lerp_ops.h' 2025-01-24T02:56:21.1218430Z adding 'torch/include/ATen/ops/_foreach_lgamma.h' 2025-01-24T02:56:21.1219600Z adding 'torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1220220Z adding 'torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h' 2025-01-24T02:56:21.1221460Z adding 'torch/include/ATen/ops/_foreach_lgamma_native.h' 2025-01-24T02:56:21.1222670Z adding 'torch/include/ATen/ops/_foreach_lgamma_ops.h' 2025-01-24T02:56:21.1223550Z adding 'torch/include/ATen/ops/_foreach_log.h' 2025-01-24T02:56:21.1224750Z adding 'torch/include/ATen/ops/_foreach_log10.h' 2025-01-24T02:56:21.1225910Z adding 'torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1226340Z adding 'torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h' 2025-01-24T02:56:21.1227590Z adding 'torch/include/ATen/ops/_foreach_log10_native.h' 2025-01-24T02:56:21.1228800Z adding 'torch/include/ATen/ops/_foreach_log10_ops.h' 2025-01-24T02:56:21.1229830Z adding 'torch/include/ATen/ops/_foreach_log1p.h' 2025-01-24T02:56:21.1230510Z adding 'torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1231700Z adding 'torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h' 2025-01-24T02:56:21.1232550Z adding 'torch/include/ATen/ops/_foreach_log1p_native.h' 2025-01-24T02:56:21.1233750Z adding 'torch/include/ATen/ops/_foreach_log1p_ops.h' 2025-01-24T02:56:21.1234820Z adding 'torch/include/ATen/ops/_foreach_log2.h' 2025-01-24T02:56:21.1235980Z adding 'torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1236520Z adding 'torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h' 2025-01-24T02:56:21.1237830Z adding 'torch/include/ATen/ops/_foreach_log2_native.h' 2025-01-24T02:56:21.1239030Z adding 'torch/include/ATen/ops/_foreach_log2_ops.h' 2025-01-24T02:56:21.1239760Z adding 'torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1240970Z adding 'torch/include/ATen/ops/_foreach_log_cuda_dispatch.h' 2025-01-24T02:56:21.1241780Z adding 'torch/include/ATen/ops/_foreach_log_native.h' 2025-01-24T02:56:21.1242990Z adding 'torch/include/ATen/ops/_foreach_log_ops.h' 2025-01-24T02:56:21.1244000Z adding 'torch/include/ATen/ops/_foreach_max.h' 2025-01-24T02:56:21.1245020Z adding 'torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1246140Z adding 'torch/include/ATen/ops/_foreach_max_cuda_dispatch.h' 2025-01-24T02:56:21.1246730Z adding 'torch/include/ATen/ops/_foreach_max_native.h' 2025-01-24T02:56:21.1248060Z adding 'torch/include/ATen/ops/_foreach_max_ops.h' 2025-01-24T02:56:21.1249240Z adding 'torch/include/ATen/ops/_foreach_maximum.h' 2025-01-24T02:56:21.1250470Z adding 'torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1251260Z adding 'torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h' 2025-01-24T02:56:21.1252500Z adding 'torch/include/ATen/ops/_foreach_maximum_native.h' 2025-01-24T02:56:21.1253860Z adding 'torch/include/ATen/ops/_foreach_maximum_ops.h' 2025-01-24T02:56:21.1255080Z adding 'torch/include/ATen/ops/_foreach_minimum.h' 2025-01-24T02:56:21.1256320Z adding 'torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1257120Z adding 'torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h' 2025-01-24T02:56:21.1258330Z adding 'torch/include/ATen/ops/_foreach_minimum_native.h' 2025-01-24T02:56:21.1259690Z adding 'torch/include/ATen/ops/_foreach_minimum_ops.h' 2025-01-24T02:56:21.1260950Z adding 'torch/include/ATen/ops/_foreach_mul.h' 2025-01-24T02:56:21.1262290Z adding 'torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1262900Z adding 'torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h' 2025-01-24T02:56:21.1264280Z adding 'torch/include/ATen/ops/_foreach_mul_native.h' 2025-01-24T02:56:21.1265760Z adding 'torch/include/ATen/ops/_foreach_mul_ops.h' 2025-01-24T02:56:21.1266790Z adding 'torch/include/ATen/ops/_foreach_neg.h' 2025-01-24T02:56:21.1271210Z adding 'torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1271510Z adding 'torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h' 2025-01-24T02:56:21.1271680Z adding 'torch/include/ATen/ops/_foreach_neg_native.h' 2025-01-24T02:56:21.1271830Z adding 'torch/include/ATen/ops/_foreach_neg_ops.h' 2025-01-24T02:56:21.1271960Z adding 'torch/include/ATen/ops/_foreach_norm.h' 2025-01-24T02:56:21.1272790Z adding 'torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1273700Z adding 'torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h' 2025-01-24T02:56:21.1274670Z adding 'torch/include/ATen/ops/_foreach_norm_native.h' 2025-01-24T02:56:21.1275960Z adding 'torch/include/ATen/ops/_foreach_norm_ops.h' 2025-01-24T02:56:21.1277250Z adding 'torch/include/ATen/ops/_foreach_pow.h' 2025-01-24T02:56:21.1278620Z adding 'torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1279200Z adding 'torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h' 2025-01-24T02:56:21.1280590Z adding 'torch/include/ATen/ops/_foreach_pow_native.h' 2025-01-24T02:56:21.1282010Z adding 'torch/include/ATen/ops/_foreach_pow_ops.h' 2025-01-24T02:56:21.1283070Z adding 'torch/include/ATen/ops/_foreach_reciprocal.h' 2025-01-24T02:56:21.1284090Z adding 'torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1285220Z adding 'torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h' 2025-01-24T02:56:21.1285800Z adding 'torch/include/ATen/ops/_foreach_reciprocal_native.h' 2025-01-24T02:56:21.1287210Z adding 'torch/include/ATen/ops/_foreach_reciprocal_ops.h' 2025-01-24T02:56:21.1288050Z adding 'torch/include/ATen/ops/_foreach_round.h' 2025-01-24T02:56:21.1289300Z adding 'torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1289930Z adding 'torch/include/ATen/ops/_foreach_round_cuda_dispatch.h' 2025-01-24T02:56:21.1291260Z adding 'torch/include/ATen/ops/_foreach_round_native.h' 2025-01-24T02:56:21.1292450Z adding 'torch/include/ATen/ops/_foreach_round_ops.h' 2025-01-24T02:56:21.1293310Z adding 'torch/include/ATen/ops/_foreach_rsqrt.h' 2025-01-24T02:56:21.1294680Z adding 'torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1295130Z adding 'torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h' 2025-01-24T02:56:21.1296380Z adding 'torch/include/ATen/ops/_foreach_rsqrt_native.h' 2025-01-24T02:56:21.1297600Z adding 'torch/include/ATen/ops/_foreach_rsqrt_ops.h' 2025-01-24T02:56:21.1298650Z adding 'torch/include/ATen/ops/_foreach_sigmoid.h' 2025-01-24T02:56:21.1299820Z adding 'torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1300460Z adding 'torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h' 2025-01-24T02:56:21.1301670Z adding 'torch/include/ATen/ops/_foreach_sigmoid_native.h' 2025-01-24T02:56:21.1302920Z adding 'torch/include/ATen/ops/_foreach_sigmoid_ops.h' 2025-01-24T02:56:21.1303450Z adding 'torch/include/ATen/ops/_foreach_sign.h' 2025-01-24T02:56:21.1304890Z adding 'torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1305670Z adding 'torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h' 2025-01-24T02:56:21.1306860Z adding 'torch/include/ATen/ops/_foreach_sign_native.h' 2025-01-24T02:56:21.1307920Z adding 'torch/include/ATen/ops/_foreach_sign_ops.h' 2025-01-24T02:56:21.1308770Z adding 'torch/include/ATen/ops/_foreach_sin.h' 2025-01-24T02:56:21.1310050Z adding 'torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1311200Z adding 'torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h' 2025-01-24T02:56:21.1311720Z adding 'torch/include/ATen/ops/_foreach_sin_native.h' 2025-01-24T02:56:21.1313050Z adding 'torch/include/ATen/ops/_foreach_sin_ops.h' 2025-01-24T02:56:21.1314090Z adding 'torch/include/ATen/ops/_foreach_sinh.h' 2025-01-24T02:56:21.1315110Z adding 'torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1316240Z adding 'torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h' 2025-01-24T02:56:21.1316730Z adding 'torch/include/ATen/ops/_foreach_sinh_native.h' 2025-01-24T02:56:21.1318120Z adding 'torch/include/ATen/ops/_foreach_sinh_ops.h' 2025-01-24T02:56:21.1319140Z adding 'torch/include/ATen/ops/_foreach_sqrt.h' 2025-01-24T02:56:21.1320180Z adding 'torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1321300Z adding 'torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h' 2025-01-24T02:56:21.1321870Z adding 'torch/include/ATen/ops/_foreach_sqrt_native.h' 2025-01-24T02:56:21.1323260Z adding 'torch/include/ATen/ops/_foreach_sqrt_ops.h' 2025-01-24T02:56:21.1324470Z adding 'torch/include/ATen/ops/_foreach_sub.h' 2025-01-24T02:56:21.1325870Z adding 'torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1326410Z adding 'torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h' 2025-01-24T02:56:21.1327740Z adding 'torch/include/ATen/ops/_foreach_sub_native.h' 2025-01-24T02:56:21.1329130Z adding 'torch/include/ATen/ops/_foreach_sub_ops.h' 2025-01-24T02:56:21.1330230Z adding 'torch/include/ATen/ops/_foreach_tan.h' 2025-01-24T02:56:21.1331450Z adding 'torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1332020Z adding 'torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h' 2025-01-24T02:56:21.1333380Z adding 'torch/include/ATen/ops/_foreach_tan_native.h' 2025-01-24T02:56:21.1334590Z adding 'torch/include/ATen/ops/_foreach_tan_ops.h' 2025-01-24T02:56:21.1335490Z adding 'torch/include/ATen/ops/_foreach_tanh.h' 2025-01-24T02:56:21.1336750Z adding 'torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1337350Z adding 'torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h' 2025-01-24T02:56:21.1338670Z adding 'torch/include/ATen/ops/_foreach_tanh_native.h' 2025-01-24T02:56:21.1339980Z adding 'torch/include/ATen/ops/_foreach_tanh_ops.h' 2025-01-24T02:56:21.1340500Z adding 'torch/include/ATen/ops/_foreach_trunc.h' 2025-01-24T02:56:21.1341960Z adding 'torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1342600Z adding 'torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h' 2025-01-24T02:56:21.1343810Z adding 'torch/include/ATen/ops/_foreach_trunc_native.h' 2025-01-24T02:56:21.1345030Z adding 'torch/include/ATen/ops/_foreach_trunc_ops.h' 2025-01-24T02:56:21.1346050Z adding 'torch/include/ATen/ops/_foreach_zero.h' 2025-01-24T02:56:21.1346720Z adding 'torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1347920Z adding 'torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h' 2025-01-24T02:56:21.1348760Z adding 'torch/include/ATen/ops/_foreach_zero_native.h' 2025-01-24T02:56:21.1350020Z adding 'torch/include/ATen/ops/_foreach_zero_ops.h' 2025-01-24T02:56:21.1351100Z adding 'torch/include/ATen/ops/_functional_assert_async.h' 2025-01-24T02:56:21.1352030Z adding 'torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h' 2025-01-24T02:56:21.1353260Z adding 'torch/include/ATen/ops/_functional_assert_async_native.h' 2025-01-24T02:56:21.1353900Z adding 'torch/include/ATen/ops/_functional_assert_async_ops.h' 2025-01-24T02:56:21.1355200Z adding 'torch/include/ATen/ops/_functional_assert_scalar.h' 2025-01-24T02:56:21.1356230Z adding 'torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1357330Z adding 'torch/include/ATen/ops/_functional_assert_scalar_native.h' 2025-01-24T02:56:21.1358180Z adding 'torch/include/ATen/ops/_functional_assert_scalar_ops.h' 2025-01-24T02:56:21.1359410Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range.h' 2025-01-24T02:56:21.1360430Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1361560Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h' 2025-01-24T02:56:21.1362310Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1363450Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h' 2025-01-24T02:56:21.1364660Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h' 2025-01-24T02:56:21.1365160Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_native.h' 2025-01-24T02:56:21.1366600Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_ops.h' 2025-01-24T02:56:21.1367690Z adding 'torch/include/ATen/ops/_fused_adagrad.h' 2025-01-24T02:56:21.1368910Z adding 'torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1369690Z adding 'torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h' 2025-01-24T02:56:21.1370940Z adding 'torch/include/ATen/ops/_fused_adagrad_native.h' 2025-01-24T02:56:21.1372210Z adding 'torch/include/ATen/ops/_fused_adagrad_ops.h' 2025-01-24T02:56:21.1373610Z adding 'torch/include/ATen/ops/_fused_adam.h' 2025-01-24T02:56:21.1374950Z adding 'torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1376060Z adding 'torch/include/ATen/ops/_fused_adam_cpu_dispatch.h' 2025-01-24T02:56:21.1376710Z adding 'torch/include/ATen/ops/_fused_adam_cuda_dispatch.h' 2025-01-24T02:56:21.1377900Z adding 'torch/include/ATen/ops/_fused_adam_mps_dispatch.h' 2025-01-24T02:56:21.1379090Z adding 'torch/include/ATen/ops/_fused_adam_native.h' 2025-01-24T02:56:21.1380640Z adding 'torch/include/ATen/ops/_fused_adam_ops.h' 2025-01-24T02:56:21.1382110Z adding 'torch/include/ATen/ops/_fused_adamw.h' 2025-01-24T02:56:21.1383480Z adding 'torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1384080Z adding 'torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h' 2025-01-24T02:56:21.1385380Z adding 'torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h' 2025-01-24T02:56:21.1386280Z adding 'torch/include/ATen/ops/_fused_adamw_mps_dispatch.h' 2025-01-24T02:56:21.1387510Z adding 'torch/include/ATen/ops/_fused_adamw_native.h' 2025-01-24T02:56:21.1389080Z adding 'torch/include/ATen/ops/_fused_adamw_ops.h' 2025-01-24T02:56:21.1390190Z adding 'torch/include/ATen/ops/_fused_dropout.h' 2025-01-24T02:56:21.1391560Z adding 'torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1392180Z adding 'torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h' 2025-01-24T02:56:21.1393440Z adding 'torch/include/ATen/ops/_fused_dropout_native.h' 2025-01-24T02:56:21.1394680Z adding 'torch/include/ATen/ops/_fused_dropout_ops.h' 2025-01-24T02:56:21.1395950Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h' 2025-01-24T02:56:21.1397300Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1397880Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h' 2025-01-24T02:56:21.1399130Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h' 2025-01-24T02:56:21.1400320Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h' 2025-01-24T02:56:21.1401570Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h' 2025-01-24T02:56:21.1402740Z adding 'torch/include/ATen/ops/_fused_sdp_choice.h' 2025-01-24T02:56:21.1403400Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h' 2025-01-24T02:56:21.1404670Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h' 2025-01-24T02:56:21.1405530Z adding 'torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h' 2025-01-24T02:56:21.1406760Z adding 'torch/include/ATen/ops/_fused_sdp_choice_native.h' 2025-01-24T02:56:21.1408130Z adding 'torch/include/ATen/ops/_fused_sdp_choice_ops.h' 2025-01-24T02:56:21.1409520Z adding 'torch/include/ATen/ops/_fused_sgd.h' 2025-01-24T02:56:21.1410900Z adding 'torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1412180Z adding 'torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h' 2025-01-24T02:56:21.1413350Z adding 'torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h' 2025-01-24T02:56:21.1414210Z adding 'torch/include/ATen/ops/_fused_sgd_mps_dispatch.h' 2025-01-24T02:56:21.1415500Z adding 'torch/include/ATen/ops/_fused_sgd_native.h' 2025-01-24T02:56:21.1417060Z adding 'torch/include/ATen/ops/_fused_sgd_ops.h' 2025-01-24T02:56:21.1418090Z adding 'torch/include/ATen/ops/_fw_primal.h' 2025-01-24T02:56:21.1419500Z adding 'torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1419940Z adding 'torch/include/ATen/ops/_fw_primal_copy.h' 2025-01-24T02:56:21.1421390Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1422320Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.1423380Z adding 'torch/include/ATen/ops/_fw_primal_copy_native.h' 2025-01-24T02:56:21.1424240Z adding 'torch/include/ATen/ops/_fw_primal_copy_ops.h' 2025-01-24T02:56:21.1425450Z adding 'torch/include/ATen/ops/_fw_primal_native.h' 2025-01-24T02:56:21.1426650Z adding 'torch/include/ATen/ops/_fw_primal_ops.h' 2025-01-24T02:56:21.1428640Z adding 'torch/include/ATen/ops/_gather_sparse_backward.h' 2025-01-24T02:56:21.1429660Z adding 'torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.1430770Z adding 'torch/include/ATen/ops/_gather_sparse_backward_native.h' 2025-01-24T02:56:21.1431620Z adding 'torch/include/ATen/ops/_gather_sparse_backward_ops.h' 2025-01-24T02:56:21.1432880Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h' 2025-01-24T02:56:21.1434130Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h' 2025-01-24T02:56:21.1434900Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.1436170Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h' 2025-01-24T02:56:21.1437070Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h' 2025-01-24T02:56:21.1438350Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1438960Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h' 2025-01-24T02:56:21.1440390Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h' 2025-01-24T02:56:21.1441260Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type.h' 2025-01-24T02:56:21.1442630Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.1443240Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h' 2025-01-24T02:56:21.1444580Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h' 2025-01-24T02:56:21.1449010Z adding 'torch/include/ATen/ops/_has_same_storage_numel.h' 2025-01-24T02:56:21.1449510Z adding 'torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1449710Z adding 'torch/include/ATen/ops/_has_same_storage_numel_native.h' 2025-01-24T02:56:21.1449910Z adding 'torch/include/ATen/ops/_has_same_storage_numel_ops.h' 2025-01-24T02:56:21.1450070Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges.h' 2025-01-24T02:56:21.1450560Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1451920Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h' 2025-01-24T02:56:21.1452440Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h' 2025-01-24T02:56:21.1453740Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_native.h' 2025-01-24T02:56:21.1454950Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_ops.h' 2025-01-24T02:56:21.1455810Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts.h' 2025-01-24T02:56:21.1457200Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1458330Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h' 2025-01-24T02:56:21.1458870Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h' 2025-01-24T02:56:21.1460150Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h' 2025-01-24T02:56:21.1461340Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h' 2025-01-24T02:56:21.1462550Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors.h' 2025-01-24T02:56:21.1463610Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1464760Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h' 2025-01-24T02:56:21.1465340Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h' 2025-01-24T02:56:21.1466620Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h' 2025-01-24T02:56:21.1467560Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h' 2025-01-24T02:56:21.1468790Z adding 'torch/include/ATen/ops/_index_put_impl.h' 2025-01-24T02:56:21.1470140Z adding 'torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1470650Z adding 'torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h' 2025-01-24T02:56:21.1471950Z adding 'torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h' 2025-01-24T02:56:21.1472810Z adding 'torch/include/ATen/ops/_index_put_impl_meta_dispatch.h' 2025-01-24T02:56:21.1474020Z adding 'torch/include/ATen/ops/_index_put_impl_mps_dispatch.h' 2025-01-24T02:56:21.1474870Z adding 'torch/include/ATen/ops/_index_put_impl_native.h' 2025-01-24T02:56:21.1476150Z adding 'torch/include/ATen/ops/_index_put_impl_ops.h' 2025-01-24T02:56:21.1476980Z adding 'torch/include/ATen/ops/_indices.h' 2025-01-24T02:56:21.1478200Z adding 'torch/include/ATen/ops/_indices_copy.h' 2025-01-24T02:56:21.1479380Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1480720Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.1481070Z adding 'torch/include/ATen/ops/_indices_copy_native.h' 2025-01-24T02:56:21.1482460Z adding 'torch/include/ATen/ops/_indices_copy_ops.h' 2025-01-24T02:56:21.1483490Z adding 'torch/include/ATen/ops/_indices_native.h' 2025-01-24T02:56:21.1484370Z adding 'torch/include/ATen/ops/_indices_ops.h' 2025-01-24T02:56:21.1485600Z adding 'torch/include/ATen/ops/_int_mm.h' 2025-01-24T02:56:21.1486490Z adding 'torch/include/ATen/ops/_int_mm_cpu_dispatch.h' 2025-01-24T02:56:21.1487710Z adding 'torch/include/ATen/ops/_int_mm_cuda_dispatch.h' 2025-01-24T02:56:21.1488580Z adding 'torch/include/ATen/ops/_int_mm_native.h' 2025-01-24T02:56:21.1489800Z adding 'torch/include/ATen/ops/_int_mm_ops.h' 2025-01-24T02:56:21.1490740Z adding 'torch/include/ATen/ops/_is_all_true.h' 2025-01-24T02:56:21.1491750Z adding 'torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1492930Z adding 'torch/include/ATen/ops/_is_all_true_native.h' 2025-01-24T02:56:21.1493800Z adding 'torch/include/ATen/ops/_is_all_true_ops.h' 2025-01-24T02:56:21.1494840Z adding 'torch/include/ATen/ops/_is_any_true.h' 2025-01-24T02:56:21.1495830Z adding 'torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1496930Z adding 'torch/include/ATen/ops/_is_any_true_native.h' 2025-01-24T02:56:21.1497960Z adding 'torch/include/ATen/ops/_is_any_true_ops.h' 2025-01-24T02:56:21.1499020Z adding 'torch/include/ATen/ops/_is_zerotensor.h' 2025-01-24T02:56:21.1499720Z adding 'torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.1500840Z adding 'torch/include/ATen/ops/_is_zerotensor_native.h' 2025-01-24T02:56:21.1501730Z adding 'torch/include/ATen/ops/_is_zerotensor_ops.h' 2025-01-24T02:56:21.1503080Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward.h' 2025-01-24T02:56:21.1504350Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h' 2025-01-24T02:56:21.1504970Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h' 2025-01-24T02:56:21.1506330Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h' 2025-01-24T02:56:21.1507190Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h' 2025-01-24T02:56:21.1508290Z adding 'torch/include/ATen/ops/_lazy_clone.h' 2025-01-24T02:56:21.1509320Z adding 'torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1510430Z adding 'torch/include/ATen/ops/_lazy_clone_native.h' 2025-01-24T02:56:21.1511310Z adding 'torch/include/ATen/ops/_lazy_clone_ops.h' 2025-01-24T02:56:21.1512540Z adding 'torch/include/ATen/ops/_linalg_check_errors.h' 2025-01-24T02:56:21.1513850Z adding 'torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1514340Z adding 'torch/include/ATen/ops/_linalg_check_errors_native.h' 2025-01-24T02:56:21.1515650Z adding 'torch/include/ATen/ops/_linalg_check_errors_ops.h' 2025-01-24T02:56:21.1516820Z adding 'torch/include/ATen/ops/_linalg_det.h' 2025-01-24T02:56:21.1517660Z adding 'torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.1518890Z adding 'torch/include/ATen/ops/_linalg_det_cpu_dispatch.h' 2025-01-24T02:56:21.1519780Z adding 'torch/include/ATen/ops/_linalg_det_cuda_dispatch.h' 2025-01-24T02:56:21.1520640Z adding 'torch/include/ATen/ops/_linalg_det_meta.h' 2025-01-24T02:56:21.1521790Z adding 'torch/include/ATen/ops/_linalg_det_meta_dispatch.h' 2025-01-24T02:56:21.1522640Z adding 'torch/include/ATen/ops/_linalg_det_native.h' 2025-01-24T02:56:21.1523880Z adding 'torch/include/ATen/ops/_linalg_det_ops.h' 2025-01-24T02:56:21.1524950Z adding 'torch/include/ATen/ops/_linalg_eigh.h' 2025-01-24T02:56:21.1526220Z adding 'torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.1526840Z adding 'torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h' 2025-01-24T02:56:21.1528170Z adding 'torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h' 2025-01-24T02:56:21.1528980Z adding 'torch/include/ATen/ops/_linalg_eigh_meta.h' 2025-01-24T02:56:21.1530140Z adding 'torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h' 2025-01-24T02:56:21.1530980Z adding 'torch/include/ATen/ops/_linalg_eigh_native.h' 2025-01-24T02:56:21.1532240Z adding 'torch/include/ATen/ops/_linalg_eigh_ops.h' 2025-01-24T02:56:21.1533270Z adding 'torch/include/ATen/ops/_linalg_eigvals.h' 2025-01-24T02:56:21.1534350Z adding 'torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h' 2025-01-24T02:56:21.1534950Z adding 'torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h' 2025-01-24T02:56:21.1536170Z adding 'torch/include/ATen/ops/_linalg_eigvals_native.h' 2025-01-24T02:56:21.1537070Z adding 'torch/include/ATen/ops/_linalg_eigvals_ops.h' 2025-01-24T02:56:21.1538270Z adding 'torch/include/ATen/ops/_linalg_slogdet.h' 2025-01-24T02:56:21.1539370Z adding 'torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.1540460Z adding 'torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h' 2025-01-24T02:56:21.1541080Z adding 'torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h' 2025-01-24T02:56:21.1542380Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta.h' 2025-01-24T02:56:21.1543280Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h' 2025-01-24T02:56:21.1544490Z adding 'torch/include/ATen/ops/_linalg_slogdet_native.h' 2025-01-24T02:56:21.1545370Z adding 'torch/include/ATen/ops/_linalg_slogdet_ops.h' 2025-01-24T02:56:21.1546650Z adding 'torch/include/ATen/ops/_linalg_solve_ex.h' 2025-01-24T02:56:21.1547920Z adding 'torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.1548560Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h' 2025-01-24T02:56:21.1549850Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h' 2025-01-24T02:56:21.1550680Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta.h' 2025-01-24T02:56:21.1551920Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h' 2025-01-24T02:56:21.1552760Z adding 'torch/include/ATen/ops/_linalg_solve_ex_native.h' 2025-01-24T02:56:21.1554010Z adding 'torch/include/ATen/ops/_linalg_solve_ex_ops.h' 2025-01-24T02:56:21.1555180Z adding 'torch/include/ATen/ops/_linalg_svd.h' 2025-01-24T02:56:21.1556230Z adding 'torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.1557360Z adding 'torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h' 2025-01-24T02:56:21.1557940Z adding 'torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h' 2025-01-24T02:56:21.1559210Z adding 'torch/include/ATen/ops/_linalg_svd_meta.h' 2025-01-24T02:56:21.1560320Z adding 'torch/include/ATen/ops/_linalg_svd_meta_dispatch.h' 2025-01-24T02:56:21.1560910Z adding 'torch/include/ATen/ops/_linalg_svd_native.h' 2025-01-24T02:56:21.1562320Z adding 'torch/include/ATen/ops/_linalg_svd_ops.h' 2025-01-24T02:56:21.1563380Z adding 'torch/include/ATen/ops/_local_scalar_dense.h' 2025-01-24T02:56:21.1564330Z adding 'torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h' 2025-01-24T02:56:21.1565550Z adding 'torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h' 2025-01-24T02:56:21.1566200Z adding 'torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h' 2025-01-24T02:56:21.1567480Z adding 'torch/include/ATen/ops/_local_scalar_dense_native.h' 2025-01-24T02:56:21.1568340Z adding 'torch/include/ATen/ops/_local_scalar_dense_ops.h' 2025-01-24T02:56:21.1569530Z adding 'torch/include/ATen/ops/_log_softmax.h' 2025-01-24T02:56:21.1570790Z adding 'torch/include/ATen/ops/_log_softmax_backward_data.h' 2025-01-24T02:56:21.1571620Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.1572820Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h' 2025-01-24T02:56:21.1573730Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h' 2025-01-24T02:56:21.1574890Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta.h' 2025-01-24T02:56:21.1575820Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h' 2025-01-24T02:56:21.1576710Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h' 2025-01-24T02:56:21.1577910Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_native.h' 2025-01-24T02:56:21.1579100Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_ops.h' 2025-01-24T02:56:21.1580110Z adding 'torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.1581200Z adding 'torch/include/ATen/ops/_log_softmax_cpu_dispatch.h' 2025-01-24T02:56:21.1582070Z adding 'torch/include/ATen/ops/_log_softmax_cuda_dispatch.h' 2025-01-24T02:56:21.1583240Z adding 'torch/include/ATen/ops/_log_softmax_meta.h' 2025-01-24T02:56:21.1583820Z adding 'torch/include/ATen/ops/_log_softmax_meta_dispatch.h' 2025-01-24T02:56:21.1585100Z adding 'torch/include/ATen/ops/_log_softmax_mps_dispatch.h' 2025-01-24T02:56:21.1585960Z adding 'torch/include/ATen/ops/_log_softmax_native.h' 2025-01-24T02:56:21.1587220Z adding 'torch/include/ATen/ops/_log_softmax_ops.h' 2025-01-24T02:56:21.1588290Z adding 'torch/include/ATen/ops/_logcumsumexp.h' 2025-01-24T02:56:21.1589400Z adding 'torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h' 2025-01-24T02:56:21.1590270Z adding 'torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h' 2025-01-24T02:56:21.1591150Z adding 'torch/include/ATen/ops/_logcumsumexp_native.h' 2025-01-24T02:56:21.1592390Z adding 'torch/include/ATen/ops/_logcumsumexp_ops.h' 2025-01-24T02:56:21.1593610Z adding 'torch/include/ATen/ops/_lstm_mps.h' 2025-01-24T02:56:21.1595000Z adding 'torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1595530Z adding 'torch/include/ATen/ops/_lstm_mps_mps_dispatch.h' 2025-01-24T02:56:21.1596760Z adding 'torch/include/ATen/ops/_lstm_mps_native.h' 2025-01-24T02:56:21.1597960Z adding 'torch/include/ATen/ops/_lstm_mps_ops.h' 2025-01-24T02:56:21.1599160Z adding 'torch/include/ATen/ops/_lu_with_info.h' 2025-01-24T02:56:21.1599930Z adding 'torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.1601010Z adding 'torch/include/ATen/ops/_lu_with_info_native.h' 2025-01-24T02:56:21.1602180Z adding 'torch/include/ATen/ops/_lu_with_info_ops.h' 2025-01-24T02:56:21.1603200Z adding 'torch/include/ATen/ops/_make_dep_token.h' 2025-01-24T02:56:21.1604320Z adding 'torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h' 2025-01-24T02:56:21.1605140Z adding 'torch/include/ATen/ops/_make_dep_token_native.h' 2025-01-24T02:56:21.1606420Z adding 'torch/include/ATen/ops/_make_dep_token_ops.h' 2025-01-24T02:56:21.1607280Z adding 'torch/include/ATen/ops/_make_dual.h' 2025-01-24T02:56:21.1608540Z adding 'torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1609610Z adding 'torch/include/ATen/ops/_make_dual_copy.h' 2025-01-24T02:56:21.1610770Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1611460Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.1612560Z adding 'torch/include/ATen/ops/_make_dual_copy_native.h' 2025-01-24T02:56:21.1614280Z adding 'torch/include/ATen/ops/_make_dual_copy_ops.h' 2025-01-24T02:56:21.1615770Z adding 'torch/include/ATen/ops/_make_dual_native.h' 2025-01-24T02:56:21.1617060Z adding 'torch/include/ATen/ops/_make_dual_ops.h' 2025-01-24T02:56:21.1621850Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor.h' 2025-01-24T02:56:21.1622410Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1622680Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h' 2025-01-24T02:56:21.1622950Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h' 2025-01-24T02:56:21.1623220Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h' 2025-01-24T02:56:21.1624400Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h' 2025-01-24T02:56:21.1625620Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h' 2025-01-24T02:56:21.1626970Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1628120Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h' 2025-01-24T02:56:21.1628740Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h' 2025-01-24T02:56:21.1630130Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h' 2025-01-24T02:56:21.1631350Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h' 2025-01-24T02:56:21.1632480Z adding 'torch/include/ATen/ops/_masked_scale.h' 2025-01-24T02:56:21.1633830Z adding 'torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1634450Z adding 'torch/include/ATen/ops/_masked_scale_cuda_dispatch.h' 2025-01-24T02:56:21.1635770Z adding 'torch/include/ATen/ops/_masked_scale_native.h' 2025-01-24T02:56:21.1637000Z adding 'torch/include/ATen/ops/_masked_scale_ops.h' 2025-01-24T02:56:21.1638110Z adding 'torch/include/ATen/ops/_masked_softmax.h' 2025-01-24T02:56:21.1639320Z adding 'torch/include/ATen/ops/_masked_softmax_backward.h' 2025-01-24T02:56:21.1640680Z adding 'torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1641460Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h' 2025-01-24T02:56:21.1642710Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h' 2025-01-24T02:56:21.1643900Z adding 'torch/include/ATen/ops/_masked_softmax_backward_native.h' 2025-01-24T02:56:21.1645790Z adding 'torch/include/ATen/ops/_masked_softmax_backward_ops.h' 2025-01-24T02:56:21.1647100Z adding 'torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1647910Z adding 'torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h' 2025-01-24T02:56:21.1649190Z adding 'torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h' 2025-01-24T02:56:21.1650370Z adding 'torch/include/ATen/ops/_masked_softmax_native.h' 2025-01-24T02:56:21.1651570Z adding 'torch/include/ATen/ops/_masked_softmax_ops.h' 2025-01-24T02:56:21.1652790Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear.h' 2025-01-24T02:56:21.1653800Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h' 2025-01-24T02:56:21.1654940Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_native.h' 2025-01-24T02:56:21.1656440Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_ops.h' 2025-01-24T02:56:21.1657620Z adding 'torch/include/ATen/ops/_mkldnn_reshape.h' 2025-01-24T02:56:21.1658800Z adding 'torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1659900Z adding 'torch/include/ATen/ops/_mkldnn_reshape_native.h' 2025-01-24T02:56:21.1661120Z adding 'torch/include/ATen/ops/_mkldnn_reshape_ops.h' 2025-01-24T02:56:21.1662330Z adding 'torch/include/ATen/ops/_mkldnn_transpose.h' 2025-01-24T02:56:21.1663350Z adding 'torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1664470Z adding 'torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h' 2025-01-24T02:56:21.1665690Z adding 'torch/include/ATen/ops/_mkldnn_transpose_native.h' 2025-01-24T02:56:21.1666860Z adding 'torch/include/ATen/ops/_mkldnn_transpose_ops.h' 2025-01-24T02:56:21.1668190Z adding 'torch/include/ATen/ops/_mps_convolution.h' 2025-01-24T02:56:21.1669550Z adding 'torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1670690Z adding 'torch/include/ATen/ops/_mps_convolution_mps_dispatch.h' 2025-01-24T02:56:21.1671560Z adding 'torch/include/ATen/ops/_mps_convolution_native.h' 2025-01-24T02:56:21.1672960Z adding 'torch/include/ATen/ops/_mps_convolution_ops.h' 2025-01-24T02:56:21.1674780Z adding 'torch/include/ATen/ops/_mps_convolution_transpose.h' 2025-01-24T02:56:21.1676230Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1677410Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h' 2025-01-24T02:56:21.1678420Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_native.h' 2025-01-24T02:56:21.1679690Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_ops.h' 2025-01-24T02:56:21.1681050Z adding 'torch/include/ATen/ops/_native_batch_norm_legit.h' 2025-01-24T02:56:21.1682410Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1683550Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h' 2025-01-24T02:56:21.1684430Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h' 2025-01-24T02:56:21.1685680Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h' 2025-01-24T02:56:21.1686950Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_native.h' 2025-01-24T02:56:21.1688200Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training.h' 2025-01-24T02:56:21.1689570Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1690160Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h' 2025-01-24T02:56:21.1691670Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h' 2025-01-24T02:56:21.1693090Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_ops.h' 2025-01-24T02:56:21.1694330Z adding 'torch/include/ATen/ops/_native_multi_head_attention.h' 2025-01-24T02:56:21.1695720Z adding 'torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1696250Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h' 2025-01-24T02:56:21.1697650Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h' 2025-01-24T02:56:21.1698500Z adding 'torch/include/ATen/ops/_native_multi_head_attention_native.h' 2025-01-24T02:56:21.1699920Z adding 'torch/include/ATen/ops/_native_multi_head_attention_ops.h' 2025-01-24T02:56:21.1700700Z adding 'torch/include/ATen/ops/_neg_view.h' 2025-01-24T02:56:21.1702080Z adding 'torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1702690Z adding 'torch/include/ATen/ops/_neg_view_copy.h' 2025-01-24T02:56:21.1704180Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1705420Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.1705840Z adding 'torch/include/ATen/ops/_neg_view_copy_native.h' 2025-01-24T02:56:21.1707290Z adding 'torch/include/ATen/ops/_neg_view_copy_ops.h' 2025-01-24T02:56:21.1708150Z adding 'torch/include/ATen/ops/_neg_view_native.h' 2025-01-24T02:56:21.1709370Z adding 'torch/include/ATen/ops/_neg_view_ops.h' 2025-01-24T02:56:21.1710720Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h' 2025-01-24T02:56:21.1711440Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h' 2025-01-24T02:56:21.1712750Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h' 2025-01-24T02:56:21.1713460Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h' 2025-01-24T02:56:21.1714860Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h' 2025-01-24T02:56:21.1715990Z adding 'torch/include/ATen/ops/_nested_from_padded.h' 2025-01-24T02:56:21.1716730Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example.h' 2025-01-24T02:56:21.1718180Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1718790Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h' 2025-01-24T02:56:21.1720210Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h' 2025-01-24T02:56:21.1721090Z adding 'torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1722240Z adding 'torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h' 2025-01-24T02:56:21.1722930Z adding 'torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h' 2025-01-24T02:56:21.1724210Z adding 'torch/include/ATen/ops/_nested_from_padded_native.h' 2025-01-24T02:56:21.1725420Z adding 'torch/include/ATen/ops/_nested_from_padded_ops.h' 2025-01-24T02:56:21.1726650Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor.h' 2025-01-24T02:56:21.1727280Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_native.h' 2025-01-24T02:56:21.1728650Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_ops.h' 2025-01-24T02:56:21.1729520Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy.h' 2025-01-24T02:56:21.1730500Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_native.h' 2025-01-24T02:56:21.1731730Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h' 2025-01-24T02:56:21.1732410Z adding 'torch/include/ATen/ops/_nested_get_lengths.h' 2025-01-24T02:56:21.1733480Z adding 'torch/include/ATen/ops/_nested_get_lengths_native.h' 2025-01-24T02:56:21.1734450Z adding 'torch/include/ATen/ops/_nested_get_lengths_ops.h' 2025-01-24T02:56:21.1735700Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen.h' 2025-01-24T02:56:21.1736210Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_native.h' 2025-01-24T02:56:21.1737480Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_ops.h' 2025-01-24T02:56:21.1738360Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen.h' 2025-01-24T02:56:21.1739270Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_native.h' 2025-01-24T02:56:21.1740530Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_ops.h' 2025-01-24T02:56:21.1741110Z adding 'torch/include/ATen/ops/_nested_get_offsets.h' 2025-01-24T02:56:21.1742450Z adding 'torch/include/ATen/ops/_nested_get_offsets_native.h' 2025-01-24T02:56:21.1743080Z adding 'torch/include/ATen/ops/_nested_get_offsets_ops.h' 2025-01-24T02:56:21.1744400Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx.h' 2025-01-24T02:56:21.1744990Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_native.h' 2025-01-24T02:56:21.1746290Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_ops.h' 2025-01-24T02:56:21.1747170Z adding 'torch/include/ATen/ops/_nested_get_values.h' 2025-01-24T02:56:21.1748500Z adding 'torch/include/ATen/ops/_nested_get_values_copy.h' 2025-01-24T02:56:21.1749490Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1750790Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.1751390Z adding 'torch/include/ATen/ops/_nested_get_values_copy_native.h' 2025-01-24T02:56:21.1752870Z adding 'torch/include/ATen/ops/_nested_get_values_copy_ops.h' 2025-01-24T02:56:21.1753760Z adding 'torch/include/ATen/ops/_nested_get_values_native.h' 2025-01-24T02:56:21.1754960Z adding 'torch/include/ATen/ops/_nested_get_values_ops.h' 2025-01-24T02:56:21.1755880Z adding 'torch/include/ATen/ops/_nested_select_backward.h' 2025-01-24T02:56:21.1757160Z adding 'torch/include/ATen/ops/_nested_select_backward_native.h' 2025-01-24T02:56:21.1758020Z adding 'torch/include/ATen/ops/_nested_select_backward_ops.h' 2025-01-24T02:56:21.1759210Z adding 'torch/include/ATen/ops/_nested_sum_backward.h' 2025-01-24T02:56:21.1759910Z adding 'torch/include/ATen/ops/_nested_sum_backward_native.h' 2025-01-24T02:56:21.1761170Z adding 'torch/include/ATen/ops/_nested_sum_backward_ops.h' 2025-01-24T02:56:21.1762400Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask.h' 2025-01-24T02:56:21.1763280Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1764400Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h' 2025-01-24T02:56:21.1765310Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h' 2025-01-24T02:56:21.1766500Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h' 2025-01-24T02:56:21.1767200Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h' 2025-01-24T02:56:21.1768430Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h' 2025-01-24T02:56:21.1769290Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h' 2025-01-24T02:56:21.1770490Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h' 2025-01-24T02:56:21.1771100Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_native.h' 2025-01-24T02:56:21.1772490Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_ops.h' 2025-01-24T02:56:21.1773710Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list.h' 2025-01-24T02:56:21.1774730Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1775850Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h' 2025-01-24T02:56:21.1777060Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h' 2025-01-24T02:56:21.1777640Z adding 'torch/include/ATen/ops/_nested_tensor_size.h' 2025-01-24T02:56:21.1779090Z adding 'torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1779700Z adding 'torch/include/ATen/ops/_nested_tensor_size_native.h' 2025-01-24T02:56:21.1781020Z adding 'torch/include/ATen/ops/_nested_tensor_size_ops.h' 2025-01-24T02:56:21.1781930Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h' 2025-01-24T02:56:21.1783180Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h' 2025-01-24T02:56:21.1783820Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h' 2025-01-24T02:56:21.1785150Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets.h' 2025-01-24T02:56:21.1786180Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1786910Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h' 2025-01-24T02:56:21.1788250Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h' 2025-01-24T02:56:21.1789120Z adding 'torch/include/ATen/ops/_nested_tensor_strides.h' 2025-01-24T02:56:21.1790540Z adding 'torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1790970Z adding 'torch/include/ATen/ops/_nested_tensor_strides_native.h' 2025-01-24T02:56:21.1792260Z adding 'torch/include/ATen/ops/_nested_tensor_strides_ops.h' 2025-01-24T02:56:21.1793330Z adding 'torch/include/ATen/ops/_nested_view_from_buffer.h' 2025-01-24T02:56:21.1794560Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy.h' 2025-01-24T02:56:21.1795300Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1796640Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.1797180Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h' 2025-01-24T02:56:21.1798540Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h' 2025-01-24T02:56:21.1799430Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h' 2025-01-24T02:56:21.1804380Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h' 2025-01-24T02:56:21.1804750Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_native.h' 2025-01-24T02:56:21.1805000Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_ops.h' 2025-01-24T02:56:21.1805180Z adding 'torch/include/ATen/ops/_nested_view_from_jagged.h' 2025-01-24T02:56:21.1805370Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy.h' 2025-01-24T02:56:21.1805710Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1807020Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.1807530Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h' 2025-01-24T02:56:21.1808950Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h' 2025-01-24T02:56:21.1809810Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_native.h' 2025-01-24T02:56:21.1811060Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_ops.h' 2025-01-24T02:56:21.1812010Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h' 2025-01-24T02:56:21.1813340Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1813940Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h' 2025-01-24T02:56:21.1815320Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h' 2025-01-24T02:56:21.1816440Z adding 'torch/include/ATen/ops/_nnpack_available.h' 2025-01-24T02:56:21.1817640Z adding 'torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.1818140Z adding 'torch/include/ATen/ops/_nnpack_available_native.h' 2025-01-24T02:56:21.1819420Z adding 'torch/include/ATen/ops/_nnpack_available_ops.h' 2025-01-24T02:56:21.1820780Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution.h' 2025-01-24T02:56:21.1822150Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1822720Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_native.h' 2025-01-24T02:56:21.1824130Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h' 2025-01-24T02:56:21.1824900Z adding 'torch/include/ATen/ops/_nnz.h' 2025-01-24T02:56:21.1826120Z adding 'torch/include/ATen/ops/_nnz_native.h' 2025-01-24T02:56:21.1826980Z adding 'torch/include/ATen/ops/_nnz_ops.h' 2025-01-24T02:56:21.1828210Z adding 'torch/include/ATen/ops/_pack_padded_sequence.h' 2025-01-24T02:56:21.1829480Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward.h' 2025-01-24T02:56:21.1830260Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.1831500Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_native.h' 2025-01-24T02:56:21.1832390Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h' 2025-01-24T02:56:21.1833750Z adding 'torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1834260Z adding 'torch/include/ATen/ops/_pack_padded_sequence_native.h' 2025-01-24T02:56:21.1835640Z adding 'torch/include/ATen/ops/_pack_padded_sequence_ops.h' 2025-01-24T02:56:21.1836820Z adding 'torch/include/ATen/ops/_pad_circular.h' 2025-01-24T02:56:21.1837560Z adding 'torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.1838710Z adding 'torch/include/ATen/ops/_pad_circular_native.h' 2025-01-24T02:56:21.1839920Z adding 'torch/include/ATen/ops/_pad_circular_ops.h' 2025-01-24T02:56:21.1840760Z adding 'torch/include/ATen/ops/_pad_enum.h' 2025-01-24T02:56:21.1842110Z adding 'torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.1842620Z adding 'torch/include/ATen/ops/_pad_enum_native.h' 2025-01-24T02:56:21.1843960Z adding 'torch/include/ATen/ops/_pad_enum_ops.h' 2025-01-24T02:56:21.1845020Z adding 'torch/include/ATen/ops/_pad_packed_sequence.h' 2025-01-24T02:56:21.1846080Z adding 'torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.1847180Z adding 'torch/include/ATen/ops/_pad_packed_sequence_native.h' 2025-01-24T02:56:21.1848370Z adding 'torch/include/ATen/ops/_pad_packed_sequence_ops.h' 2025-01-24T02:56:21.1849280Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward.h' 2025-01-24T02:56:21.1850590Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h' 2025-01-24T02:56:21.1851280Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h' 2025-01-24T02:56:21.1852460Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h' 2025-01-24T02:56:21.1853680Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h' 2025-01-24T02:56:21.1854240Z adding 'torch/include/ATen/ops/_pdist_backward.h' 2025-01-24T02:56:21.1855700Z adding 'torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1856500Z adding 'torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h' 2025-01-24T02:56:21.1857710Z adding 'torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h' 2025-01-24T02:56:21.1858350Z adding 'torch/include/ATen/ops/_pdist_backward_native.h' 2025-01-24T02:56:21.1859700Z adding 'torch/include/ATen/ops/_pdist_backward_ops.h' 2025-01-24T02:56:21.1860560Z adding 'torch/include/ATen/ops/_pdist_forward.h' 2025-01-24T02:56:21.1861860Z adding 'torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1862510Z adding 'torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h' 2025-01-24T02:56:21.1863720Z adding 'torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h' 2025-01-24T02:56:21.1864570Z adding 'torch/include/ATen/ops/_pdist_forward_native.h' 2025-01-24T02:56:21.1865780Z adding 'torch/include/ATen/ops/_pdist_forward_ops.h' 2025-01-24T02:56:21.1866820Z adding 'torch/include/ATen/ops/_pin_memory.h' 2025-01-24T02:56:21.1867810Z adding 'torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1868940Z adding 'torch/include/ATen/ops/_pin_memory_native.h' 2025-01-24T02:56:21.1869810Z adding 'torch/include/ATen/ops/_pin_memory_ops.h' 2025-01-24T02:56:21.1871080Z adding 'torch/include/ATen/ops/_prelu_kernel.h' 2025-01-24T02:56:21.1872160Z adding 'torch/include/ATen/ops/_prelu_kernel_backward.h' 2025-01-24T02:56:21.1872860Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h' 2025-01-24T02:56:21.1874030Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h' 2025-01-24T02:56:21.1874900Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h' 2025-01-24T02:56:21.1876090Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_native.h' 2025-01-24T02:56:21.1876960Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_ops.h' 2025-01-24T02:56:21.1878190Z adding 'torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h' 2025-01-24T02:56:21.1878760Z adding 'torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h' 2025-01-24T02:56:21.1880020Z adding 'torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h' 2025-01-24T02:56:21.1880850Z adding 'torch/include/ATen/ops/_prelu_kernel_native.h' 2025-01-24T02:56:21.1882030Z adding 'torch/include/ATen/ops/_prelu_kernel_ops.h' 2025-01-24T02:56:21.1883040Z adding 'torch/include/ATen/ops/_print.h' 2025-01-24T02:56:21.1884370Z adding 'torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1884880Z adding 'torch/include/ATen/ops/_print_native.h' 2025-01-24T02:56:21.1886220Z adding 'torch/include/ATen/ops/_print_ops.h' 2025-01-24T02:56:21.1887450Z adding 'torch/include/ATen/ops/_propagate_xla_data.h' 2025-01-24T02:56:21.1888230Z adding 'torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.1889470Z adding 'torch/include/ATen/ops/_propagate_xla_data_native.h' 2025-01-24T02:56:21.1890360Z adding 'torch/include/ATen/ops/_propagate_xla_data_ops.h' 2025-01-24T02:56:21.1891570Z adding 'torch/include/ATen/ops/_remove_batch_dim.h' 2025-01-24T02:56:21.1892780Z adding 'torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.1893290Z adding 'torch/include/ATen/ops/_remove_batch_dim_native.h' 2025-01-24T02:56:21.1894650Z adding 'torch/include/ATen/ops/_remove_batch_dim_ops.h' 2025-01-24T02:56:21.1895850Z adding 'torch/include/ATen/ops/_reshape_alias.h' 2025-01-24T02:56:21.1897110Z adding 'torch/include/ATen/ops/_reshape_alias_copy.h' 2025-01-24T02:56:21.1898240Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1898980Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.1900090Z adding 'torch/include/ATen/ops/_reshape_alias_copy_native.h' 2025-01-24T02:56:21.1901580Z adding 'torch/include/ATen/ops/_reshape_alias_copy_ops.h' 2025-01-24T02:56:21.1902820Z adding 'torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h' 2025-01-24T02:56:21.1903340Z adding 'torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h' 2025-01-24T02:56:21.1904590Z adding 'torch/include/ATen/ops/_reshape_alias_meta_dispatch.h' 2025-01-24T02:56:21.1905790Z adding 'torch/include/ATen/ops/_reshape_alias_mps_dispatch.h' 2025-01-24T02:56:21.1906250Z adding 'torch/include/ATen/ops/_reshape_alias_native.h' 2025-01-24T02:56:21.1907580Z adding 'torch/include/ATen/ops/_reshape_alias_ops.h' 2025-01-24T02:56:21.1908790Z adding 'torch/include/ATen/ops/_reshape_copy.h' 2025-01-24T02:56:21.1909580Z adding 'torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1910680Z adding 'torch/include/ATen/ops/_reshape_copy_native.h' 2025-01-24T02:56:21.1911590Z adding 'torch/include/ATen/ops/_reshape_copy_ops.h' 2025-01-24T02:56:21.1912870Z adding 'torch/include/ATen/ops/_reshape_from_tensor.h' 2025-01-24T02:56:21.1913910Z adding 'torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.1915010Z adding 'torch/include/ATen/ops/_reshape_from_tensor_native.h' 2025-01-24T02:56:21.1915880Z adding 'torch/include/ATen/ops/_reshape_from_tensor_ops.h' 2025-01-24T02:56:21.1917180Z adding 'torch/include/ATen/ops/_resize_output.h' 2025-01-24T02:56:21.1918530Z adding 'torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1919810Z adding 'torch/include/ATen/ops/_resize_output_meta_dispatch.h' 2025-01-24T02:56:21.1920960Z adding 'torch/include/ATen/ops/_resize_output_native.h' 2025-01-24T02:56:21.1922220Z adding 'torch/include/ATen/ops/_resize_output_ops.h' 2025-01-24T02:56:21.1923480Z adding 'torch/include/ATen/ops/_rowwise_prune.h' 2025-01-24T02:56:21.1924690Z adding 'torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.1925210Z adding 'torch/include/ATen/ops/_rowwise_prune_native.h' 2025-01-24T02:56:21.1926680Z adding 'torch/include/ATen/ops/_rowwise_prune_ops.h' 2025-01-24T02:56:21.1927860Z adding 'torch/include/ATen/ops/_safe_softmax.h' 2025-01-24T02:56:21.1928940Z adding 'torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1930090Z adding 'torch/include/ATen/ops/_safe_softmax_native.h' 2025-01-24T02:56:21.1931280Z adding 'torch/include/ATen/ops/_safe_softmax_ops.h' 2025-01-24T02:56:21.1932320Z adding 'torch/include/ATen/ops/_sample_dirichlet.h' 2025-01-24T02:56:21.1933590Z adding 'torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1934710Z adding 'torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h' 2025-01-24T02:56:21.1935280Z adding 'torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h' 2025-01-24T02:56:21.1936540Z adding 'torch/include/ATen/ops/_sample_dirichlet_native.h' 2025-01-24T02:56:21.1937730Z adding 'torch/include/ATen/ops/_sample_dirichlet_ops.h' 2025-01-24T02:56:21.1938410Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16.h' 2025-01-24T02:56:21.1939870Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.1940420Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_native.h' 2025-01-24T02:56:21.1941740Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h' 2025-01-24T02:56:21.1943000Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math.h' 2025-01-24T02:56:21.1943780Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.1945020Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h' 2025-01-24T02:56:21.1946310Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_mps_dispatch.h' 2025-01-24T02:56:21.1946850Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h' 2025-01-24T02:56:21.1948220Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h' 2025-01-24T02:56:21.1949070Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h' 2025-01-24T02:56:21.1950380Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h' 2025-01-24T02:56:21.1951580Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h' 2025-01-24T02:56:21.1953010Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h' 2025-01-24T02:56:21.1954320Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h' 2025-01-24T02:56:21.1955000Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h' 2025-01-24T02:56:21.1956490Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h' 2025-01-24T02:56:21.1957700Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h' 2025-01-24T02:56:21.1958250Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h' 2025-01-24T02:56:21.1959670Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h' 2025-01-24T02:56:21.1960870Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h' 2025-01-24T02:56:21.1961790Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h' 2025-01-24T02:56:21.1963050Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h' 2025-01-24T02:56:21.1963740Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h' 2025-01-24T02:56:21.1965380Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h' 2025-01-24T02:56:21.1965950Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h' 2025-01-24T02:56:21.1967220Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h' 2025-01-24T02:56:21.1968460Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h' 2025-01-24T02:56:21.1969110Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention.h' 2025-01-24T02:56:21.1970660Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h' 2025-01-24T02:56:21.1971960Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h' 2025-01-24T02:56:21.1972950Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h' 2025-01-24T02:56:21.1974220Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h' 2025-01-24T02:56:21.1974910Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h' 2025-01-24T02:56:21.1979740Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h' 2025-01-24T02:56:21.1980170Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h' 2025-01-24T02:56:21.1980560Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h' 2025-01-24T02:56:21.1980870Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h' 2025-01-24T02:56:21.1981160Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h' 2025-01-24T02:56:21.1981460Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h' 2025-01-24T02:56:21.1982180Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h' 2025-01-24T02:56:21.1983530Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h' 2025-01-24T02:56:21.1984380Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h' 2025-01-24T02:56:21.1985640Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h' 2025-01-24T02:56:21.1986920Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h' 2025-01-24T02:56:21.1988130Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h' 2025-01-24T02:56:21.1989490Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1990020Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h' 2025-01-24T02:56:21.1991500Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h' 2025-01-24T02:56:21.1992790Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.1993340Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h' 2025-01-24T02:56:21.1994810Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h' 2025-01-24T02:56:21.1995890Z adding 'torch/include/ATen/ops/_scaled_mm.h' 2025-01-24T02:56:21.1997150Z adding 'torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h' 2025-01-24T02:56:21.1997760Z adding 'torch/include/ATen/ops/_scaled_mm_native.h' 2025-01-24T02:56:21.1999180Z adding 'torch/include/ATen/ops/_scaled_mm_ops.h' 2025-01-24T02:56:21.2000350Z adding 'torch/include/ATen/ops/_segment_reduce_backward.h' 2025-01-24T02:56:21.2001700Z adding 'torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2002230Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h' 2025-01-24T02:56:21.2003590Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h' 2025-01-24T02:56:21.2004230Z adding 'torch/include/ATen/ops/_segment_reduce_backward_native.h' 2025-01-24T02:56:21.2005650Z adding 'torch/include/ATen/ops/_segment_reduce_backward_ops.h' 2025-01-24T02:56:21.2006500Z adding 'torch/include/ATen/ops/_shape_as_tensor.h' 2025-01-24T02:56:21.2007830Z adding 'torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2008380Z adding 'torch/include/ATen/ops/_shape_as_tensor_native.h' 2025-01-24T02:56:21.2009710Z adding 'torch/include/ATen/ops/_shape_as_tensor_ops.h' 2025-01-24T02:56:21.2011460Z adding 'torch/include/ATen/ops/_slow_conv2d_backward.h' 2025-01-24T02:56:21.2012850Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2013570Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.2014900Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.2015860Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_native.h' 2025-01-24T02:56:21.2017240Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_ops.h' 2025-01-24T02:56:21.2018590Z adding 'torch/include/ATen/ops/_slow_conv2d_forward.h' 2025-01-24T02:56:21.2019860Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h' 2025-01-24T02:56:21.2021060Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h' 2025-01-24T02:56:21.2021650Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_native.h' 2025-01-24T02:56:21.2023060Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_ops.h' 2025-01-24T02:56:21.2024250Z adding 'torch/include/ATen/ops/_sobol_engine_draw.h' 2025-01-24T02:56:21.2025250Z adding 'torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2025890Z adding 'torch/include/ATen/ops/_sobol_engine_draw_native.h' 2025-01-24T02:56:21.2027230Z adding 'torch/include/ATen/ops/_sobol_engine_draw_ops.h' 2025-01-24T02:56:21.2028080Z adding 'torch/include/ATen/ops/_sobol_engine_ff.h' 2025-01-24T02:56:21.2029410Z adding 'torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2029970Z adding 'torch/include/ATen/ops/_sobol_engine_ff_native.h' 2025-01-24T02:56:21.2031300Z adding 'torch/include/ATen/ops/_sobol_engine_ff_ops.h' 2025-01-24T02:56:21.2032270Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state.h' 2025-01-24T02:56:21.2033570Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2034110Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_native.h' 2025-01-24T02:56:21.2035410Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h' 2025-01-24T02:56:21.2036240Z adding 'torch/include/ATen/ops/_sobol_engine_scramble.h' 2025-01-24T02:56:21.2037650Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2038080Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_native.h' 2025-01-24T02:56:21.2039360Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_ops.h' 2025-01-24T02:56:21.2040170Z adding 'torch/include/ATen/ops/_softmax.h' 2025-01-24T02:56:21.2041440Z adding 'torch/include/ATen/ops/_softmax_backward_data.h' 2025-01-24T02:56:21.2042870Z adding 'torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2043290Z adding 'torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h' 2025-01-24T02:56:21.2044570Z adding 'torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h' 2025-01-24T02:56:21.2045390Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta.h' 2025-01-24T02:56:21.2046640Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h' 2025-01-24T02:56:21.2047240Z adding 'torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h' 2025-01-24T02:56:21.2048510Z adding 'torch/include/ATen/ops/_softmax_backward_data_native.h' 2025-01-24T02:56:21.2049750Z adding 'torch/include/ATen/ops/_softmax_backward_data_ops.h' 2025-01-24T02:56:21.2050750Z adding 'torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2051810Z adding 'torch/include/ATen/ops/_softmax_cpu_dispatch.h' 2025-01-24T02:56:21.2052690Z adding 'torch/include/ATen/ops/_softmax_cuda_dispatch.h' 2025-01-24T02:56:21.2053870Z adding 'torch/include/ATen/ops/_softmax_meta.h' 2025-01-24T02:56:21.2054440Z adding 'torch/include/ATen/ops/_softmax_meta_dispatch.h' 2025-01-24T02:56:21.2055690Z adding 'torch/include/ATen/ops/_softmax_mps_dispatch.h' 2025-01-24T02:56:21.2056550Z adding 'torch/include/ATen/ops/_softmax_native.h' 2025-01-24T02:56:21.2057780Z adding 'torch/include/ATen/ops/_softmax_ops.h' 2025-01-24T02:56:21.2058750Z adding 'torch/include/ATen/ops/_sparse_addmm.h' 2025-01-24T02:56:21.2060070Z adding 'torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2060660Z adding 'torch/include/ATen/ops/_sparse_addmm_native.h' 2025-01-24T02:56:21.2062050Z adding 'torch/include/ATen/ops/_sparse_addmm_ops.h' 2025-01-24T02:56:21.2063110Z adding 'torch/include/ATen/ops/_sparse_broadcast_to.h' 2025-01-24T02:56:21.2063990Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy.h' 2025-01-24T02:56:21.2065350Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2066070Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2067220Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h' 2025-01-24T02:56:21.2068070Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h' 2025-01-24T02:56:21.2069270Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_native.h' 2025-01-24T02:56:21.2070130Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_ops.h' 2025-01-24T02:56:21.2071350Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h' 2025-01-24T02:56:21.2072350Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2073450Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h' 2025-01-24T02:56:21.2074680Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h' 2025-01-24T02:56:21.2075570Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h' 2025-01-24T02:56:21.2076870Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2077970Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h' 2025-01-24T02:56:21.2078860Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h' 2025-01-24T02:56:21.2080300Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h' 2025-01-24T02:56:21.2081650Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2082140Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h' 2025-01-24T02:56:21.2083530Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h' 2025-01-24T02:56:21.2084730Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h' 2025-01-24T02:56:21.2085730Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2086870Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h' 2025-01-24T02:56:21.2087560Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h' 2025-01-24T02:56:21.2089020Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h' 2025-01-24T02:56:21.2090370Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2090910Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h' 2025-01-24T02:56:21.2092270Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h' 2025-01-24T02:56:21.2093490Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h' 2025-01-24T02:56:21.2094980Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h' 2025-01-24T02:56:21.2096330Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2096980Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h' 2025-01-24T02:56:21.2098260Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h' 2025-01-24T02:56:21.2099470Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h' 2025-01-24T02:56:21.2100410Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2101550Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h' 2025-01-24T02:56:21.2102420Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h' 2025-01-24T02:56:21.2103660Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h' 2025-01-24T02:56:21.2104850Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h' 2025-01-24T02:56:21.2105940Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2106500Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h' 2025-01-24T02:56:21.2107860Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h' 2025-01-24T02:56:21.2108670Z adding 'torch/include/ATen/ops/_sparse_csr_prod.h' 2025-01-24T02:56:21.2110030Z adding 'torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2110640Z adding 'torch/include/ATen/ops/_sparse_csr_prod_native.h' 2025-01-24T02:56:21.2112010Z adding 'torch/include/ATen/ops/_sparse_csr_prod_ops.h' 2025-01-24T02:56:21.2113190Z adding 'torch/include/ATen/ops/_sparse_csr_sum.h' 2025-01-24T02:56:21.2114370Z adding 'torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2114810Z adding 'torch/include/ATen/ops/_sparse_csr_sum_native.h' 2025-01-24T02:56:21.2116180Z adding 'torch/include/ATen/ops/_sparse_csr_sum_ops.h' 2025-01-24T02:56:21.2117410Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h' 2025-01-24T02:56:21.2118420Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2119560Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h' 2025-01-24T02:56:21.2120270Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h' 2025-01-24T02:56:21.2121540Z adding 'torch/include/ATen/ops/_sparse_log_softmax.h' 2025-01-24T02:56:21.2122800Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data.h' 2025-01-24T02:56:21.2123800Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2124930Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h' 2025-01-24T02:56:21.2125780Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h' 2025-01-24T02:56:21.2127060Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2127770Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2128960Z adding 'torch/include/ATen/ops/_sparse_log_softmax_native.h' 2025-01-24T02:56:21.2130160Z adding 'torch/include/ATen/ops/_sparse_log_softmax_ops.h' 2025-01-24T02:56:21.2131020Z adding 'torch/include/ATen/ops/_sparse_mask_projection.h' 2025-01-24T02:56:21.2132370Z adding 'torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2132940Z adding 'torch/include/ATen/ops/_sparse_mask_projection_native.h' 2025-01-24T02:56:21.2134330Z adding 'torch/include/ATen/ops/_sparse_mask_projection_ops.h' 2025-01-24T02:56:21.2135480Z adding 'torch/include/ATen/ops/_sparse_mm.h' 2025-01-24T02:56:21.2136470Z adding 'torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2137220Z adding 'torch/include/ATen/ops/_sparse_mm_native.h' 2025-01-24T02:56:21.2138500Z adding 'torch/include/ATen/ops/_sparse_mm_ops.h' 2025-01-24T02:56:21.2139730Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl.h' 2025-01-24T02:56:21.2140640Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h' 2025-01-24T02:56:21.2141890Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h' 2025-01-24T02:56:21.2143090Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h' 2025-01-24T02:56:21.2143940Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h' 2025-01-24T02:56:21.2145130Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h' 2025-01-24T02:56:21.2146010Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm.h' 2025-01-24T02:56:21.2147310Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h' 2025-01-24T02:56:21.2147960Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h' 2025-01-24T02:56:21.2156180Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h' 2025-01-24T02:56:21.2157020Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply.h' 2025-01-24T02:56:21.2158290Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h' 2025-01-24T02:56:21.2162630Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h' 2025-01-24T02:56:21.2163040Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h' 2025-01-24T02:56:21.2163340Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h' 2025-01-24T02:56:21.2163580Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h' 2025-01-24T02:56:21.2163810Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_native.h' 2025-01-24T02:56:21.2164020Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h' 2025-01-24T02:56:21.2165470Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear.h' 2025-01-24T02:56:21.2166150Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h' 2025-01-24T02:56:21.2167450Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_native.h' 2025-01-24T02:56:21.2168650Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h' 2025-01-24T02:56:21.2169180Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm.h' 2025-01-24T02:56:21.2170620Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h' 2025-01-24T02:56:21.2171270Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_native.h' 2025-01-24T02:56:21.2172630Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h' 2025-01-24T02:56:21.2173850Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile.h' 2025-01-24T02:56:21.2174770Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h' 2025-01-24T02:56:21.2175990Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_native.h' 2025-01-24T02:56:21.2176870Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h' 2025-01-24T02:56:21.2178020Z adding 'torch/include/ATen/ops/_sparse_softmax.h' 2025-01-24T02:56:21.2179110Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data.h' 2025-01-24T02:56:21.2180120Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2181230Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_native.h' 2025-01-24T02:56:21.2182090Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h' 2025-01-24T02:56:21.2183370Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2184230Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2185330Z adding 'torch/include/ATen/ops/_sparse_softmax_native.h' 2025-01-24T02:56:21.2186740Z adding 'torch/include/ATen/ops/_sparse_softmax_ops.h' 2025-01-24T02:56:21.2187270Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul.h' 2025-01-24T02:56:21.2188700Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2189280Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_native.h' 2025-01-24T02:56:21.2190650Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_ops.h' 2025-01-24T02:56:21.2191830Z adding 'torch/include/ATen/ops/_sparse_sum.h' 2025-01-24T02:56:21.2192720Z adding 'torch/include/ATen/ops/_sparse_sum_backward.h' 2025-01-24T02:56:21.2194060Z adding 'torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2194540Z adding 'torch/include/ATen/ops/_sparse_sum_backward_native.h' 2025-01-24T02:56:21.2195880Z adding 'torch/include/ATen/ops/_sparse_sum_backward_ops.h' 2025-01-24T02:56:21.2196860Z adding 'torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2198100Z adding 'torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2198700Z adding 'torch/include/ATen/ops/_sparse_sum_native.h' 2025-01-24T02:56:21.2200240Z adding 'torch/include/ATen/ops/_sparse_sum_ops.h' 2025-01-24T02:56:21.2201310Z adding 'torch/include/ATen/ops/_spdiags.h' 2025-01-24T02:56:21.2202630Z adding 'torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2203090Z adding 'torch/include/ATen/ops/_spdiags_cpu_dispatch.h' 2025-01-24T02:56:21.2204350Z adding 'torch/include/ATen/ops/_spdiags_native.h' 2025-01-24T02:56:21.2205470Z adding 'torch/include/ATen/ops/_spdiags_ops.h' 2025-01-24T02:56:21.2206370Z adding 'torch/include/ATen/ops/_spsolve.h' 2025-01-24T02:56:21.2207420Z adding 'torch/include/ATen/ops/_spsolve_native.h' 2025-01-24T02:56:21.2208440Z adding 'torch/include/ATen/ops/_spsolve_ops.h' 2025-01-24T02:56:21.2209310Z adding 'torch/include/ATen/ops/_stack.h' 2025-01-24T02:56:21.2210640Z adding 'torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2211420Z adding 'torch/include/ATen/ops/_stack_cpu_dispatch.h' 2025-01-24T02:56:21.2212580Z adding 'torch/include/ATen/ops/_stack_native.h' 2025-01-24T02:56:21.2213450Z adding 'torch/include/ATen/ops/_stack_ops.h' 2025-01-24T02:56:21.2214660Z adding 'torch/include/ATen/ops/_standard_gamma.h' 2025-01-24T02:56:21.2215710Z adding 'torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2216850Z adding 'torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h' 2025-01-24T02:56:21.2217420Z adding 'torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h' 2025-01-24T02:56:21.2218710Z adding 'torch/include/ATen/ops/_standard_gamma_grad.h' 2025-01-24T02:56:21.2219720Z adding 'torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2220900Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h' 2025-01-24T02:56:21.2221400Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h' 2025-01-24T02:56:21.2222660Z adding 'torch/include/ATen/ops/_standard_gamma_grad_native.h' 2025-01-24T02:56:21.2223870Z adding 'torch/include/ATen/ops/_standard_gamma_grad_ops.h' 2025-01-24T02:56:21.2224700Z adding 'torch/include/ATen/ops/_standard_gamma_native.h' 2025-01-24T02:56:21.2225910Z adding 'torch/include/ATen/ops/_standard_gamma_ops.h' 2025-01-24T02:56:21.2226810Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults.h' 2025-01-24T02:56:21.2228150Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2228660Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_native.h' 2025-01-24T02:56:21.2230020Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_ops.h' 2025-01-24T02:56:21.2231250Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch.h' 2025-01-24T02:56:21.2231980Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2233370Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2233890Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h' 2025-01-24T02:56:21.2235270Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h' 2025-01-24T02:56:21.2236150Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h' 2025-01-24T02:56:21.2237510Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2238040Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h' 2025-01-24T02:56:21.2239490Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2240290Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2241480Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h' 2025-01-24T02:56:21.2242200Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h' 2025-01-24T02:56:21.2243460Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h' 2025-01-24T02:56:21.2244330Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h' 2025-01-24T02:56:21.2245480Z adding 'torch/include/ATen/ops/_test_check_tensor.h' 2025-01-24T02:56:21.2246490Z adding 'torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2247250Z adding 'torch/include/ATen/ops/_test_check_tensor_native.h' 2025-01-24T02:56:21.2248460Z adding 'torch/include/ATen/ops/_test_check_tensor_ops.h' 2025-01-24T02:56:21.2249340Z adding 'torch/include/ATen/ops/_test_functorch_fallback.h' 2025-01-24T02:56:21.2250670Z adding 'torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2251300Z adding 'torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h' 2025-01-24T02:56:21.2252520Z adding 'torch/include/ATen/ops/_test_functorch_fallback_native.h' 2025-01-24T02:56:21.2253690Z adding 'torch/include/ATen/ops/_test_functorch_fallback_ops.h' 2025-01-24T02:56:21.2254540Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist.h' 2025-01-24T02:56:21.2255900Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2256510Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h' 2025-01-24T02:56:21.2257800Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_native.h' 2025-01-24T02:56:21.2258650Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_ops.h' 2025-01-24T02:56:21.2259820Z adding 'torch/include/ATen/ops/_test_optional_floatlist.h' 2025-01-24T02:56:21.2261180Z adding 'torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2261600Z adding 'torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h' 2025-01-24T02:56:21.2262860Z adding 'torch/include/ATen/ops/_test_optional_floatlist_native.h' 2025-01-24T02:56:21.2264060Z adding 'torch/include/ATen/ops/_test_optional_floatlist_ops.h' 2025-01-24T02:56:21.2264930Z adding 'torch/include/ATen/ops/_test_optional_intlist.h' 2025-01-24T02:56:21.2266330Z adding 'torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2266820Z adding 'torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h' 2025-01-24T02:56:21.2268030Z adding 'torch/include/ATen/ops/_test_optional_intlist_native.h' 2025-01-24T02:56:21.2269220Z adding 'torch/include/ATen/ops/_test_optional_intlist_ops.h' 2025-01-24T02:56:21.2269870Z adding 'torch/include/ATen/ops/_test_parallel_materialize.h' 2025-01-24T02:56:21.2271340Z adding 'torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2271830Z adding 'torch/include/ATen/ops/_test_parallel_materialize_native.h' 2025-01-24T02:56:21.2273170Z adding 'torch/include/ATen/ops/_test_parallel_materialize_ops.h' 2025-01-24T02:56:21.2274030Z adding 'torch/include/ATen/ops/_test_serialization_subcmul.h' 2025-01-24T02:56:21.2275380Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2275990Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_native.h' 2025-01-24T02:56:21.2277430Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_ops.h' 2025-01-24T02:56:21.2278570Z adding 'torch/include/ATen/ops/_test_string_default.h' 2025-01-24T02:56:21.2279590Z adding 'torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2280270Z adding 'torch/include/ATen/ops/_test_string_default_native.h' 2025-01-24T02:56:21.2281640Z adding 'torch/include/ATen/ops/_test_string_default_ops.h' 2025-01-24T02:56:21.2282580Z adding 'torch/include/ATen/ops/_test_warn_in_autograd.h' 2025-01-24T02:56:21.2284080Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2284410Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_native.h' 2025-01-24T02:56:21.2285750Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_ops.h' 2025-01-24T02:56:21.2287020Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h' 2025-01-24T02:56:21.2287770Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2288930Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h' 2025-01-24T02:56:21.2289770Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h' 2025-01-24T02:56:21.2291130Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h' 2025-01-24T02:56:21.2292200Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2292890Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h' 2025-01-24T02:56:21.2294250Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h' 2025-01-24T02:56:21.2295370Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell.h' 2025-01-24T02:56:21.2296270Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h' 2025-01-24T02:56:21.2297630Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2298340Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h' 2025-01-24T02:56:21.2299560Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h' 2025-01-24T02:56:21.2300810Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h' 2025-01-24T02:56:21.2301740Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2302870Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h' 2025-01-24T02:56:21.2303500Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_native.h' 2025-01-24T02:56:21.2304910Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h' 2025-01-24T02:56:21.2306300Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell.h' 2025-01-24T02:56:21.2306800Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h' 2025-01-24T02:56:21.2308230Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2309340Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h' 2025-01-24T02:56:21.2310350Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2311510Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h' 2025-01-24T02:56:21.2312010Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h' 2025-01-24T02:56:21.2313490Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h' 2025-01-24T02:56:21.2314350Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h' 2025-01-24T02:56:21.2315540Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h' 2025-01-24T02:56:21.2316840Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2317360Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h' 2025-01-24T02:56:21.2318690Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h' 2025-01-24T02:56:21.2319890Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h' 2025-01-24T02:56:21.2321050Z adding 'torch/include/ATen/ops/_to_copy.h' 2025-01-24T02:56:21.2322070Z adding 'torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2323180Z adding 'torch/include/ATen/ops/_to_copy_native.h' 2025-01-24T02:56:21.2324230Z adding 'torch/include/ATen/ops/_to_copy_ops.h' 2025-01-24T02:56:21.2325400Z adding 'torch/include/ATen/ops/_to_cpu.h' 2025-01-24T02:56:21.2326420Z adding 'torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2327500Z adding 'torch/include/ATen/ops/_to_cpu_native.h' 2025-01-24T02:56:21.2328550Z adding 'torch/include/ATen/ops/_to_cpu_ops.h' 2025-01-24T02:56:21.2329400Z adding 'torch/include/ATen/ops/_to_dense.h' 2025-01-24T02:56:21.2334010Z adding 'torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2334290Z adding 'torch/include/ATen/ops/_to_dense_native.h' 2025-01-24T02:56:21.2334430Z adding 'torch/include/ATen/ops/_to_dense_ops.h' 2025-01-24T02:56:21.2334570Z adding 'torch/include/ATen/ops/_to_sparse.h' 2025-01-24T02:56:21.2334770Z adding 'torch/include/ATen/ops/_to_sparse_bsc.h' 2025-01-24T02:56:21.2336250Z adding 'torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2337390Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h' 2025-01-24T02:56:21.2338270Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h' 2025-01-24T02:56:21.2339450Z adding 'torch/include/ATen/ops/_to_sparse_bsc_native.h' 2025-01-24T02:56:21.2340370Z adding 'torch/include/ATen/ops/_to_sparse_bsc_ops.h' 2025-01-24T02:56:21.2341590Z adding 'torch/include/ATen/ops/_to_sparse_bsr.h' 2025-01-24T02:56:21.2342320Z adding 'torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2343510Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h' 2025-01-24T02:56:21.2344400Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h' 2025-01-24T02:56:21.2345270Z adding 'torch/include/ATen/ops/_to_sparse_bsr_native.h' 2025-01-24T02:56:21.2346530Z adding 'torch/include/ATen/ops/_to_sparse_bsr_ops.h' 2025-01-24T02:56:21.2347890Z adding 'torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2348320Z adding 'torch/include/ATen/ops/_to_sparse_cpu_dispatch.h' 2025-01-24T02:56:21.2349650Z adding 'torch/include/ATen/ops/_to_sparse_csc.h' 2025-01-24T02:56:21.2350810Z adding 'torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2351400Z adding 'torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h' 2025-01-24T02:56:21.2352730Z adding 'torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h' 2025-01-24T02:56:21.2353560Z adding 'torch/include/ATen/ops/_to_sparse_csc_native.h' 2025-01-24T02:56:21.2354780Z adding 'torch/include/ATen/ops/_to_sparse_csc_ops.h' 2025-01-24T02:56:21.2355830Z adding 'torch/include/ATen/ops/_to_sparse_csr.h' 2025-01-24T02:56:21.2356570Z adding 'torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2357720Z adding 'torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h' 2025-01-24T02:56:21.2358610Z adding 'torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h' 2025-01-24T02:56:21.2359780Z adding 'torch/include/ATen/ops/_to_sparse_csr_native.h' 2025-01-24T02:56:21.2360680Z adding 'torch/include/ATen/ops/_to_sparse_csr_ops.h' 2025-01-24T02:56:21.2361950Z adding 'torch/include/ATen/ops/_to_sparse_cuda_dispatch.h' 2025-01-24T02:56:21.2363160Z adding 'torch/include/ATen/ops/_to_sparse_native.h' 2025-01-24T02:56:21.2364250Z adding 'torch/include/ATen/ops/_to_sparse_ops.h' 2025-01-24T02:56:21.2365350Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured.h' 2025-01-24T02:56:21.2366280Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h' 2025-01-24T02:56:21.2367460Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_native.h' 2025-01-24T02:56:21.2368320Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_ops.h' 2025-01-24T02:56:21.2369530Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv.h' 2025-01-24T02:56:21.2370920Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2371410Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h' 2025-01-24T02:56:21.2372640Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h' 2025-01-24T02:56:21.2373520Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h' 2025-01-24T02:56:21.2374760Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h' 2025-01-24T02:56:21.2376020Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd.h' 2025-01-24T02:56:21.2377380Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2378010Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h' 2025-01-24T02:56:21.2379310Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h' 2025-01-24T02:56:21.2380490Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h' 2025-01-24T02:56:21.2381680Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h' 2025-01-24T02:56:21.2382840Z adding 'torch/include/ATen/ops/_trilinear.h' 2025-01-24T02:56:21.2383870Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2385120Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2385550Z adding 'torch/include/ATen/ops/_trilinear_native.h' 2025-01-24T02:56:21.2386970Z adding 'torch/include/ATen/ops/_trilinear_ops.h' 2025-01-24T02:56:21.2388240Z adding 'torch/include/ATen/ops/_triton_multi_head_attention.h' 2025-01-24T02:56:21.2389240Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2390370Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h' 2025-01-24T02:56:21.2391260Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_native.h' 2025-01-24T02:56:21.2392530Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_ops.h' 2025-01-24T02:56:21.2393730Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention.h' 2025-01-24T02:56:21.2394500Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2395800Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h' 2025-01-24T02:56:21.2397060Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_native.h' 2025-01-24T02:56:21.2398270Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h' 2025-01-24T02:56:21.2399390Z adding 'torch/include/ATen/ops/_unique.h' 2025-01-24T02:56:21.2400600Z adding 'torch/include/ATen/ops/_unique2.h' 2025-01-24T02:56:21.2401580Z adding 'torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2402710Z adding 'torch/include/ATen/ops/_unique2_cpu_dispatch.h' 2025-01-24T02:56:21.2403350Z adding 'torch/include/ATen/ops/_unique2_cuda_dispatch.h' 2025-01-24T02:56:21.2404500Z adding 'torch/include/ATen/ops/_unique2_mps_dispatch.h' 2025-01-24T02:56:21.2405360Z adding 'torch/include/ATen/ops/_unique2_native.h' 2025-01-24T02:56:21.2406650Z adding 'torch/include/ATen/ops/_unique2_ops.h' 2025-01-24T02:56:21.2407630Z adding 'torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2408770Z adding 'torch/include/ATen/ops/_unique_cpu_dispatch.h' 2025-01-24T02:56:21.2409400Z adding 'torch/include/ATen/ops/_unique_cuda_dispatch.h' 2025-01-24T02:56:21.2410740Z adding 'torch/include/ATen/ops/_unique_native.h' 2025-01-24T02:56:21.2411850Z adding 'torch/include/ATen/ops/_unique_ops.h' 2025-01-24T02:56:21.2412430Z adding 'torch/include/ATen/ops/_unpack_dual.h' 2025-01-24T02:56:21.2413820Z adding 'torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2414380Z adding 'torch/include/ATen/ops/_unpack_dual_native.h' 2025-01-24T02:56:21.2415710Z adding 'torch/include/ATen/ops/_unpack_dual_ops.h' 2025-01-24T02:56:21.2416900Z adding 'torch/include/ATen/ops/_unsafe_index.h' 2025-01-24T02:56:21.2417610Z adding 'torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2418740Z adding 'torch/include/ATen/ops/_unsafe_index_native.h' 2025-01-24T02:56:21.2419960Z adding 'torch/include/ATen/ops/_unsafe_index_ops.h' 2025-01-24T02:56:21.2420570Z adding 'torch/include/ATen/ops/_unsafe_index_put.h' 2025-01-24T02:56:21.2422040Z adding 'torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2422680Z adding 'torch/include/ATen/ops/_unsafe_index_put_native.h' 2025-01-24T02:56:21.2424020Z adding 'torch/include/ATen/ops/_unsafe_index_put_ops.h' 2025-01-24T02:56:21.2424880Z adding 'torch/include/ATen/ops/_unsafe_masked_index.h' 2025-01-24T02:56:21.2426240Z adding 'torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2427700Z adding 'torch/include/ATen/ops/_unsafe_masked_index_native.h' 2025-01-24T02:56:21.2429190Z adding 'torch/include/ATen/ops/_unsafe_masked_index_ops.h' 2025-01-24T02:56:21.2430570Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h' 2025-01-24T02:56:21.2432000Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2433140Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h' 2025-01-24T02:56:21.2434340Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h' 2025-01-24T02:56:21.2435550Z adding 'torch/include/ATen/ops/_unsafe_view.h' 2025-01-24T02:56:21.2436890Z adding 'torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2438000Z adding 'torch/include/ATen/ops/_unsafe_view_native.h' 2025-01-24T02:56:21.2439070Z adding 'torch/include/ATen/ops/_unsafe_view_ops.h' 2025-01-24T02:56:21.2440620Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa.h' 2025-01-24T02:56:21.2442130Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h' 2025-01-24T02:56:21.2443600Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2444370Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h' 2025-01-24T02:56:21.2445760Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h' 2025-01-24T02:56:21.2446940Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h' 2025-01-24T02:56:21.2447870Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h' 2025-01-24T02:56:21.2449150Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h' 2025-01-24T02:56:21.2450420Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h' 2025-01-24T02:56:21.2451790Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2453000Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2454160Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h' 2025-01-24T02:56:21.2455050Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h' 2025-01-24T02:56:21.2456270Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h' 2025-01-24T02:56:21.2457400Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h' 2025-01-24T02:56:21.2458590Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h' 2025-01-24T02:56:21.2459800Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h' 2025-01-24T02:56:21.2461290Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa.h' 2025-01-24T02:56:21.2462780Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h' 2025-01-24T02:56:21.2464210Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2464890Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h' 2025-01-24T02:56:21.2466330Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h' 2025-01-24T02:56:21.2467540Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h' 2025-01-24T02:56:21.2468440Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h' 2025-01-24T02:56:21.2469770Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h' 2025-01-24T02:56:21.2471020Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h' 2025-01-24T02:56:21.2472410Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2473150Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2474470Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h' 2025-01-24T02:56:21.2475690Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h' 2025-01-24T02:56:21.2476340Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h' 2025-01-24T02:56:21.2477740Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h' 2025-01-24T02:56:21.2478970Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h' 2025-01-24T02:56:21.2480190Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h' 2025-01-24T02:56:21.2481480Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d.h' 2025-01-24T02:56:21.2482900Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h' 2025-01-24T02:56:21.2484350Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2484970Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.2486370Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.2487600Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h' 2025-01-24T02:56:21.2488820Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h' 2025-01-24T02:56:21.2489690Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h' 2025-01-24T02:56:21.2490930Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h' 2025-01-24T02:56:21.2492190Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h' 2025-01-24T02:56:21.2493560Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2494770Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2495900Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h' 2025-01-24T02:56:21.2497120Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h' 2025-01-24T02:56:21.2497810Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h' 2025-01-24T02:56:21.2499180Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h' 2025-01-24T02:56:21.2500080Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h' 2025-01-24T02:56:21.2501290Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_native.h' 2025-01-24T02:56:21.2502520Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h' 2025-01-24T02:56:21.2503960Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d.h' 2025-01-24T02:56:21.2505420Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h' 2025-01-24T02:56:21.2506850Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2507550Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.2508930Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.2510150Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h' 2025-01-24T02:56:21.2511100Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h' 2025-01-24T02:56:21.2512430Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h' 2025-01-24T02:56:21.2513280Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h' 2025-01-24T02:56:21.2514680Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h' 2025-01-24T02:56:21.2519200Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2519670Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2519900Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h' 2025-01-24T02:56:21.2520140Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h' 2025-01-24T02:56:21.2520340Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h' 2025-01-24T02:56:21.2521460Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h' 2025-01-24T02:56:21.2522330Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h' 2025-01-24T02:56:21.2523690Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_native.h' 2025-01-24T02:56:21.2525000Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h' 2025-01-24T02:56:21.2526470Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d.h' 2025-01-24T02:56:21.2528370Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h' 2025-01-24T02:56:21.2529890Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2531060Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.2532280Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.2533000Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h' 2025-01-24T02:56:21.2534440Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h' 2025-01-24T02:56:21.2535640Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h' 2025-01-24T02:56:21.2536890Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h' 2025-01-24T02:56:21.2537660Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2539000Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2540130Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h' 2025-01-24T02:56:21.2541410Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h' 2025-01-24T02:56:21.2541900Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h' 2025-01-24T02:56:21.2543300Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h' 2025-01-24T02:56:21.2544510Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_native.h' 2025-01-24T02:56:21.2545700Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h' 2025-01-24T02:56:21.2546530Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss.h' 2025-01-24T02:56:21.2547830Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h' 2025-01-24T02:56:21.2548500Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h' 2025-01-24T02:56:21.2549910Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h' 2025-01-24T02:56:21.2550800Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h' 2025-01-24T02:56:21.2552180Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2552750Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h' 2025-01-24T02:56:21.2554080Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h' 2025-01-24T02:56:21.2554980Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices.h' 2025-01-24T02:56:21.2556250Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h' 2025-01-24T02:56:21.2556930Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h' 2025-01-24T02:56:21.2558240Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h' 2025-01-24T02:56:21.2559480Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h' 2025-01-24T02:56:21.2560080Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h' 2025-01-24T02:56:21.2561490Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2562110Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h' 2025-01-24T02:56:21.2563400Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h' 2025-01-24T02:56:21.2564310Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h' 2025-01-24T02:56:21.2565680Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2566340Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h' 2025-01-24T02:56:21.2567740Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h' 2025-01-24T02:56:21.2568980Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h' 2025-01-24T02:56:21.2570070Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2570750Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h' 2025-01-24T02:56:21.2572070Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h' 2025-01-24T02:56:21.2572940Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h' 2025-01-24T02:56:21.2574060Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2575230Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h' 2025-01-24T02:56:21.2575830Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h' 2025-01-24T02:56:21.2577150Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h' 2025-01-24T02:56:21.2578130Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2579260Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h' 2025-01-24T02:56:21.2579890Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h' 2025-01-24T02:56:21.2581210Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h' 2025-01-24T02:56:21.2582220Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2582890Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h' 2025-01-24T02:56:21.2584210Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h' 2025-01-24T02:56:21.2584970Z adding 'torch/include/ATen/ops/_values.h' 2025-01-24T02:56:21.2586180Z adding 'torch/include/ATen/ops/_values_copy.h' 2025-01-24T02:56:21.2587190Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2588470Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2588820Z adding 'torch/include/ATen/ops/_values_copy_native.h' 2025-01-24T02:56:21.2590160Z adding 'torch/include/ATen/ops/_values_copy_ops.h' 2025-01-24T02:56:21.2591010Z adding 'torch/include/ATen/ops/_values_native.h' 2025-01-24T02:56:21.2592230Z adding 'torch/include/ATen/ops/_values_ops.h' 2025-01-24T02:56:21.2593080Z adding 'torch/include/ATen/ops/_version.h' 2025-01-24T02:56:21.2594090Z adding 'torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2595180Z adding 'torch/include/ATen/ops/_version_native.h' 2025-01-24T02:56:21.2596220Z adding 'torch/include/ATen/ops/_version_ops.h' 2025-01-24T02:56:21.2596960Z adding 'torch/include/ATen/ops/_weight_int4pack_mm.h' 2025-01-24T02:56:21.2598280Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h' 2025-01-24T02:56:21.2599130Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h' 2025-01-24T02:56:21.2600440Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h' 2025-01-24T02:56:21.2601010Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h' 2025-01-24T02:56:21.2602320Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h' 2025-01-24T02:56:21.2603190Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h' 2025-01-24T02:56:21.2604370Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_native.h' 2025-01-24T02:56:21.2605230Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_ops.h' 2025-01-24T02:56:21.2606180Z adding 'torch/include/ATen/ops/_weight_int8pack_mm.h' 2025-01-24T02:56:21.2607420Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h' 2025-01-24T02:56:21.2608270Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h' 2025-01-24T02:56:21.2609480Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_native.h' 2025-01-24T02:56:21.2610330Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_ops.h' 2025-01-24T02:56:21.2611520Z adding 'torch/include/ATen/ops/_weight_norm.h' 2025-01-24T02:56:21.2612530Z adding 'torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2613680Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward.h' 2025-01-24T02:56:21.2614520Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2615690Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h' 2025-01-24T02:56:21.2616900Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h' 2025-01-24T02:56:21.2617590Z adding 'torch/include/ATen/ops/_weight_norm_interface.h' 2025-01-24T02:56:21.2618910Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward.h' 2025-01-24T02:56:21.2619930Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2621110Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h' 2025-01-24T02:56:21.2621740Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h' 2025-01-24T02:56:21.2622940Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h' 2025-01-24T02:56:21.2623800Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_native.h' 2025-01-24T02:56:21.2625080Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_ops.h' 2025-01-24T02:56:21.2626120Z adding 'torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2627250Z adding 'torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h' 2025-01-24T02:56:21.2628130Z adding 'torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h' 2025-01-24T02:56:21.2629350Z adding 'torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h' 2025-01-24T02:56:21.2629940Z adding 'torch/include/ATen/ops/_weight_norm_interface_native.h' 2025-01-24T02:56:21.2631360Z adding 'torch/include/ATen/ops/_weight_norm_interface_ops.h' 2025-01-24T02:56:21.2632200Z adding 'torch/include/ATen/ops/_weight_norm_native.h' 2025-01-24T02:56:21.2633450Z adding 'torch/include/ATen/ops/_weight_norm_ops.h' 2025-01-24T02:56:21.2634510Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack.h' 2025-01-24T02:56:21.2635300Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2636520Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_native.h' 2025-01-24T02:56:21.2637380Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_ops.h' 2025-01-24T02:56:21.2638620Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h' 2025-01-24T02:56:21.2639630Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2640770Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h' 2025-01-24T02:56:21.2641490Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h' 2025-01-24T02:56:21.2642650Z adding 'torch/include/ATen/ops/abs.h' 2025-01-24T02:56:21.2643610Z adding 'torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2644800Z adding 'torch/include/ATen/ops/abs_cpu_dispatch.h' 2025-01-24T02:56:21.2645400Z adding 'torch/include/ATen/ops/abs_cuda_dispatch.h' 2025-01-24T02:56:21.2646690Z adding 'torch/include/ATen/ops/abs_mps_dispatch.h' 2025-01-24T02:56:21.2647710Z adding 'torch/include/ATen/ops/abs_native.h' 2025-01-24T02:56:21.2648560Z adding 'torch/include/ATen/ops/abs_ops.h' 2025-01-24T02:56:21.2649760Z adding 'torch/include/ATen/ops/absolute.h' 2025-01-24T02:56:21.2651270Z adding 'torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2652010Z adding 'torch/include/ATen/ops/absolute_native.h' 2025-01-24T02:56:21.2653240Z adding 'torch/include/ATen/ops/absolute_ops.h' 2025-01-24T02:56:21.2654090Z adding 'torch/include/ATen/ops/acos.h' 2025-01-24T02:56:21.2655480Z adding 'torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2656050Z adding 'torch/include/ATen/ops/acos_cpu_dispatch.h' 2025-01-24T02:56:21.2657280Z adding 'torch/include/ATen/ops/acos_cuda_dispatch.h' 2025-01-24T02:56:21.2658140Z adding 'torch/include/ATen/ops/acos_meta.h' 2025-01-24T02:56:21.2659090Z adding 'torch/include/ATen/ops/acos_meta_dispatch.h' 2025-01-24T02:56:21.2660290Z adding 'torch/include/ATen/ops/acos_mps_dispatch.h' 2025-01-24T02:56:21.2660880Z adding 'torch/include/ATen/ops/acos_native.h' 2025-01-24T02:56:21.2662230Z adding 'torch/include/ATen/ops/acos_ops.h' 2025-01-24T02:56:21.2663410Z adding 'torch/include/ATen/ops/acosh.h' 2025-01-24T02:56:21.2664200Z adding 'torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2665280Z adding 'torch/include/ATen/ops/acosh_cpu_dispatch.h' 2025-01-24T02:56:21.2666170Z adding 'torch/include/ATen/ops/acosh_cuda_dispatch.h' 2025-01-24T02:56:21.2667350Z adding 'torch/include/ATen/ops/acosh_meta.h' 2025-01-24T02:56:21.2667910Z adding 'torch/include/ATen/ops/acosh_meta_dispatch.h' 2025-01-24T02:56:21.2669130Z adding 'torch/include/ATen/ops/acosh_mps_dispatch.h' 2025-01-24T02:56:21.2669990Z adding 'torch/include/ATen/ops/acosh_native.h' 2025-01-24T02:56:21.2671170Z adding 'torch/include/ATen/ops/acosh_ops.h' 2025-01-24T02:56:21.2672400Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d.h' 2025-01-24T02:56:21.2673420Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2674300Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2675390Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_native.h' 2025-01-24T02:56:21.2676260Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_ops.h' 2025-01-24T02:56:21.2677590Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d.h' 2025-01-24T02:56:21.2678610Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2679740Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h' 2025-01-24T02:56:21.2680610Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h' 2025-01-24T02:56:21.2681820Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h' 2025-01-24T02:56:21.2682400Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_native.h' 2025-01-24T02:56:21.2683710Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_ops.h' 2025-01-24T02:56:21.2684900Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d.h' 2025-01-24T02:56:21.2685810Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward.h' 2025-01-24T02:56:21.2687110Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.2687720Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.2692500Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h' 2025-01-24T02:56:21.2692860Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h' 2025-01-24T02:56:21.2693180Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2693430Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h' 2025-01-24T02:56:21.2693660Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h' 2025-01-24T02:56:21.2693850Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_native.h' 2025-01-24T02:56:21.2695010Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_ops.h' 2025-01-24T02:56:21.2695870Z adding 'torch/include/ATen/ops/adaptive_max_pool1d.h' 2025-01-24T02:56:21.2697240Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2697790Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_native.h' 2025-01-24T02:56:21.2699110Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_ops.h' 2025-01-24T02:56:21.2700320Z adding 'torch/include/ATen/ops/adaptive_max_pool2d.h' 2025-01-24T02:56:21.2701220Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward.h' 2025-01-24T02:56:21.2702360Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2703520Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.2704090Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.2705310Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h' 2025-01-24T02:56:21.2706310Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h' 2025-01-24T02:56:21.2707170Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h' 2025-01-24T02:56:21.2708420Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h' 2025-01-24T02:56:21.2709580Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h' 2025-01-24T02:56:21.2710410Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2711590Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h' 2025-01-24T02:56:21.2712470Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h' 2025-01-24T02:56:21.2713680Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta.h' 2025-01-24T02:56:21.2714270Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h' 2025-01-24T02:56:21.2715460Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h' 2025-01-24T02:56:21.2716310Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_native.h' 2025-01-24T02:56:21.2717550Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_ops.h' 2025-01-24T02:56:21.2718750Z adding 'torch/include/ATen/ops/adaptive_max_pool3d.h' 2025-01-24T02:56:21.2719670Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward.h' 2025-01-24T02:56:21.2721110Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2721480Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.2722760Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.2723430Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h' 2025-01-24T02:56:21.2724730Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h' 2025-01-24T02:56:21.2725570Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h' 2025-01-24T02:56:21.2726810Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h' 2025-01-24T02:56:21.2727880Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2728990Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h' 2025-01-24T02:56:21.2729650Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h' 2025-01-24T02:56:21.2730910Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta.h' 2025-01-24T02:56:21.2731820Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h' 2025-01-24T02:56:21.2733000Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_native.h' 2025-01-24T02:56:21.2733890Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_ops.h' 2025-01-24T02:56:21.2735030Z adding 'torch/include/ATen/ops/add.h' 2025-01-24T02:56:21.2736000Z adding 'torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2737260Z adding 'torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2737840Z adding 'torch/include/ATen/ops/add_cpu_dispatch.h' 2025-01-24T02:56:21.2739130Z adding 'torch/include/ATen/ops/add_cuda_dispatch.h' 2025-01-24T02:56:21.2740140Z adding 'torch/include/ATen/ops/add_meta.h' 2025-01-24T02:56:21.2741000Z adding 'torch/include/ATen/ops/add_meta_dispatch.h' 2025-01-24T02:56:21.2742210Z adding 'torch/include/ATen/ops/add_mps_dispatch.h' 2025-01-24T02:56:21.2743270Z adding 'torch/include/ATen/ops/add_native.h' 2025-01-24T02:56:21.2744610Z adding 'torch/include/ATen/ops/add_ops.h' 2025-01-24T02:56:21.2745440Z adding 'torch/include/ATen/ops/addbmm.h' 2025-01-24T02:56:21.2746680Z adding 'torch/include/ATen/ops/addbmm_cpu_dispatch.h' 2025-01-24T02:56:21.2747550Z adding 'torch/include/ATen/ops/addbmm_cuda_dispatch.h' 2025-01-24T02:56:21.2748770Z adding 'torch/include/ATen/ops/addbmm_meta_dispatch.h' 2025-01-24T02:56:21.2749400Z adding 'torch/include/ATen/ops/addbmm_mps_dispatch.h' 2025-01-24T02:56:21.2750670Z adding 'torch/include/ATen/ops/addbmm_native.h' 2025-01-24T02:56:21.2751870Z adding 'torch/include/ATen/ops/addbmm_ops.h' 2025-01-24T02:56:21.2753050Z adding 'torch/include/ATen/ops/addcdiv.h' 2025-01-24T02:56:21.2753950Z adding 'torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2755060Z adding 'torch/include/ATen/ops/addcdiv_cpu_dispatch.h' 2025-01-24T02:56:21.2755940Z adding 'torch/include/ATen/ops/addcdiv_cuda_dispatch.h' 2025-01-24T02:56:21.2756780Z adding 'torch/include/ATen/ops/addcdiv_meta.h' 2025-01-24T02:56:21.2758010Z adding 'torch/include/ATen/ops/addcdiv_meta_dispatch.h' 2025-01-24T02:56:21.2758870Z adding 'torch/include/ATen/ops/addcdiv_mps_dispatch.h' 2025-01-24T02:56:21.2759750Z adding 'torch/include/ATen/ops/addcdiv_native.h' 2025-01-24T02:56:21.2761040Z adding 'torch/include/ATen/ops/addcdiv_ops.h' 2025-01-24T02:56:21.2762250Z adding 'torch/include/ATen/ops/addcmul.h' 2025-01-24T02:56:21.2763030Z adding 'torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2764170Z adding 'torch/include/ATen/ops/addcmul_cpu_dispatch.h' 2025-01-24T02:56:21.2765050Z adding 'torch/include/ATen/ops/addcmul_cuda_dispatch.h' 2025-01-24T02:56:21.2766240Z adding 'torch/include/ATen/ops/addcmul_meta.h' 2025-01-24T02:56:21.2766750Z adding 'torch/include/ATen/ops/addcmul_meta_dispatch.h' 2025-01-24T02:56:21.2768020Z adding 'torch/include/ATen/ops/addcmul_mps_dispatch.h' 2025-01-24T02:56:21.2768870Z adding 'torch/include/ATen/ops/addcmul_native.h' 2025-01-24T02:56:21.2770140Z adding 'torch/include/ATen/ops/addcmul_ops.h' 2025-01-24T02:56:21.2771310Z adding 'torch/include/ATen/ops/addmm.h' 2025-01-24T02:56:21.2772340Z adding 'torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2773400Z adding 'torch/include/ATen/ops/addmm_cpu_dispatch.h' 2025-01-24T02:56:21.2773940Z adding 'torch/include/ATen/ops/addmm_cuda_dispatch.h' 2025-01-24T02:56:21.2775200Z adding 'torch/include/ATen/ops/addmm_meta.h' 2025-01-24T02:56:21.2776080Z adding 'torch/include/ATen/ops/addmm_meta_dispatch.h' 2025-01-24T02:56:21.2777280Z adding 'torch/include/ATen/ops/addmm_mps_dispatch.h' 2025-01-24T02:56:21.2778300Z adding 'torch/include/ATen/ops/addmm_native.h' 2025-01-24T02:56:21.2779500Z adding 'torch/include/ATen/ops/addmm_ops.h' 2025-01-24T02:56:21.2780680Z adding 'torch/include/ATen/ops/addmv.h' 2025-01-24T02:56:21.2781710Z adding 'torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2782770Z adding 'torch/include/ATen/ops/addmv_cpu_dispatch.h' 2025-01-24T02:56:21.2783320Z adding 'torch/include/ATen/ops/addmv_cuda_dispatch.h' 2025-01-24T02:56:21.2784530Z adding 'torch/include/ATen/ops/addmv_meta.h' 2025-01-24T02:56:21.2785450Z adding 'torch/include/ATen/ops/addmv_meta_dispatch.h' 2025-01-24T02:56:21.2786670Z adding 'torch/include/ATen/ops/addmv_mps_dispatch.h' 2025-01-24T02:56:21.2787220Z adding 'torch/include/ATen/ops/addmv_native.h' 2025-01-24T02:56:21.2788660Z adding 'torch/include/ATen/ops/addmv_ops.h' 2025-01-24T02:56:21.2789870Z adding 'torch/include/ATen/ops/addr.h' 2025-01-24T02:56:21.2790860Z adding 'torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2791990Z adding 'torch/include/ATen/ops/addr_cpu_dispatch.h' 2025-01-24T02:56:21.2792900Z adding 'torch/include/ATen/ops/addr_cuda_dispatch.h' 2025-01-24T02:56:21.2794180Z adding 'torch/include/ATen/ops/addr_mps_dispatch.h' 2025-01-24T02:56:21.2795210Z adding 'torch/include/ATen/ops/addr_native.h' 2025-01-24T02:56:21.2796420Z adding 'torch/include/ATen/ops/addr_ops.h' 2025-01-24T02:56:21.2797260Z adding 'torch/include/ATen/ops/adjoint.h' 2025-01-24T02:56:21.2798590Z adding 'torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2799170Z adding 'torch/include/ATen/ops/adjoint_native.h' 2025-01-24T02:56:21.2800490Z adding 'torch/include/ATen/ops/adjoint_ops.h' 2025-01-24T02:56:21.2801780Z adding 'torch/include/ATen/ops/affine_grid_generator.h' 2025-01-24T02:56:21.2803030Z adding 'torch/include/ATen/ops/affine_grid_generator_backward.h' 2025-01-24T02:56:21.2804050Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2805210Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_native.h' 2025-01-24T02:56:21.2806160Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_ops.h' 2025-01-24T02:56:21.2807480Z adding 'torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2808090Z adding 'torch/include/ATen/ops/affine_grid_generator_native.h' 2025-01-24T02:56:21.2809520Z adding 'torch/include/ATen/ops/affine_grid_generator_ops.h' 2025-01-24T02:56:21.2810680Z adding 'torch/include/ATen/ops/alias.h' 2025-01-24T02:56:21.2811680Z adding 'torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2812820Z adding 'torch/include/ATen/ops/alias_copy.h' 2025-01-24T02:56:21.2813820Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2815090Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2815600Z adding 'torch/include/ATen/ops/alias_copy_native.h' 2025-01-24T02:56:21.2817000Z adding 'torch/include/ATen/ops/alias_copy_ops.h' 2025-01-24T02:56:21.2818030Z adding 'torch/include/ATen/ops/alias_native.h' 2025-01-24T02:56:21.2818880Z adding 'torch/include/ATen/ops/alias_ops.h' 2025-01-24T02:56:21.2820060Z adding 'torch/include/ATen/ops/align_as.h' 2025-01-24T02:56:21.2821390Z adding 'torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2821800Z adding 'torch/include/ATen/ops/align_as_native.h' 2025-01-24T02:56:21.2823120Z adding 'torch/include/ATen/ops/align_as_ops.h' 2025-01-24T02:56:21.2823980Z adding 'torch/include/ATen/ops/align_tensors.h' 2025-01-24T02:56:21.2825340Z adding 'torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2825870Z adding 'torch/include/ATen/ops/align_tensors_native.h' 2025-01-24T02:56:21.2827210Z adding 'torch/include/ATen/ops/align_tensors_ops.h' 2025-01-24T02:56:21.2828250Z adding 'torch/include/ATen/ops/align_to.h' 2025-01-24T02:56:21.2829580Z adding 'torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2830010Z adding 'torch/include/ATen/ops/align_to_native.h' 2025-01-24T02:56:21.2831360Z adding 'torch/include/ATen/ops/align_to_ops.h' 2025-01-24T02:56:21.2832590Z adding 'torch/include/ATen/ops/all.h' 2025-01-24T02:56:21.2833910Z adding 'torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2834650Z adding 'torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2835970Z adding 'torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2836680Z adding 'torch/include/ATen/ops/all_cpu_dispatch.h' 2025-01-24T02:56:21.2837870Z adding 'torch/include/ATen/ops/all_cuda_dispatch.h' 2025-01-24T02:56:21.2838890Z adding 'torch/include/ATen/ops/all_meta.h' 2025-01-24T02:56:21.2839770Z adding 'torch/include/ATen/ops/all_meta_dispatch.h' 2025-01-24T02:56:21.2840960Z adding 'torch/include/ATen/ops/all_mps_dispatch.h' 2025-01-24T02:56:21.2842030Z adding 'torch/include/ATen/ops/all_native.h' 2025-01-24T02:56:21.2843360Z adding 'torch/include/ATen/ops/all_ops.h' 2025-01-24T02:56:21.2844580Z adding 'torch/include/ATen/ops/allclose.h' 2025-01-24T02:56:21.2845570Z adding 'torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2846330Z adding 'torch/include/ATen/ops/allclose_native.h' 2025-01-24T02:56:21.2847550Z adding 'torch/include/ATen/ops/allclose_ops.h' 2025-01-24T02:56:21.2848420Z adding 'torch/include/ATen/ops/alpha_dropout.h' 2025-01-24T02:56:21.2849780Z adding 'torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2850430Z adding 'torch/include/ATen/ops/alpha_dropout_native.h' 2025-01-24T02:56:21.2851750Z adding 'torch/include/ATen/ops/alpha_dropout_ops.h' 2025-01-24T02:56:21.2852790Z adding 'torch/include/ATen/ops/amax.h' 2025-01-24T02:56:21.2853880Z adding 'torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2855010Z adding 'torch/include/ATen/ops/amax_cpu_dispatch.h' 2025-01-24T02:56:21.2855840Z adding 'torch/include/ATen/ops/amax_cuda_dispatch.h' 2025-01-24T02:56:21.2856900Z adding 'torch/include/ATen/ops/amax_meta.h' 2025-01-24T02:56:21.2857770Z adding 'torch/include/ATen/ops/amax_meta_dispatch.h' 2025-01-24T02:56:21.2858890Z adding 'torch/include/ATen/ops/amax_mps_dispatch.h' 2025-01-24T02:56:21.2863320Z adding 'torch/include/ATen/ops/amax_native.h' 2025-01-24T02:56:21.2863600Z adding 'torch/include/ATen/ops/amax_ops.h' 2025-01-24T02:56:21.2863760Z adding 'torch/include/ATen/ops/amin.h' 2025-01-24T02:56:21.2864080Z adding 'torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2864240Z adding 'torch/include/ATen/ops/amin_cpu_dispatch.h' 2025-01-24T02:56:21.2865000Z adding 'torch/include/ATen/ops/amin_cuda_dispatch.h' 2025-01-24T02:56:21.2866280Z adding 'torch/include/ATen/ops/amin_meta.h' 2025-01-24T02:56:21.2867170Z adding 'torch/include/ATen/ops/amin_meta_dispatch.h' 2025-01-24T02:56:21.2868380Z adding 'torch/include/ATen/ops/amin_mps_dispatch.h' 2025-01-24T02:56:21.2869230Z adding 'torch/include/ATen/ops/amin_native.h' 2025-01-24T02:56:21.2870430Z adding 'torch/include/ATen/ops/amin_ops.h' 2025-01-24T02:56:21.2871640Z adding 'torch/include/ATen/ops/aminmax.h' 2025-01-24T02:56:21.2872690Z adding 'torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2873770Z adding 'torch/include/ATen/ops/aminmax_cpu_dispatch.h' 2025-01-24T02:56:21.2874670Z adding 'torch/include/ATen/ops/aminmax_cuda_dispatch.h' 2025-01-24T02:56:21.2875850Z adding 'torch/include/ATen/ops/aminmax_meta.h' 2025-01-24T02:56:21.2876760Z adding 'torch/include/ATen/ops/aminmax_meta_dispatch.h' 2025-01-24T02:56:21.2877980Z adding 'torch/include/ATen/ops/aminmax_mps_dispatch.h' 2025-01-24T02:56:21.2878830Z adding 'torch/include/ATen/ops/aminmax_native.h' 2025-01-24T02:56:21.2880080Z adding 'torch/include/ATen/ops/aminmax_ops.h' 2025-01-24T02:56:21.2881260Z adding 'torch/include/ATen/ops/and.h' 2025-01-24T02:56:21.2882240Z adding 'torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2883330Z adding 'torch/include/ATen/ops/and_native.h' 2025-01-24T02:56:21.2884510Z adding 'torch/include/ATen/ops/and_ops.h' 2025-01-24T02:56:21.2885350Z adding 'torch/include/ATen/ops/angle.h' 2025-01-24T02:56:21.2886610Z adding 'torch/include/ATen/ops/angle_cpu_dispatch.h' 2025-01-24T02:56:21.2887480Z adding 'torch/include/ATen/ops/angle_cuda_dispatch.h' 2025-01-24T02:56:21.2888730Z adding 'torch/include/ATen/ops/angle_mps_dispatch.h' 2025-01-24T02:56:21.2889950Z adding 'torch/include/ATen/ops/angle_native.h' 2025-01-24T02:56:21.2891190Z adding 'torch/include/ATen/ops/angle_ops.h' 2025-01-24T02:56:21.2892400Z adding 'torch/include/ATen/ops/any.h' 2025-01-24T02:56:21.2893730Z adding 'torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2894680Z adding 'torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2895840Z adding 'torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2896630Z adding 'torch/include/ATen/ops/any_cpu_dispatch.h' 2025-01-24T02:56:21.2897860Z adding 'torch/include/ATen/ops/any_cuda_dispatch.h' 2025-01-24T02:56:21.2898890Z adding 'torch/include/ATen/ops/any_meta.h' 2025-01-24T02:56:21.2899760Z adding 'torch/include/ATen/ops/any_meta_dispatch.h' 2025-01-24T02:56:21.2900970Z adding 'torch/include/ATen/ops/any_mps_dispatch.h' 2025-01-24T02:56:21.2902010Z adding 'torch/include/ATen/ops/any_native.h' 2025-01-24T02:56:21.2903330Z adding 'torch/include/ATen/ops/any_ops.h' 2025-01-24T02:56:21.2904680Z adding 'torch/include/ATen/ops/arange.h' 2025-01-24T02:56:21.2906000Z adding 'torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2906510Z adding 'torch/include/ATen/ops/arange_cpu_dispatch.h' 2025-01-24T02:56:21.2907860Z adding 'torch/include/ATen/ops/arange_cuda_dispatch.h' 2025-01-24T02:56:21.2908550Z adding 'torch/include/ATen/ops/arange_meta_dispatch.h' 2025-01-24T02:56:21.2909680Z adding 'torch/include/ATen/ops/arange_mps_dispatch.h' 2025-01-24T02:56:21.2910600Z adding 'torch/include/ATen/ops/arange_native.h' 2025-01-24T02:56:21.2912060Z adding 'torch/include/ATen/ops/arange_ops.h' 2025-01-24T02:56:21.2913280Z adding 'torch/include/ATen/ops/arccos.h' 2025-01-24T02:56:21.2914030Z adding 'torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2915300Z adding 'torch/include/ATen/ops/arccos_native.h' 2025-01-24T02:56:21.2916380Z adding 'torch/include/ATen/ops/arccos_ops.h' 2025-01-24T02:56:21.2917380Z adding 'torch/include/ATen/ops/arccosh.h' 2025-01-24T02:56:21.2918370Z adding 'torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2919450Z adding 'torch/include/ATen/ops/arccosh_native.h' 2025-01-24T02:56:21.2920460Z adding 'torch/include/ATen/ops/arccosh_ops.h' 2025-01-24T02:56:21.2921330Z adding 'torch/include/ATen/ops/arcsin.h' 2025-01-24T02:56:21.2922710Z adding 'torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2923200Z adding 'torch/include/ATen/ops/arcsin_native.h' 2025-01-24T02:56:21.2924580Z adding 'torch/include/ATen/ops/arcsin_ops.h' 2025-01-24T02:56:21.2925760Z adding 'torch/include/ATen/ops/arcsinh.h' 2025-01-24T02:56:21.2926420Z adding 'torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2927600Z adding 'torch/include/ATen/ops/arcsinh_native.h' 2025-01-24T02:56:21.2928650Z adding 'torch/include/ATen/ops/arcsinh_ops.h' 2025-01-24T02:56:21.2929870Z adding 'torch/include/ATen/ops/arctan.h' 2025-01-24T02:56:21.2931060Z adding 'torch/include/ATen/ops/arctan2.h' 2025-01-24T02:56:21.2932100Z adding 'torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2932870Z adding 'torch/include/ATen/ops/arctan2_native.h' 2025-01-24T02:56:21.2934210Z adding 'torch/include/ATen/ops/arctan2_ops.h' 2025-01-24T02:56:21.2935200Z adding 'torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2936310Z adding 'torch/include/ATen/ops/arctan_native.h' 2025-01-24T02:56:21.2937510Z adding 'torch/include/ATen/ops/arctan_ops.h' 2025-01-24T02:56:21.2938380Z adding 'torch/include/ATen/ops/arctanh.h' 2025-01-24T02:56:21.2939720Z adding 'torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2940310Z adding 'torch/include/ATen/ops/arctanh_native.h' 2025-01-24T02:56:21.2941760Z adding 'torch/include/ATen/ops/arctanh_ops.h' 2025-01-24T02:56:21.2942630Z adding 'torch/include/ATen/ops/argmax.h' 2025-01-24T02:56:21.2944020Z adding 'torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2944580Z adding 'torch/include/ATen/ops/argmax_cpu_dispatch.h' 2025-01-24T02:56:21.2945850Z adding 'torch/include/ATen/ops/argmax_cuda_dispatch.h' 2025-01-24T02:56:21.2946700Z adding 'torch/include/ATen/ops/argmax_meta.h' 2025-01-24T02:56:21.2947930Z adding 'torch/include/ATen/ops/argmax_meta_dispatch.h' 2025-01-24T02:56:21.2948810Z adding 'torch/include/ATen/ops/argmax_mps_dispatch.h' 2025-01-24T02:56:21.2950000Z adding 'torch/include/ATen/ops/argmax_native.h' 2025-01-24T02:56:21.2950850Z adding 'torch/include/ATen/ops/argmax_ops.h' 2025-01-24T02:56:21.2952140Z adding 'torch/include/ATen/ops/argmin.h' 2025-01-24T02:56:21.2953600Z adding 'torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2953960Z adding 'torch/include/ATen/ops/argmin_cpu_dispatch.h' 2025-01-24T02:56:21.2955240Z adding 'torch/include/ATen/ops/argmin_cuda_dispatch.h' 2025-01-24T02:56:21.2956080Z adding 'torch/include/ATen/ops/argmin_meta.h' 2025-01-24T02:56:21.2957320Z adding 'torch/include/ATen/ops/argmin_meta_dispatch.h' 2025-01-24T02:56:21.2957890Z adding 'torch/include/ATen/ops/argmin_mps_dispatch.h' 2025-01-24T02:56:21.2959130Z adding 'torch/include/ATen/ops/argmin_native.h' 2025-01-24T02:56:21.2960200Z adding 'torch/include/ATen/ops/argmin_ops.h' 2025-01-24T02:56:21.2961460Z adding 'torch/include/ATen/ops/argsort.h' 2025-01-24T02:56:21.2962420Z adding 'torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2963520Z adding 'torch/include/ATen/ops/argsort_native.h' 2025-01-24T02:56:21.2964700Z adding 'torch/include/ATen/ops/argsort_ops.h' 2025-01-24T02:56:21.2965820Z adding 'torch/include/ATen/ops/argwhere.h' 2025-01-24T02:56:21.2966810Z adding 'torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.2967900Z adding 'torch/include/ATen/ops/argwhere_native.h' 2025-01-24T02:56:21.2968920Z adding 'torch/include/ATen/ops/argwhere_ops.h' 2025-01-24T02:56:21.2970160Z adding 'torch/include/ATen/ops/as_strided.h' 2025-01-24T02:56:21.2971550Z adding 'torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2972580Z adding 'torch/include/ATen/ops/as_strided_copy.h' 2025-01-24T02:56:21.2973950Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2974870Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2975930Z adding 'torch/include/ATen/ops/as_strided_copy_native.h' 2025-01-24T02:56:21.2977120Z adding 'torch/include/ATen/ops/as_strided_copy_ops.h' 2025-01-24T02:56:21.2978010Z adding 'torch/include/ATen/ops/as_strided_cpu_dispatch.h' 2025-01-24T02:56:21.2979260Z adding 'torch/include/ATen/ops/as_strided_cuda_dispatch.h' 2025-01-24T02:56:21.2980130Z adding 'torch/include/ATen/ops/as_strided_meta_dispatch.h' 2025-01-24T02:56:21.2981350Z adding 'torch/include/ATen/ops/as_strided_mps_dispatch.h' 2025-01-24T02:56:21.2982560Z adding 'torch/include/ATen/ops/as_strided_native.h' 2025-01-24T02:56:21.2983600Z adding 'torch/include/ATen/ops/as_strided_ops.h' 2025-01-24T02:56:21.2984910Z adding 'torch/include/ATen/ops/as_strided_scatter.h' 2025-01-24T02:56:21.2986190Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.2987470Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2987920Z adding 'torch/include/ATen/ops/as_strided_scatter_native.h' 2025-01-24T02:56:21.2989410Z adding 'torch/include/ATen/ops/as_strided_scatter_ops.h' 2025-01-24T02:56:21.2990230Z adding 'torch/include/ATen/ops/asin.h' 2025-01-24T02:56:21.2991620Z adding 'torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.2992700Z adding 'torch/include/ATen/ops/asin_cpu_dispatch.h' 2025-01-24T02:56:21.2993310Z adding 'torch/include/ATen/ops/asin_cuda_dispatch.h' 2025-01-24T02:56:21.2994590Z adding 'torch/include/ATen/ops/asin_meta.h' 2025-01-24T02:56:21.2995480Z adding 'torch/include/ATen/ops/asin_meta_dispatch.h' 2025-01-24T02:56:21.2996520Z adding 'torch/include/ATen/ops/asin_mps_dispatch.h' 2025-01-24T02:56:21.2997540Z adding 'torch/include/ATen/ops/asin_native.h' 2025-01-24T02:56:21.2998720Z adding 'torch/include/ATen/ops/asin_ops.h' 2025-01-24T02:56:21.2999900Z adding 'torch/include/ATen/ops/asinh.h' 2025-01-24T02:56:21.3000930Z adding 'torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3001600Z adding 'torch/include/ATen/ops/asinh_cpu_dispatch.h' 2025-01-24T02:56:21.3002900Z adding 'torch/include/ATen/ops/asinh_cuda_dispatch.h' 2025-01-24T02:56:21.3003750Z adding 'torch/include/ATen/ops/asinh_meta.h' 2025-01-24T02:56:21.3004980Z adding 'torch/include/ATen/ops/asinh_meta_dispatch.h' 2025-01-24T02:56:21.3005560Z adding 'torch/include/ATen/ops/asinh_mps_dispatch.h' 2025-01-24T02:56:21.3006820Z adding 'torch/include/ATen/ops/asinh_native.h' 2025-01-24T02:56:21.3008040Z adding 'torch/include/ATen/ops/asinh_ops.h' 2025-01-24T02:56:21.3008870Z adding 'torch/include/ATen/ops/atan.h' 2025-01-24T02:56:21.3010070Z adding 'torch/include/ATen/ops/atan2.h' 2025-01-24T02:56:21.3011500Z adding 'torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3011990Z adding 'torch/include/ATen/ops/atan2_cpu_dispatch.h' 2025-01-24T02:56:21.3013280Z adding 'torch/include/ATen/ops/atan2_cuda_dispatch.h' 2025-01-24T02:56:21.3014120Z adding 'torch/include/ATen/ops/atan2_meta.h' 2025-01-24T02:56:21.3015340Z adding 'torch/include/ATen/ops/atan2_meta_dispatch.h' 2025-01-24T02:56:21.3015880Z adding 'torch/include/ATen/ops/atan2_mps_dispatch.h' 2025-01-24T02:56:21.3017160Z adding 'torch/include/ATen/ops/atan2_native.h' 2025-01-24T02:56:21.3018360Z adding 'torch/include/ATen/ops/atan2_ops.h' 2025-01-24T02:56:21.3019390Z adding 'torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3020440Z adding 'torch/include/ATen/ops/atan_cpu_dispatch.h' 2025-01-24T02:56:21.3021520Z adding 'torch/include/ATen/ops/atan_cuda_dispatch.h' 2025-01-24T02:56:21.3022060Z adding 'torch/include/ATen/ops/atan_meta.h' 2025-01-24T02:56:21.3023340Z adding 'torch/include/ATen/ops/atan_meta_dispatch.h' 2025-01-24T02:56:21.3024390Z adding 'torch/include/ATen/ops/atan_mps_dispatch.h' 2025-01-24T02:56:21.3025410Z adding 'torch/include/ATen/ops/atan_native.h' 2025-01-24T02:56:21.3026260Z adding 'torch/include/ATen/ops/atan_ops.h' 2025-01-24T02:56:21.3027440Z adding 'torch/include/ATen/ops/atanh.h' 2025-01-24T02:56:21.3028480Z adding 'torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3029530Z adding 'torch/include/ATen/ops/atanh_cpu_dispatch.h' 2025-01-24T02:56:21.3030580Z adding 'torch/include/ATen/ops/atanh_cuda_dispatch.h' 2025-01-24T02:56:21.3031400Z adding 'torch/include/ATen/ops/atanh_meta.h' 2025-01-24T02:56:21.3032630Z adding 'torch/include/ATen/ops/atanh_meta_dispatch.h' 2025-01-24T02:56:21.3033280Z adding 'torch/include/ATen/ops/atanh_mps_dispatch.h' 2025-01-24T02:56:21.3034510Z adding 'torch/include/ATen/ops/atanh_native.h' 2025-01-24T02:56:21.3038770Z adding 'torch/include/ATen/ops/atanh_ops.h' 2025-01-24T02:56:21.3039030Z adding 'torch/include/ATen/ops/atleast_1d.h' 2025-01-24T02:56:21.3039320Z adding 'torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3039480Z adding 'torch/include/ATen/ops/atleast_1d_native.h' 2025-01-24T02:56:21.3039620Z adding 'torch/include/ATen/ops/atleast_1d_ops.h' 2025-01-24T02:56:21.3040390Z adding 'torch/include/ATen/ops/atleast_2d.h' 2025-01-24T02:56:21.3041820Z adding 'torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3042400Z adding 'torch/include/ATen/ops/atleast_2d_native.h' 2025-01-24T02:56:21.3043790Z adding 'torch/include/ATen/ops/atleast_2d_ops.h' 2025-01-24T02:56:21.3044610Z adding 'torch/include/ATen/ops/atleast_3d.h' 2025-01-24T02:56:21.3046010Z adding 'torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3046550Z adding 'torch/include/ATen/ops/atleast_3d_native.h' 2025-01-24T02:56:21.3047800Z adding 'torch/include/ATen/ops/atleast_3d_ops.h' 2025-01-24T02:56:21.3049000Z adding 'torch/include/ATen/ops/avg_pool1d.h' 2025-01-24T02:56:21.3050000Z adding 'torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3051210Z adding 'torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3051690Z adding 'torch/include/ATen/ops/avg_pool1d_native.h' 2025-01-24T02:56:21.3053060Z adding 'torch/include/ATen/ops/avg_pool1d_ops.h' 2025-01-24T02:56:21.3054270Z adding 'torch/include/ATen/ops/avg_pool2d.h' 2025-01-24T02:56:21.3055490Z adding 'torch/include/ATen/ops/avg_pool2d_backward.h' 2025-01-24T02:56:21.3056580Z adding 'torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3057690Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.3058320Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.3059620Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta.h' 2025-01-24T02:56:21.3060530Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h' 2025-01-24T02:56:21.3061780Z adding 'torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h' 2025-01-24T02:56:21.3062960Z adding 'torch/include/ATen/ops/avg_pool2d_backward_native.h' 2025-01-24T02:56:21.3063800Z adding 'torch/include/ATen/ops/avg_pool2d_backward_ops.h' 2025-01-24T02:56:21.3065200Z adding 'torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3065820Z adding 'torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h' 2025-01-24T02:56:21.3067100Z adding 'torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h' 2025-01-24T02:56:21.3068440Z adding 'torch/include/ATen/ops/avg_pool2d_meta.h' 2025-01-24T02:56:21.3069530Z adding 'torch/include/ATen/ops/avg_pool2d_meta_dispatch.h' 2025-01-24T02:56:21.3070400Z adding 'torch/include/ATen/ops/avg_pool2d_mps_dispatch.h' 2025-01-24T02:56:21.3071670Z adding 'torch/include/ATen/ops/avg_pool2d_native.h' 2025-01-24T02:56:21.3072880Z adding 'torch/include/ATen/ops/avg_pool2d_ops.h' 2025-01-24T02:56:21.3074090Z adding 'torch/include/ATen/ops/avg_pool3d.h' 2025-01-24T02:56:21.3074980Z adding 'torch/include/ATen/ops/avg_pool3d_backward.h' 2025-01-24T02:56:21.3076440Z adding 'torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3077020Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.3078350Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.3079190Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta.h' 2025-01-24T02:56:21.3080430Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h' 2025-01-24T02:56:21.3081620Z adding 'torch/include/ATen/ops/avg_pool3d_backward_native.h' 2025-01-24T02:56:21.3082490Z adding 'torch/include/ATen/ops/avg_pool3d_backward_ops.h' 2025-01-24T02:56:21.3083900Z adding 'torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3084440Z adding 'torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h' 2025-01-24T02:56:21.3085730Z adding 'torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h' 2025-01-24T02:56:21.3086590Z adding 'torch/include/ATen/ops/avg_pool3d_meta.h' 2025-01-24T02:56:21.3087760Z adding 'torch/include/ATen/ops/avg_pool3d_meta_dispatch.h' 2025-01-24T02:56:21.3088940Z adding 'torch/include/ATen/ops/avg_pool3d_native.h' 2025-01-24T02:56:21.3090000Z adding 'torch/include/ATen/ops/avg_pool3d_ops.h' 2025-01-24T02:56:21.3091030Z adding 'torch/include/ATen/ops/baddbmm.h' 2025-01-24T02:56:21.3092120Z adding 'torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3093180Z adding 'torch/include/ATen/ops/baddbmm_cpu_dispatch.h' 2025-01-24T02:56:21.3094050Z adding 'torch/include/ATen/ops/baddbmm_cuda_dispatch.h' 2025-01-24T02:56:21.3095240Z adding 'torch/include/ATen/ops/baddbmm_meta.h' 2025-01-24T02:56:21.3096120Z adding 'torch/include/ATen/ops/baddbmm_meta_dispatch.h' 2025-01-24T02:56:21.3096990Z adding 'torch/include/ATen/ops/baddbmm_mps_dispatch.h' 2025-01-24T02:56:21.3098130Z adding 'torch/include/ATen/ops/baddbmm_native.h' 2025-01-24T02:56:21.3099350Z adding 'torch/include/ATen/ops/baddbmm_ops.h' 2025-01-24T02:56:21.3100560Z adding 'torch/include/ATen/ops/bartlett_window.h' 2025-01-24T02:56:21.3101920Z adding 'torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3102380Z adding 'torch/include/ATen/ops/bartlett_window_native.h' 2025-01-24T02:56:21.3103820Z adding 'torch/include/ATen/ops/bartlett_window_ops.h' 2025-01-24T02:56:21.3105000Z adding 'torch/include/ATen/ops/batch_norm.h' 2025-01-24T02:56:21.3105970Z adding 'torch/include/ATen/ops/batch_norm_backward.h' 2025-01-24T02:56:21.3106890Z adding 'torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h' 2025-01-24T02:56:21.3108080Z adding 'torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h' 2025-01-24T02:56:21.3108940Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt.h' 2025-01-24T02:56:21.3110310Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3111000Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h' 2025-01-24T02:56:21.3112270Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_native.h' 2025-01-24T02:56:21.3113460Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_ops.h' 2025-01-24T02:56:21.3114340Z adding 'torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h' 2025-01-24T02:56:21.3115530Z adding 'torch/include/ATen/ops/batch_norm_backward_native.h' 2025-01-24T02:56:21.3116740Z adding 'torch/include/ATen/ops/batch_norm_backward_ops.h' 2025-01-24T02:56:21.3117610Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce.h' 2025-01-24T02:56:21.3118980Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3119600Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h' 2025-01-24T02:56:21.3120880Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_native.h' 2025-01-24T02:56:21.3122090Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_ops.h' 2025-01-24T02:56:21.3123020Z adding 'torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3124140Z adding 'torch/include/ATen/ops/batch_norm_elemt.h' 2025-01-24T02:56:21.3125230Z adding 'torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h' 2025-01-24T02:56:21.3126070Z adding 'torch/include/ATen/ops/batch_norm_elemt_native.h' 2025-01-24T02:56:21.3127310Z adding 'torch/include/ATen/ops/batch_norm_elemt_ops.h' 2025-01-24T02:56:21.3128530Z adding 'torch/include/ATen/ops/batch_norm_gather_stats.h' 2025-01-24T02:56:21.3129570Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3130710Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h' 2025-01-24T02:56:21.3131520Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_native.h' 2025-01-24T02:56:21.3132850Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_ops.h' 2025-01-24T02:56:21.3134370Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h' 2025-01-24T02:56:21.3135720Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3136280Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h' 2025-01-24T02:56:21.3137480Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h' 2025-01-24T02:56:21.3138730Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h' 2025-01-24T02:56:21.3139470Z adding 'torch/include/ATen/ops/batch_norm_native.h' 2025-01-24T02:56:21.3140850Z adding 'torch/include/ATen/ops/batch_norm_ops.h' 2025-01-24T02:56:21.3141900Z adding 'torch/include/ATen/ops/batch_norm_stats.h' 2025-01-24T02:56:21.3142920Z adding 'torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3144040Z adding 'torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h' 2025-01-24T02:56:21.3144530Z adding 'torch/include/ATen/ops/batch_norm_stats_native.h' 2025-01-24T02:56:21.3145940Z adding 'torch/include/ATen/ops/batch_norm_stats_ops.h' 2025-01-24T02:56:21.3147190Z adding 'torch/include/ATen/ops/batch_norm_update_stats.h' 2025-01-24T02:56:21.3147970Z adding 'torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3149250Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h' 2025-01-24T02:56:21.3149870Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h' 2025-01-24T02:56:21.3151080Z adding 'torch/include/ATen/ops/batch_norm_update_stats_native.h' 2025-01-24T02:56:21.3152290Z adding 'torch/include/ATen/ops/batch_norm_update_stats_ops.h' 2025-01-24T02:56:21.3153440Z adding 'torch/include/ATen/ops/bernoulli.h' 2025-01-24T02:56:21.3154430Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3155720Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3156240Z adding 'torch/include/ATen/ops/bernoulli_cpu_dispatch.h' 2025-01-24T02:56:21.3157520Z adding 'torch/include/ATen/ops/bernoulli_cuda_dispatch.h' 2025-01-24T02:56:21.3158380Z adding 'torch/include/ATen/ops/bernoulli_meta_dispatch.h' 2025-01-24T02:56:21.3159590Z adding 'torch/include/ATen/ops/bernoulli_mps_dispatch.h' 2025-01-24T02:56:21.3160460Z adding 'torch/include/ATen/ops/bernoulli_native.h' 2025-01-24T02:56:21.3161930Z adding 'torch/include/ATen/ops/bernoulli_ops.h' 2025-01-24T02:56:21.3162960Z adding 'torch/include/ATen/ops/bilinear.h' 2025-01-24T02:56:21.3164310Z adding 'torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3164700Z adding 'torch/include/ATen/ops/bilinear_native.h' 2025-01-24T02:56:21.3166060Z adding 'torch/include/ATen/ops/bilinear_ops.h' 2025-01-24T02:56:21.3167300Z adding 'torch/include/ATen/ops/binary_cross_entropy.h' 2025-01-24T02:56:21.3168210Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward.h' 2025-01-24T02:56:21.3169480Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h' 2025-01-24T02:56:21.3170350Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h' 2025-01-24T02:56:21.3171580Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h' 2025-01-24T02:56:21.3172240Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_native.h' 2025-01-24T02:56:21.3173650Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_ops.h' 2025-01-24T02:56:21.3174870Z adding 'torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h' 2025-01-24T02:56:21.3175380Z adding 'torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h' 2025-01-24T02:56:21.3176670Z adding 'torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h' 2025-01-24T02:56:21.3177500Z adding 'torch/include/ATen/ops/binary_cross_entropy_native.h' 2025-01-24T02:56:21.3178780Z adding 'torch/include/ATen/ops/binary_cross_entropy_ops.h' 2025-01-24T02:56:21.3180030Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits.h' 2025-01-24T02:56:21.3181060Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3182210Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h' 2025-01-24T02:56:21.3183060Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h' 2025-01-24T02:56:21.3184220Z adding 'torch/include/ATen/ops/bincount.h' 2025-01-24T02:56:21.3185590Z adding 'torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3186050Z adding 'torch/include/ATen/ops/bincount_cpu_dispatch.h' 2025-01-24T02:56:21.3187280Z adding 'torch/include/ATen/ops/bincount_cuda_dispatch.h' 2025-01-24T02:56:21.3188140Z adding 'torch/include/ATen/ops/bincount_mps_dispatch.h' 2025-01-24T02:56:21.3189340Z adding 'torch/include/ATen/ops/bincount_native.h' 2025-01-24T02:56:21.3190440Z adding 'torch/include/ATen/ops/bincount_ops.h' 2025-01-24T02:56:21.3191290Z adding 'torch/include/ATen/ops/binomial.h' 2025-01-24T02:56:21.3192670Z adding 'torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3193310Z adding 'torch/include/ATen/ops/binomial_cpu_dispatch.h' 2025-01-24T02:56:21.3194600Z adding 'torch/include/ATen/ops/binomial_cuda_dispatch.h' 2025-01-24T02:56:21.3195440Z adding 'torch/include/ATen/ops/binomial_native.h' 2025-01-24T02:56:21.3196720Z adding 'torch/include/ATen/ops/binomial_ops.h' 2025-01-24T02:56:21.3197930Z adding 'torch/include/ATen/ops/bitwise_and.h' 2025-01-24T02:56:21.3199290Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3199880Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3201090Z adding 'torch/include/ATen/ops/bitwise_and_cpu_dispatch.h' 2025-01-24T02:56:21.3201970Z adding 'torch/include/ATen/ops/bitwise_and_cuda_dispatch.h' 2025-01-24T02:56:21.3203160Z adding 'torch/include/ATen/ops/bitwise_and_meta.h' 2025-01-24T02:56:21.3203840Z adding 'torch/include/ATen/ops/bitwise_and_meta_dispatch.h' 2025-01-24T02:56:21.3205050Z adding 'torch/include/ATen/ops/bitwise_and_mps_dispatch.h' 2025-01-24T02:56:21.3205960Z adding 'torch/include/ATen/ops/bitwise_and_native.h' 2025-01-24T02:56:21.3207370Z adding 'torch/include/ATen/ops/bitwise_and_ops.h' 2025-01-24T02:56:21.3208630Z adding 'torch/include/ATen/ops/bitwise_left_shift.h' 2025-01-24T02:56:21.3209820Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3214000Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3214360Z adding 'torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h' 2025-01-24T02:56:21.3214580Z adding 'torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h' 2025-01-24T02:56:21.3214750Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta.h' 2025-01-24T02:56:21.3214960Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h' 2025-01-24T02:56:21.3215340Z adding 'torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h' 2025-01-24T02:56:21.3216460Z adding 'torch/include/ATen/ops/bitwise_left_shift_native.h' 2025-01-24T02:56:21.3217950Z adding 'torch/include/ATen/ops/bitwise_left_shift_ops.h' 2025-01-24T02:56:21.3218820Z adding 'torch/include/ATen/ops/bitwise_not.h' 2025-01-24T02:56:21.3220240Z adding 'torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3220740Z adding 'torch/include/ATen/ops/bitwise_not_cpu_dispatch.h' 2025-01-24T02:56:21.3222050Z adding 'torch/include/ATen/ops/bitwise_not_cuda_dispatch.h' 2025-01-24T02:56:21.3222910Z adding 'torch/include/ATen/ops/bitwise_not_meta.h' 2025-01-24T02:56:21.3223850Z adding 'torch/include/ATen/ops/bitwise_not_meta_dispatch.h' 2025-01-24T02:56:21.3225060Z adding 'torch/include/ATen/ops/bitwise_not_mps_dispatch.h' 2025-01-24T02:56:21.3225670Z adding 'torch/include/ATen/ops/bitwise_not_native.h' 2025-01-24T02:56:21.3227030Z adding 'torch/include/ATen/ops/bitwise_not_ops.h' 2025-01-24T02:56:21.3228140Z adding 'torch/include/ATen/ops/bitwise_or.h' 2025-01-24T02:56:21.3229490Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3230220Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3231380Z adding 'torch/include/ATen/ops/bitwise_or_cpu_dispatch.h' 2025-01-24T02:56:21.3232320Z adding 'torch/include/ATen/ops/bitwise_or_cuda_dispatch.h' 2025-01-24T02:56:21.3233420Z adding 'torch/include/ATen/ops/bitwise_or_meta.h' 2025-01-24T02:56:21.3234330Z adding 'torch/include/ATen/ops/bitwise_or_meta_dispatch.h' 2025-01-24T02:56:21.3235190Z adding 'torch/include/ATen/ops/bitwise_or_mps_dispatch.h' 2025-01-24T02:56:21.3236420Z adding 'torch/include/ATen/ops/bitwise_or_native.h' 2025-01-24T02:56:21.3237680Z adding 'torch/include/ATen/ops/bitwise_or_ops.h' 2025-01-24T02:56:21.3238910Z adding 'torch/include/ATen/ops/bitwise_right_shift.h' 2025-01-24T02:56:21.3239930Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3241220Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3241700Z adding 'torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h' 2025-01-24T02:56:21.3243020Z adding 'torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h' 2025-01-24T02:56:21.3243620Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta.h' 2025-01-24T02:56:21.3244970Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h' 2025-01-24T02:56:21.3245530Z adding 'torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h' 2025-01-24T02:56:21.3246830Z adding 'torch/include/ATen/ops/bitwise_right_shift_native.h' 2025-01-24T02:56:21.3248160Z adding 'torch/include/ATen/ops/bitwise_right_shift_ops.h' 2025-01-24T02:56:21.3249330Z adding 'torch/include/ATen/ops/bitwise_xor.h' 2025-01-24T02:56:21.3250360Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3251590Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3252070Z adding 'torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h' 2025-01-24T02:56:21.3253400Z adding 'torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h' 2025-01-24T02:56:21.3254230Z adding 'torch/include/ATen/ops/bitwise_xor_meta.h' 2025-01-24T02:56:21.3255310Z adding 'torch/include/ATen/ops/bitwise_xor_meta_dispatch.h' 2025-01-24T02:56:21.3256170Z adding 'torch/include/ATen/ops/bitwise_xor_mps_dispatch.h' 2025-01-24T02:56:21.3257360Z adding 'torch/include/ATen/ops/bitwise_xor_native.h' 2025-01-24T02:56:21.3258580Z adding 'torch/include/ATen/ops/bitwise_xor_ops.h' 2025-01-24T02:56:21.3259780Z adding 'torch/include/ATen/ops/blackman_window.h' 2025-01-24T02:56:21.3261020Z adding 'torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3261640Z adding 'torch/include/ATen/ops/blackman_window_native.h' 2025-01-24T02:56:21.3263140Z adding 'torch/include/ATen/ops/blackman_window_ops.h' 2025-01-24T02:56:21.3264020Z adding 'torch/include/ATen/ops/block_diag.h' 2025-01-24T02:56:21.3265410Z adding 'torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3265920Z adding 'torch/include/ATen/ops/block_diag_native.h' 2025-01-24T02:56:21.3267330Z adding 'torch/include/ATen/ops/block_diag_ops.h' 2025-01-24T02:56:21.3268330Z adding 'torch/include/ATen/ops/bmm.h' 2025-01-24T02:56:21.3269400Z adding 'torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3270530Z adding 'torch/include/ATen/ops/bmm_cpu_dispatch.h' 2025-01-24T02:56:21.3271060Z adding 'torch/include/ATen/ops/bmm_cuda_dispatch.h' 2025-01-24T02:56:21.3272300Z adding 'torch/include/ATen/ops/bmm_meta.h' 2025-01-24T02:56:21.3273200Z adding 'torch/include/ATen/ops/bmm_meta_dispatch.h' 2025-01-24T02:56:21.3274340Z adding 'torch/include/ATen/ops/bmm_mps_dispatch.h' 2025-01-24T02:56:21.3275380Z adding 'torch/include/ATen/ops/bmm_native.h' 2025-01-24T02:56:21.3276620Z adding 'torch/include/ATen/ops/bmm_ops.h' 2025-01-24T02:56:21.3277280Z adding 'torch/include/ATen/ops/broadcast_tensors.h' 2025-01-24T02:56:21.3278710Z adding 'torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3279290Z adding 'torch/include/ATen/ops/broadcast_tensors_native.h' 2025-01-24T02:56:21.3280670Z adding 'torch/include/ATen/ops/broadcast_tensors_ops.h' 2025-01-24T02:56:21.3281490Z adding 'torch/include/ATen/ops/broadcast_to.h' 2025-01-24T02:56:21.3282830Z adding 'torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3283370Z adding 'torch/include/ATen/ops/broadcast_to_native.h' 2025-01-24T02:56:21.3284700Z adding 'torch/include/ATen/ops/broadcast_to_ops.h' 2025-01-24T02:56:21.3285930Z adding 'torch/include/ATen/ops/bucketize.h' 2025-01-24T02:56:21.3286960Z adding 'torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3288080Z adding 'torch/include/ATen/ops/bucketize_cpu_dispatch.h' 2025-01-24T02:56:21.3288950Z adding 'torch/include/ATen/ops/bucketize_cuda_dispatch.h' 2025-01-24T02:56:21.3290160Z adding 'torch/include/ATen/ops/bucketize_mps_dispatch.h' 2025-01-24T02:56:21.3291010Z adding 'torch/include/ATen/ops/bucketize_native.h' 2025-01-24T02:56:21.3292280Z adding 'torch/include/ATen/ops/bucketize_ops.h' 2025-01-24T02:56:21.3293300Z adding 'torch/include/ATen/ops/can_cast.h' 2025-01-24T02:56:21.3294280Z adding 'torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3295370Z adding 'torch/include/ATen/ops/can_cast_native.h' 2025-01-24T02:56:21.3296230Z adding 'torch/include/ATen/ops/can_cast_ops.h' 2025-01-24T02:56:21.3297090Z adding 'torch/include/ATen/ops/cartesian_prod.h' 2025-01-24T02:56:21.3298450Z adding 'torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3299050Z adding 'torch/include/ATen/ops/cartesian_prod_native.h' 2025-01-24T02:56:21.3300330Z adding 'torch/include/ATen/ops/cartesian_prod_ops.h' 2025-01-24T02:56:21.3301510Z adding 'torch/include/ATen/ops/cat.h' 2025-01-24T02:56:21.3302550Z adding 'torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3303390Z adding 'torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3304550Z adding 'torch/include/ATen/ops/cat_cpu_dispatch.h' 2025-01-24T02:56:21.3305610Z adding 'torch/include/ATen/ops/cat_cuda_dispatch.h' 2025-01-24T02:56:21.3306840Z adding 'torch/include/ATen/ops/cat_meta.h' 2025-01-24T02:56:21.3307730Z adding 'torch/include/ATen/ops/cat_meta_dispatch.h' 2025-01-24T02:56:21.3308840Z adding 'torch/include/ATen/ops/cat_mps_dispatch.h' 2025-01-24T02:56:21.3309910Z adding 'torch/include/ATen/ops/cat_native.h' 2025-01-24T02:56:21.3311090Z adding 'torch/include/ATen/ops/cat_ops.h' 2025-01-24T02:56:21.3312310Z adding 'torch/include/ATen/ops/cauchy.h' 2025-01-24T02:56:21.3313290Z adding 'torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3314440Z adding 'torch/include/ATen/ops/cauchy_cpu_dispatch.h' 2025-01-24T02:56:21.3315070Z adding 'torch/include/ATen/ops/cauchy_cuda_dispatch.h' 2025-01-24T02:56:21.3316410Z adding 'torch/include/ATen/ops/cauchy_meta_dispatch.h' 2025-01-24T02:56:21.3317260Z adding 'torch/include/ATen/ops/cauchy_native.h' 2025-01-24T02:56:21.3318460Z adding 'torch/include/ATen/ops/cauchy_ops.h' 2025-01-24T02:56:21.3319320Z adding 'torch/include/ATen/ops/ccol_indices.h' 2025-01-24T02:56:21.3320660Z adding 'torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3321160Z adding 'torch/include/ATen/ops/ccol_indices_copy.h' 2025-01-24T02:56:21.3322620Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3323370Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3324540Z adding 'torch/include/ATen/ops/ccol_indices_copy_native.h' 2025-01-24T02:56:21.3325380Z adding 'torch/include/ATen/ops/ccol_indices_copy_ops.h' 2025-01-24T02:56:21.3326590Z adding 'torch/include/ATen/ops/ccol_indices_native.h' 2025-01-24T02:56:21.3327650Z adding 'torch/include/ATen/ops/ccol_indices_ops.h' 2025-01-24T02:56:21.3328130Z adding 'torch/include/ATen/ops/cdist.h' 2025-01-24T02:56:21.3329570Z adding 'torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3330190Z adding 'torch/include/ATen/ops/cdist_native.h' 2025-01-24T02:56:21.3331480Z adding 'torch/include/ATen/ops/cdist_ops.h' 2025-01-24T02:56:21.3332630Z adding 'torch/include/ATen/ops/ceil.h' 2025-01-24T02:56:21.3333930Z adding 'torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3334640Z adding 'torch/include/ATen/ops/ceil_cpu_dispatch.h' 2025-01-24T02:56:21.3335760Z adding 'torch/include/ATen/ops/ceil_cuda_dispatch.h' 2025-01-24T02:56:21.3336590Z adding 'torch/include/ATen/ops/ceil_meta.h' 2025-01-24T02:56:21.3337810Z adding 'torch/include/ATen/ops/ceil_meta_dispatch.h' 2025-01-24T02:56:21.3338320Z adding 'torch/include/ATen/ops/ceil_mps_dispatch.h' 2025-01-24T02:56:21.3339580Z adding 'torch/include/ATen/ops/ceil_native.h' 2025-01-24T02:56:21.3340760Z adding 'torch/include/ATen/ops/ceil_ops.h' 2025-01-24T02:56:21.3341580Z adding 'torch/include/ATen/ops/celu.h' 2025-01-24T02:56:21.3342900Z adding 'torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3343430Z adding 'torch/include/ATen/ops/celu_native.h' 2025-01-24T02:56:21.3344840Z adding 'torch/include/ATen/ops/celu_ops.h' 2025-01-24T02:56:21.3345800Z adding 'torch/include/ATen/ops/chain_matmul.h' 2025-01-24T02:56:21.3347060Z adding 'torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3347650Z adding 'torch/include/ATen/ops/chain_matmul_native.h' 2025-01-24T02:56:21.3349000Z adding 'torch/include/ATen/ops/chain_matmul_ops.h' 2025-01-24T02:56:21.3350050Z adding 'torch/include/ATen/ops/chalf.h' 2025-01-24T02:56:21.3351010Z adding 'torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3351760Z adding 'torch/include/ATen/ops/chalf_native.h' 2025-01-24T02:56:21.3352940Z adding 'torch/include/ATen/ops/chalf_ops.h' 2025-01-24T02:56:21.3354160Z adding 'torch/include/ATen/ops/channel_shuffle.h' 2025-01-24T02:56:21.3355350Z adding 'torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3355920Z adding 'torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h' 2025-01-24T02:56:21.3357240Z adding 'torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h' 2025-01-24T02:56:21.3358080Z adding 'torch/include/ATen/ops/channel_shuffle_native.h' 2025-01-24T02:56:21.3359290Z adding 'torch/include/ATen/ops/channel_shuffle_ops.h' 2025-01-24T02:56:21.3360150Z adding 'torch/include/ATen/ops/cholesky.h' 2025-01-24T02:56:21.3361450Z adding 'torch/include/ATen/ops/cholesky_cpu_dispatch.h' 2025-01-24T02:56:21.3362050Z adding 'torch/include/ATen/ops/cholesky_cuda_dispatch.h' 2025-01-24T02:56:21.3363300Z adding 'torch/include/ATen/ops/cholesky_inverse.h' 2025-01-24T02:56:21.3364410Z adding 'torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h' 2025-01-24T02:56:21.3365290Z adding 'torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h' 2025-01-24T02:56:21.3366130Z adding 'torch/include/ATen/ops/cholesky_inverse_native.h' 2025-01-24T02:56:21.3367370Z adding 'torch/include/ATen/ops/cholesky_inverse_ops.h' 2025-01-24T02:56:21.3368230Z adding 'torch/include/ATen/ops/cholesky_native.h' 2025-01-24T02:56:21.3369380Z adding 'torch/include/ATen/ops/cholesky_ops.h' 2025-01-24T02:56:21.3370630Z adding 'torch/include/ATen/ops/cholesky_solve.h' 2025-01-24T02:56:21.3371820Z adding 'torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3372210Z adding 'torch/include/ATen/ops/cholesky_solve_native.h' 2025-01-24T02:56:21.3373910Z adding 'torch/include/ATen/ops/cholesky_solve_ops.h' 2025-01-24T02:56:21.3374970Z adding 'torch/include/ATen/ops/choose_qparams_optimized.h' 2025-01-24T02:56:21.3375990Z adding 'torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3377090Z adding 'torch/include/ATen/ops/choose_qparams_optimized_native.h' 2025-01-24T02:56:21.3377950Z adding 'torch/include/ATen/ops/choose_qparams_optimized_ops.h' 2025-01-24T02:56:21.3379070Z adding 'torch/include/ATen/ops/chunk.h' 2025-01-24T02:56:21.3380070Z adding 'torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3381140Z adding 'torch/include/ATen/ops/chunk_native.h' 2025-01-24T02:56:21.3385150Z adding 'torch/include/ATen/ops/chunk_ops.h' 2025-01-24T02:56:21.3385420Z adding 'torch/include/ATen/ops/clamp.h' 2025-01-24T02:56:21.3385730Z adding 'torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3385880Z adding 'torch/include/ATen/ops/clamp_cpu_dispatch.h' 2025-01-24T02:56:21.3386340Z adding 'torch/include/ATen/ops/clamp_cuda_dispatch.h' 2025-01-24T02:56:21.3387430Z adding 'torch/include/ATen/ops/clamp_max.h' 2025-01-24T02:56:21.3388860Z adding 'torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3389320Z adding 'torch/include/ATen/ops/clamp_max_cpu_dispatch.h' 2025-01-24T02:56:21.3390700Z adding 'torch/include/ATen/ops/clamp_max_cuda_dispatch.h' 2025-01-24T02:56:21.3391530Z adding 'torch/include/ATen/ops/clamp_max_meta.h' 2025-01-24T02:56:21.3392770Z adding 'torch/include/ATen/ops/clamp_max_meta_dispatch.h' 2025-01-24T02:56:21.3393630Z adding 'torch/include/ATen/ops/clamp_max_mps_dispatch.h' 2025-01-24T02:56:21.3394830Z adding 'torch/include/ATen/ops/clamp_max_native.h' 2025-01-24T02:56:21.3396030Z adding 'torch/include/ATen/ops/clamp_max_ops.h' 2025-01-24T02:56:21.3397060Z adding 'torch/include/ATen/ops/clamp_meta.h' 2025-01-24T02:56:21.3398290Z adding 'torch/include/ATen/ops/clamp_meta_dispatch.h' 2025-01-24T02:56:21.3399280Z adding 'torch/include/ATen/ops/clamp_min.h' 2025-01-24T02:56:21.3400560Z adding 'torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3401160Z adding 'torch/include/ATen/ops/clamp_min_cpu_dispatch.h' 2025-01-24T02:56:21.3402430Z adding 'torch/include/ATen/ops/clamp_min_cuda_dispatch.h' 2025-01-24T02:56:21.3403260Z adding 'torch/include/ATen/ops/clamp_min_meta.h' 2025-01-24T02:56:21.3404500Z adding 'torch/include/ATen/ops/clamp_min_meta_dispatch.h' 2025-01-24T02:56:21.3405380Z adding 'torch/include/ATen/ops/clamp_min_mps_dispatch.h' 2025-01-24T02:56:21.3406250Z adding 'torch/include/ATen/ops/clamp_min_native.h' 2025-01-24T02:56:21.3407650Z adding 'torch/include/ATen/ops/clamp_min_ops.h' 2025-01-24T02:56:21.3408560Z adding 'torch/include/ATen/ops/clamp_mps_dispatch.h' 2025-01-24T02:56:21.3409780Z adding 'torch/include/ATen/ops/clamp_native.h' 2025-01-24T02:56:21.3411110Z adding 'torch/include/ATen/ops/clamp_ops.h' 2025-01-24T02:56:21.3412310Z adding 'torch/include/ATen/ops/clip.h' 2025-01-24T02:56:21.3413630Z adding 'torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3414130Z adding 'torch/include/ATen/ops/clip_native.h' 2025-01-24T02:56:21.3415730Z adding 'torch/include/ATen/ops/clip_ops.h' 2025-01-24T02:56:21.3416960Z adding 'torch/include/ATen/ops/clone.h' 2025-01-24T02:56:21.3417630Z adding 'torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3418860Z adding 'torch/include/ATen/ops/clone_native.h' 2025-01-24T02:56:21.3420050Z adding 'torch/include/ATen/ops/clone_ops.h' 2025-01-24T02:56:21.3420890Z adding 'torch/include/ATen/ops/coalesce.h' 2025-01-24T02:56:21.3422240Z adding 'torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3422630Z adding 'torch/include/ATen/ops/coalesce_native.h' 2025-01-24T02:56:21.3423930Z adding 'torch/include/ATen/ops/coalesce_ops.h' 2025-01-24T02:56:21.3425190Z adding 'torch/include/ATen/ops/col2im.h' 2025-01-24T02:56:21.3426420Z adding 'torch/include/ATen/ops/col2im_cpu_dispatch.h' 2025-01-24T02:56:21.3427300Z adding 'torch/include/ATen/ops/col2im_cuda_dispatch.h' 2025-01-24T02:56:21.3428520Z adding 'torch/include/ATen/ops/col2im_native.h' 2025-01-24T02:56:21.3429390Z adding 'torch/include/ATen/ops/col2im_ops.h' 2025-01-24T02:56:21.3430620Z adding 'torch/include/ATen/ops/col_indices.h' 2025-01-24T02:56:21.3431810Z adding 'torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3432390Z adding 'torch/include/ATen/ops/col_indices_copy.h' 2025-01-24T02:56:21.3433760Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3435010Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3435460Z adding 'torch/include/ATen/ops/col_indices_copy_native.h' 2025-01-24T02:56:21.3436770Z adding 'torch/include/ATen/ops/col_indices_copy_ops.h' 2025-01-24T02:56:21.3437660Z adding 'torch/include/ATen/ops/col_indices_native.h' 2025-01-24T02:56:21.3438760Z adding 'torch/include/ATen/ops/col_indices_ops.h' 2025-01-24T02:56:21.3439800Z adding 'torch/include/ATen/ops/column_stack.h' 2025-01-24T02:56:21.3440820Z adding 'torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3441920Z adding 'torch/include/ATen/ops/column_stack_native.h' 2025-01-24T02:56:21.3442770Z adding 'torch/include/ATen/ops/column_stack_ops.h' 2025-01-24T02:56:21.3443930Z adding 'torch/include/ATen/ops/combinations.h' 2025-01-24T02:56:21.3444940Z adding 'torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3446020Z adding 'torch/include/ATen/ops/combinations_native.h' 2025-01-24T02:56:21.3446880Z adding 'torch/include/ATen/ops/combinations_ops.h' 2025-01-24T02:56:21.3447970Z adding 'torch/include/ATen/ops/complex.h' 2025-01-24T02:56:21.3449290Z adding 'torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3449830Z adding 'torch/include/ATen/ops/complex_cpu_dispatch.h' 2025-01-24T02:56:21.3451020Z adding 'torch/include/ATen/ops/complex_cuda_dispatch.h' 2025-01-24T02:56:21.3451870Z adding 'torch/include/ATen/ops/complex_mps_dispatch.h' 2025-01-24T02:56:21.3453080Z adding 'torch/include/ATen/ops/complex_native.h' 2025-01-24T02:56:21.3454160Z adding 'torch/include/ATen/ops/complex_ops.h' 2025-01-24T02:56:21.3455030Z adding 'torch/include/ATen/ops/concat.h' 2025-01-24T02:56:21.3456340Z adding 'torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3457090Z adding 'torch/include/ATen/ops/concat_native.h' 2025-01-24T02:56:21.3458370Z adding 'torch/include/ATen/ops/concat_ops.h' 2025-01-24T02:56:21.3459590Z adding 'torch/include/ATen/ops/concatenate.h' 2025-01-24T02:56:21.3460590Z adding 'torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3461700Z adding 'torch/include/ATen/ops/concatenate_native.h' 2025-01-24T02:56:21.3462730Z adding 'torch/include/ATen/ops/concatenate_ops.h' 2025-01-24T02:56:21.3463760Z adding 'torch/include/ATen/ops/conj.h' 2025-01-24T02:56:21.3464730Z adding 'torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3465830Z adding 'torch/include/ATen/ops/conj_native.h' 2025-01-24T02:56:21.3466700Z adding 'torch/include/ATen/ops/conj_ops.h' 2025-01-24T02:56:21.3467910Z adding 'torch/include/ATen/ops/conj_physical.h' 2025-01-24T02:56:21.3468700Z adding 'torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3469920Z adding 'torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3470560Z adding 'torch/include/ATen/ops/conj_physical_cpu_dispatch.h' 2025-01-24T02:56:21.3471800Z adding 'torch/include/ATen/ops/conj_physical_cuda_dispatch.h' 2025-01-24T02:56:21.3472680Z adding 'torch/include/ATen/ops/conj_physical_mps_dispatch.h' 2025-01-24T02:56:21.3473890Z adding 'torch/include/ATen/ops/conj_physical_native.h' 2025-01-24T02:56:21.3474950Z adding 'torch/include/ATen/ops/conj_physical_ops.h' 2025-01-24T02:56:21.3476200Z adding 'torch/include/ATen/ops/constant_pad_nd.h' 2025-01-24T02:56:21.3477400Z adding 'torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3477940Z adding 'torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h' 2025-01-24T02:56:21.3479250Z adding 'torch/include/ATen/ops/constant_pad_nd_native.h' 2025-01-24T02:56:21.3480470Z adding 'torch/include/ATen/ops/constant_pad_nd_ops.h' 2025-01-24T02:56:21.3480990Z adding 'torch/include/ATen/ops/contiguous.h' 2025-01-24T02:56:21.3482380Z adding 'torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3482920Z adding 'torch/include/ATen/ops/contiguous_native.h' 2025-01-24T02:56:21.3484270Z adding 'torch/include/ATen/ops/contiguous_ops.h' 2025-01-24T02:56:21.3485460Z adding 'torch/include/ATen/ops/conv1d.h' 2025-01-24T02:56:21.3486810Z adding 'torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3487370Z adding 'torch/include/ATen/ops/conv1d_native.h' 2025-01-24T02:56:21.3488780Z adding 'torch/include/ATen/ops/conv1d_ops.h' 2025-01-24T02:56:21.3489980Z adding 'torch/include/ATen/ops/conv2d.h' 2025-01-24T02:56:21.3491300Z adding 'torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3491810Z adding 'torch/include/ATen/ops/conv2d_native.h' 2025-01-24T02:56:21.3493270Z adding 'torch/include/ATen/ops/conv2d_ops.h' 2025-01-24T02:56:21.3494500Z adding 'torch/include/ATen/ops/conv3d.h' 2025-01-24T02:56:21.3495850Z adding 'torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3496380Z adding 'torch/include/ATen/ops/conv3d_native.h' 2025-01-24T02:56:21.3497770Z adding 'torch/include/ATen/ops/conv3d_ops.h' 2025-01-24T02:56:21.3499170Z adding 'torch/include/ATen/ops/conv_depthwise3d.h' 2025-01-24T02:56:21.3500540Z adding 'torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3501380Z adding 'torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h' 2025-01-24T02:56:21.3502530Z adding 'torch/include/ATen/ops/conv_depthwise3d_native.h' 2025-01-24T02:56:21.3503730Z adding 'torch/include/ATen/ops/conv_depthwise3d_ops.h' 2025-01-24T02:56:21.3504560Z adding 'torch/include/ATen/ops/conv_tbc.h' 2025-01-24T02:56:21.3505880Z adding 'torch/include/ATen/ops/conv_tbc_backward.h' 2025-01-24T02:56:21.3506890Z adding 'torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3507990Z adding 'torch/include/ATen/ops/conv_tbc_backward_native.h' 2025-01-24T02:56:21.3508840Z adding 'torch/include/ATen/ops/conv_tbc_backward_ops.h' 2025-01-24T02:56:21.3510190Z adding 'torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3510660Z adding 'torch/include/ATen/ops/conv_tbc_native.h' 2025-01-24T02:56:21.3512010Z adding 'torch/include/ATen/ops/conv_tbc_ops.h' 2025-01-24T02:56:21.3513280Z adding 'torch/include/ATen/ops/conv_transpose1d.h' 2025-01-24T02:56:21.3514310Z adding 'torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3515400Z adding 'torch/include/ATen/ops/conv_transpose1d_native.h' 2025-01-24T02:56:21.3516600Z adding 'torch/include/ATen/ops/conv_transpose1d_ops.h' 2025-01-24T02:56:21.3517600Z adding 'torch/include/ATen/ops/conv_transpose2d.h' 2025-01-24T02:56:21.3518880Z adding 'torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3519500Z adding 'torch/include/ATen/ops/conv_transpose2d_native.h' 2025-01-24T02:56:21.3520850Z adding 'torch/include/ATen/ops/conv_transpose2d_ops.h' 2025-01-24T02:56:21.3522080Z adding 'torch/include/ATen/ops/conv_transpose3d.h' 2025-01-24T02:56:21.3523250Z adding 'torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3523820Z adding 'torch/include/ATen/ops/conv_transpose3d_native.h' 2025-01-24T02:56:21.3525180Z adding 'torch/include/ATen/ops/conv_transpose3d_ops.h' 2025-01-24T02:56:21.3526530Z adding 'torch/include/ATen/ops/convolution.h' 2025-01-24T02:56:21.3528130Z adding 'torch/include/ATen/ops/convolution_backward.h' 2025-01-24T02:56:21.3529500Z adding 'torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3530660Z adding 'torch/include/ATen/ops/convolution_backward_cuda_dispatch.h' 2025-01-24T02:56:21.3531270Z adding 'torch/include/ATen/ops/convolution_backward_native.h' 2025-01-24T02:56:21.3532830Z adding 'torch/include/ATen/ops/convolution_backward_ops.h' 2025-01-24T02:56:21.3534330Z adding 'torch/include/ATen/ops/convolution_backward_overrideable.h' 2025-01-24T02:56:21.3535690Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3536870Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_native.h' 2025-01-24T02:56:21.3538060Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_ops.h' 2025-01-24T02:56:21.3538970Z adding 'torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3540070Z adding 'torch/include/ATen/ops/convolution_native.h' 2025-01-24T02:56:21.3541260Z adding 'torch/include/ATen/ops/convolution_ops.h' 2025-01-24T02:56:21.3542590Z adding 'torch/include/ATen/ops/convolution_overrideable.h' 2025-01-24T02:56:21.3543940Z adding 'torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3544510Z adding 'torch/include/ATen/ops/convolution_overrideable_native.h' 2025-01-24T02:56:21.3545920Z adding 'torch/include/ATen/ops/convolution_overrideable_ops.h' 2025-01-24T02:56:21.3546710Z adding 'torch/include/ATen/ops/copy.h' 2025-01-24T02:56:21.3548060Z adding 'torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3549010Z adding 'torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3550110Z adding 'torch/include/ATen/ops/copy_meta_dispatch.h' 2025-01-24T02:56:21.3550700Z adding 'torch/include/ATen/ops/copy_native.h' 2025-01-24T02:56:21.3552140Z adding 'torch/include/ATen/ops/copy_ops.h' 2025-01-24T02:56:21.3553350Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse.h' 2025-01-24T02:56:21.3554360Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3555530Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h' 2025-01-24T02:56:21.3556390Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_native.h' 2025-01-24T02:56:21.3557640Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_ops.h' 2025-01-24T02:56:21.3558790Z adding 'torch/include/ATen/ops/copysign.h' 2025-01-24T02:56:21.3563060Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3563550Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3563730Z adding 'torch/include/ATen/ops/copysign_cpu_dispatch.h' 2025-01-24T02:56:21.3563890Z adding 'torch/include/ATen/ops/copysign_cuda_dispatch.h' 2025-01-24T02:56:21.3564030Z adding 'torch/include/ATen/ops/copysign_meta.h' 2025-01-24T02:56:21.3564300Z adding 'torch/include/ATen/ops/copysign_meta_dispatch.h' 2025-01-24T02:56:21.3565300Z adding 'torch/include/ATen/ops/copysign_mps_dispatch.h' 2025-01-24T02:56:21.3566570Z adding 'torch/include/ATen/ops/copysign_native.h' 2025-01-24T02:56:21.3567760Z adding 'torch/include/ATen/ops/copysign_ops.h' 2025-01-24T02:56:21.3568610Z adding 'torch/include/ATen/ops/corrcoef.h' 2025-01-24T02:56:21.3569940Z adding 'torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3570490Z adding 'torch/include/ATen/ops/corrcoef_native.h' 2025-01-24T02:56:21.3571820Z adding 'torch/include/ATen/ops/corrcoef_ops.h' 2025-01-24T02:56:21.3573000Z adding 'torch/include/ATen/ops/cos.h' 2025-01-24T02:56:21.3574020Z adding 'torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3575090Z adding 'torch/include/ATen/ops/cos_cpu_dispatch.h' 2025-01-24T02:56:21.3575650Z adding 'torch/include/ATen/ops/cos_cuda_dispatch.h' 2025-01-24T02:56:21.3576870Z adding 'torch/include/ATen/ops/cos_meta.h' 2025-01-24T02:56:21.3577740Z adding 'torch/include/ATen/ops/cos_meta_dispatch.h' 2025-01-24T02:56:21.3578830Z adding 'torch/include/ATen/ops/cos_mps_dispatch.h' 2025-01-24T02:56:21.3579840Z adding 'torch/include/ATen/ops/cos_native.h' 2025-01-24T02:56:21.3581030Z adding 'torch/include/ATen/ops/cos_ops.h' 2025-01-24T02:56:21.3581890Z adding 'torch/include/ATen/ops/cosh.h' 2025-01-24T02:56:21.3583280Z adding 'torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3583700Z adding 'torch/include/ATen/ops/cosh_cpu_dispatch.h' 2025-01-24T02:56:21.3584950Z adding 'torch/include/ATen/ops/cosh_cuda_dispatch.h' 2025-01-24T02:56:21.3585790Z adding 'torch/include/ATen/ops/cosh_meta.h' 2025-01-24T02:56:21.3587020Z adding 'torch/include/ATen/ops/cosh_meta_dispatch.h' 2025-01-24T02:56:21.3588070Z adding 'torch/include/ATen/ops/cosh_mps_dispatch.h' 2025-01-24T02:56:21.3588640Z adding 'torch/include/ATen/ops/cosh_native.h' 2025-01-24T02:56:21.3589990Z adding 'torch/include/ATen/ops/cosh_ops.h' 2025-01-24T02:56:21.3590940Z adding 'torch/include/ATen/ops/cosine_embedding_loss.h' 2025-01-24T02:56:21.3592380Z adding 'torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3592850Z adding 'torch/include/ATen/ops/cosine_embedding_loss_native.h' 2025-01-24T02:56:21.3594160Z adding 'torch/include/ATen/ops/cosine_embedding_loss_ops.h' 2025-01-24T02:56:21.3595000Z adding 'torch/include/ATen/ops/cosine_similarity.h' 2025-01-24T02:56:21.3596370Z adding 'torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3596870Z adding 'torch/include/ATen/ops/cosine_similarity_native.h' 2025-01-24T02:56:21.3598210Z adding 'torch/include/ATen/ops/cosine_similarity_ops.h' 2025-01-24T02:56:21.3599400Z adding 'torch/include/ATen/ops/count_nonzero.h' 2025-01-24T02:56:21.3600470Z adding 'torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3601570Z adding 'torch/include/ATen/ops/count_nonzero_cpu_dispatch.h' 2025-01-24T02:56:21.3602080Z adding 'torch/include/ATen/ops/count_nonzero_cuda_dispatch.h' 2025-01-24T02:56:21.3603330Z adding 'torch/include/ATen/ops/count_nonzero_mps_dispatch.h' 2025-01-24T02:56:21.3604560Z adding 'torch/include/ATen/ops/count_nonzero_native.h' 2025-01-24T02:56:21.3605400Z adding 'torch/include/ATen/ops/count_nonzero_ops.h' 2025-01-24T02:56:21.3606650Z adding 'torch/include/ATen/ops/cov.h' 2025-01-24T02:56:21.3607810Z adding 'torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3608960Z adding 'torch/include/ATen/ops/cov_native.h' 2025-01-24T02:56:21.3609800Z adding 'torch/include/ATen/ops/cov_ops.h' 2025-01-24T02:56:21.3611010Z adding 'torch/include/ATen/ops/cross.h' 2025-01-24T02:56:21.3612160Z adding 'torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3613320Z adding 'torch/include/ATen/ops/cross_entropy_loss.h' 2025-01-24T02:56:21.3614380Z adding 'torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3615550Z adding 'torch/include/ATen/ops/cross_entropy_loss_native.h' 2025-01-24T02:56:21.3616760Z adding 'torch/include/ATen/ops/cross_entropy_loss_ops.h' 2025-01-24T02:56:21.3617610Z adding 'torch/include/ATen/ops/cross_native.h' 2025-01-24T02:56:21.3619180Z adding 'torch/include/ATen/ops/cross_ops.h' 2025-01-24T02:56:21.3620080Z adding 'torch/include/ATen/ops/crow_indices.h' 2025-01-24T02:56:21.3621360Z adding 'torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3622460Z adding 'torch/include/ATen/ops/crow_indices_copy.h' 2025-01-24T02:56:21.3623670Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3624310Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3625440Z adding 'torch/include/ATen/ops/crow_indices_copy_native.h' 2025-01-24T02:56:21.3626650Z adding 'torch/include/ATen/ops/crow_indices_copy_ops.h' 2025-01-24T02:56:21.3627190Z adding 'torch/include/ATen/ops/crow_indices_native.h' 2025-01-24T02:56:21.3628490Z adding 'torch/include/ATen/ops/crow_indices_ops.h' 2025-01-24T02:56:21.3629560Z adding 'torch/include/ATen/ops/ctc_loss.h' 2025-01-24T02:56:21.3630890Z adding 'torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3631690Z adding 'torch/include/ATen/ops/ctc_loss_native.h' 2025-01-24T02:56:21.3632990Z adding 'torch/include/ATen/ops/ctc_loss_ops.h' 2025-01-24T02:56:21.3634280Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator.h' 2025-01-24T02:56:21.3635210Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h' 2025-01-24T02:56:21.3636560Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3637310Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h' 2025-01-24T02:56:21.3638580Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h' 2025-01-24T02:56:21.3639780Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h' 2025-01-24T02:56:21.3640750Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3641890Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h' 2025-01-24T02:56:21.3642500Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_native.h' 2025-01-24T02:56:21.3643880Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h' 2025-01-24T02:56:21.3645070Z adding 'torch/include/ATen/ops/cudnn_batch_norm.h' 2025-01-24T02:56:21.3646220Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward.h' 2025-01-24T02:56:21.3647580Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3648180Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h' 2025-01-24T02:56:21.3649450Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_native.h' 2025-01-24T02:56:21.3650670Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h' 2025-01-24T02:56:21.3652000Z adding 'torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3652510Z adding 'torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h' 2025-01-24T02:56:21.3653800Z adding 'torch/include/ATen/ops/cudnn_batch_norm_native.h' 2025-01-24T02:56:21.3655010Z adding 'torch/include/ATen/ops/cudnn_batch_norm_ops.h' 2025-01-24T02:56:21.3656360Z adding 'torch/include/ATen/ops/cudnn_convolution.h' 2025-01-24T02:56:21.3657760Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu.h' 2025-01-24T02:56:21.3659120Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3659720Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h' 2025-01-24T02:56:21.3660990Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_native.h' 2025-01-24T02:56:21.3662190Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h' 2025-01-24T02:56:21.3663410Z adding 'torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h' 2025-01-24T02:56:21.3663980Z adding 'torch/include/ATen/ops/cudnn_convolution_native.h' 2025-01-24T02:56:21.3665380Z adding 'torch/include/ATen/ops/cudnn_convolution_ops.h' 2025-01-24T02:56:21.3666700Z adding 'torch/include/ATen/ops/cudnn_convolution_relu.h' 2025-01-24T02:56:21.3668100Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3668690Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h' 2025-01-24T02:56:21.3669980Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_native.h' 2025-01-24T02:56:21.3671180Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_ops.h' 2025-01-24T02:56:21.3672560Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose.h' 2025-01-24T02:56:21.3673930Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3674560Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h' 2025-01-24T02:56:21.3675870Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_native.h' 2025-01-24T02:56:21.3677080Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_ops.h' 2025-01-24T02:56:21.3678280Z adding 'torch/include/ATen/ops/cudnn_grid_sampler.h' 2025-01-24T02:56:21.3679140Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward.h' 2025-01-24T02:56:21.3680520Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3681080Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h' 2025-01-24T02:56:21.3682380Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h' 2025-01-24T02:56:21.3683580Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h' 2025-01-24T02:56:21.3684330Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3685580Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h' 2025-01-24T02:56:21.3686420Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_native.h' 2025-01-24T02:56:21.3687610Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_ops.h' 2025-01-24T02:56:21.3688480Z adding 'torch/include/ATen/ops/cudnn_is_acceptable.h' 2025-01-24T02:56:21.3689890Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3690340Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_native.h' 2025-01-24T02:56:21.3691640Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_ops.h' 2025-01-24T02:56:21.3692800Z adding 'torch/include/ATen/ops/cummax.h' 2025-01-24T02:56:21.3693770Z adding 'torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3695010Z adding 'torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3695540Z adding 'torch/include/ATen/ops/cummax_native.h' 2025-01-24T02:56:21.3697010Z adding 'torch/include/ATen/ops/cummax_ops.h' 2025-01-24T02:56:21.3698250Z adding 'torch/include/ATen/ops/cummaxmin_backward.h' 2025-01-24T02:56:21.3698980Z adding 'torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3700170Z adding 'torch/include/ATen/ops/cummaxmin_backward_native.h' 2025-01-24T02:56:21.3701020Z adding 'torch/include/ATen/ops/cummaxmin_backward_ops.h' 2025-01-24T02:56:21.3702300Z adding 'torch/include/ATen/ops/cummin.h' 2025-01-24T02:56:21.3703650Z adding 'torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3704250Z adding 'torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3705440Z adding 'torch/include/ATen/ops/cummin_native.h' 2025-01-24T02:56:21.3706650Z adding 'torch/include/ATen/ops/cummin_ops.h' 2025-01-24T02:56:21.3707830Z adding 'torch/include/ATen/ops/cumprod.h' 2025-01-24T02:56:21.3708700Z adding 'torch/include/ATen/ops/cumprod_backward.h' 2025-01-24T02:56:21.3709990Z adding 'torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3710760Z adding 'torch/include/ATen/ops/cumprod_backward_native.h' 2025-01-24T02:56:21.3712070Z adding 'torch/include/ATen/ops/cumprod_backward_ops.h' 2025-01-24T02:56:21.3712830Z adding 'torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3714120Z adding 'torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3714900Z adding 'torch/include/ATen/ops/cumprod_cpu_dispatch.h' 2025-01-24T02:56:21.3716110Z adding 'torch/include/ATen/ops/cumprod_cuda_dispatch.h' 2025-01-24T02:56:21.3716960Z adding 'torch/include/ATen/ops/cumprod_meta.h' 2025-01-24T02:56:21.3718200Z adding 'torch/include/ATen/ops/cumprod_meta_dispatch.h' 2025-01-24T02:56:21.3718710Z adding 'torch/include/ATen/ops/cumprod_mps_dispatch.h' 2025-01-24T02:56:21.3720030Z adding 'torch/include/ATen/ops/cumprod_native.h' 2025-01-24T02:56:21.3721300Z adding 'torch/include/ATen/ops/cumprod_ops.h' 2025-01-24T02:56:21.3722500Z adding 'torch/include/ATen/ops/cumsum.h' 2025-01-24T02:56:21.3723540Z adding 'torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3724680Z adding 'torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3725570Z adding 'torch/include/ATen/ops/cumsum_cpu_dispatch.h' 2025-01-24T02:56:21.3726720Z adding 'torch/include/ATen/ops/cumsum_cuda_dispatch.h' 2025-01-24T02:56:21.3727290Z adding 'torch/include/ATen/ops/cumsum_meta.h' 2025-01-24T02:56:21.3728550Z adding 'torch/include/ATen/ops/cumsum_meta_dispatch.h' 2025-01-24T02:56:21.3729610Z adding 'torch/include/ATen/ops/cumsum_mps_dispatch.h' 2025-01-24T02:56:21.3730460Z adding 'torch/include/ATen/ops/cumsum_native.h' 2025-01-24T02:56:21.3731790Z adding 'torch/include/ATen/ops/cumsum_ops.h' 2025-01-24T02:56:21.3733020Z adding 'torch/include/ATen/ops/cumulative_trapezoid.h' 2025-01-24T02:56:21.3733830Z adding 'torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3738330Z adding 'torch/include/ATen/ops/cumulative_trapezoid_native.h' 2025-01-24T02:56:21.3738640Z adding 'torch/include/ATen/ops/cumulative_trapezoid_ops.h' 2025-01-24T02:56:21.3738750Z adding 'torch/include/ATen/ops/data.h' 2025-01-24T02:56:21.3739010Z adding 'torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3739140Z adding 'torch/include/ATen/ops/data_native.h' 2025-01-24T02:56:21.3739700Z adding 'torch/include/ATen/ops/data_ops.h' 2025-01-24T02:56:21.3768260Z adding 'torch/include/ATen/ops/deg2rad.h' 2025-01-24T02:56:21.3769610Z adding 'torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3770380Z adding 'torch/include/ATen/ops/deg2rad_native.h' 2025-01-24T02:56:21.3771740Z adding 'torch/include/ATen/ops/deg2rad_ops.h' 2025-01-24T02:56:21.3772540Z adding 'torch/include/ATen/ops/dense_dim.h' 2025-01-24T02:56:21.3773890Z adding 'torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3774460Z adding 'torch/include/ATen/ops/dense_dim_native.h' 2025-01-24T02:56:21.3775780Z adding 'torch/include/ATen/ops/dense_dim_ops.h' 2025-01-24T02:56:21.3776990Z adding 'torch/include/ATen/ops/dequantize.h' 2025-01-24T02:56:21.3778020Z adding 'torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3779130Z adding 'torch/include/ATen/ops/dequantize_cpu_dispatch.h' 2025-01-24T02:56:21.3779750Z adding 'torch/include/ATen/ops/dequantize_cuda_dispatch.h' 2025-01-24T02:56:21.3780990Z adding 'torch/include/ATen/ops/dequantize_native.h' 2025-01-24T02:56:21.3782200Z adding 'torch/include/ATen/ops/dequantize_ops.h' 2025-01-24T02:56:21.3783060Z adding 'torch/include/ATen/ops/det.h' 2025-01-24T02:56:21.3784400Z adding 'torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3784890Z adding 'torch/include/ATen/ops/det_native.h' 2025-01-24T02:56:21.3786230Z adding 'torch/include/ATen/ops/det_ops.h' 2025-01-24T02:56:21.3787110Z adding 'torch/include/ATen/ops/detach.h' 2025-01-24T02:56:21.3788530Z adding 'torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3789030Z adding 'torch/include/ATen/ops/detach_copy.h' 2025-01-24T02:56:21.3790500Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3791290Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3792440Z adding 'torch/include/ATen/ops/detach_copy_native.h' 2025-01-24T02:56:21.3793310Z adding 'torch/include/ATen/ops/detach_copy_ops.h' 2025-01-24T02:56:21.3794450Z adding 'torch/include/ATen/ops/detach_native.h' 2025-01-24T02:56:21.3795670Z adding 'torch/include/ATen/ops/detach_ops.h' 2025-01-24T02:56:21.3796290Z adding 'torch/include/ATen/ops/diag.h' 2025-01-24T02:56:21.3797710Z adding 'torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3798810Z adding 'torch/include/ATen/ops/diag_embed.h' 2025-01-24T02:56:21.3799820Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3801090Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3801470Z adding 'torch/include/ATen/ops/diag_embed_native.h' 2025-01-24T02:56:21.3802870Z adding 'torch/include/ATen/ops/diag_embed_ops.h' 2025-01-24T02:56:21.3803700Z adding 'torch/include/ATen/ops/diag_native.h' 2025-01-24T02:56:21.3804940Z adding 'torch/include/ATen/ops/diag_ops.h' 2025-01-24T02:56:21.3805880Z adding 'torch/include/ATen/ops/diagflat.h' 2025-01-24T02:56:21.3806940Z adding 'torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3808060Z adding 'torch/include/ATen/ops/diagflat_native.h' 2025-01-24T02:56:21.3809090Z adding 'torch/include/ATen/ops/diagflat_ops.h' 2025-01-24T02:56:21.3809950Z adding 'torch/include/ATen/ops/diagonal.h' 2025-01-24T02:56:21.3811340Z adding 'torch/include/ATen/ops/diagonal_backward.h' 2025-01-24T02:56:21.3812680Z adding 'torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3813210Z adding 'torch/include/ATen/ops/diagonal_backward_native.h' 2025-01-24T02:56:21.3814620Z adding 'torch/include/ATen/ops/diagonal_backward_ops.h' 2025-01-24T02:56:21.3815600Z adding 'torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3816910Z adding 'torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3817420Z adding 'torch/include/ATen/ops/diagonal_copy.h' 2025-01-24T02:56:21.3818860Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3819610Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3820770Z adding 'torch/include/ATen/ops/diagonal_copy_native.h' 2025-01-24T02:56:21.3821930Z adding 'torch/include/ATen/ops/diagonal_copy_ops.h' 2025-01-24T02:56:21.3822470Z adding 'torch/include/ATen/ops/diagonal_native.h' 2025-01-24T02:56:21.3823840Z adding 'torch/include/ATen/ops/diagonal_ops.h' 2025-01-24T02:56:21.3825050Z adding 'torch/include/ATen/ops/diagonal_scatter.h' 2025-01-24T02:56:21.3826220Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3826890Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3827960Z adding 'torch/include/ATen/ops/diagonal_scatter_native.h' 2025-01-24T02:56:21.3829190Z adding 'torch/include/ATen/ops/diagonal_scatter_ops.h' 2025-01-24T02:56:21.3830030Z adding 'torch/include/ATen/ops/diff.h' 2025-01-24T02:56:21.3831360Z adding 'torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3831920Z adding 'torch/include/ATen/ops/diff_native.h' 2025-01-24T02:56:21.3833330Z adding 'torch/include/ATen/ops/diff_ops.h' 2025-01-24T02:56:21.3834190Z adding 'torch/include/ATen/ops/digamma.h' 2025-01-24T02:56:21.3835570Z adding 'torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3836160Z adding 'torch/include/ATen/ops/digamma_cpu_dispatch.h' 2025-01-24T02:56:21.3837810Z adding 'torch/include/ATen/ops/digamma_cuda_dispatch.h' 2025-01-24T02:56:21.3838640Z adding 'torch/include/ATen/ops/digamma_meta.h' 2025-01-24T02:56:21.3839900Z adding 'torch/include/ATen/ops/digamma_meta_dispatch.h' 2025-01-24T02:56:21.3840430Z adding 'torch/include/ATen/ops/digamma_mps_dispatch.h' 2025-01-24T02:56:21.3841660Z adding 'torch/include/ATen/ops/digamma_native.h' 2025-01-24T02:56:21.3842770Z adding 'torch/include/ATen/ops/digamma_ops.h' 2025-01-24T02:56:21.3843970Z adding 'torch/include/ATen/ops/dist.h' 2025-01-24T02:56:21.3844690Z adding 'torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3845940Z adding 'torch/include/ATen/ops/dist_native.h' 2025-01-24T02:56:21.3846780Z adding 'torch/include/ATen/ops/dist_ops.h' 2025-01-24T02:56:21.3848100Z adding 'torch/include/ATen/ops/div.h' 2025-01-24T02:56:21.3849420Z adding 'torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3850150Z adding 'torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3851460Z adding 'torch/include/ATen/ops/div_cpu_dispatch.h' 2025-01-24T02:56:21.3852070Z adding 'torch/include/ATen/ops/div_cuda_dispatch.h' 2025-01-24T02:56:21.3853300Z adding 'torch/include/ATen/ops/div_meta.h' 2025-01-24T02:56:21.3854160Z adding 'torch/include/ATen/ops/div_meta_dispatch.h' 2025-01-24T02:56:21.3855290Z adding 'torch/include/ATen/ops/div_mps_dispatch.h' 2025-01-24T02:56:21.3856390Z adding 'torch/include/ATen/ops/div_native.h' 2025-01-24T02:56:21.3857880Z adding 'torch/include/ATen/ops/div_ops.h' 2025-01-24T02:56:21.3859050Z adding 'torch/include/ATen/ops/divide.h' 2025-01-24T02:56:21.3860360Z adding 'torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3860890Z adding 'torch/include/ATen/ops/divide_native.h' 2025-01-24T02:56:21.3862560Z adding 'torch/include/ATen/ops/divide_ops.h' 2025-01-24T02:56:21.3863730Z adding 'torch/include/ATen/ops/dot.h' 2025-01-24T02:56:21.3864720Z adding 'torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3865830Z adding 'torch/include/ATen/ops/dot_cpu_dispatch.h' 2025-01-24T02:56:21.3866380Z adding 'torch/include/ATen/ops/dot_cuda_dispatch.h' 2025-01-24T02:56:21.3867550Z adding 'torch/include/ATen/ops/dot_mps_dispatch.h' 2025-01-24T02:56:21.3868730Z adding 'torch/include/ATen/ops/dot_native.h' 2025-01-24T02:56:21.3869930Z adding 'torch/include/ATen/ops/dot_ops.h' 2025-01-24T02:56:21.3870800Z adding 'torch/include/ATen/ops/dropout.h' 2025-01-24T02:56:21.3872120Z adding 'torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3872900Z adding 'torch/include/ATen/ops/dropout_native.h' 2025-01-24T02:56:21.3874140Z adding 'torch/include/ATen/ops/dropout_ops.h' 2025-01-24T02:56:21.3875180Z adding 'torch/include/ATen/ops/dsplit.h' 2025-01-24T02:56:21.3876150Z adding 'torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3877280Z adding 'torch/include/ATen/ops/dsplit_native.h' 2025-01-24T02:56:21.3878130Z adding 'torch/include/ATen/ops/dsplit_ops.h' 2025-01-24T02:56:21.3879300Z adding 'torch/include/ATen/ops/dstack.h' 2025-01-24T02:56:21.3880270Z adding 'torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3881360Z adding 'torch/include/ATen/ops/dstack_native.h' 2025-01-24T02:56:21.3882210Z adding 'torch/include/ATen/ops/dstack_ops.h' 2025-01-24T02:56:21.3883390Z adding 'torch/include/ATen/ops/einsum.h' 2025-01-24T02:56:21.3884360Z adding 'torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3885450Z adding 'torch/include/ATen/ops/einsum_native.h' 2025-01-24T02:56:21.3886300Z adding 'torch/include/ATen/ops/einsum_ops.h' 2025-01-24T02:56:21.3887470Z adding 'torch/include/ATen/ops/elu.h' 2025-01-24T02:56:21.3888370Z adding 'torch/include/ATen/ops/elu_backward.h' 2025-01-24T02:56:21.3889800Z adding 'torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3890960Z adding 'torch/include/ATen/ops/elu_backward_cpu_dispatch.h' 2025-01-24T02:56:21.3891830Z adding 'torch/include/ATen/ops/elu_backward_cuda_dispatch.h' 2025-01-24T02:56:21.3893010Z adding 'torch/include/ATen/ops/elu_backward_meta.h' 2025-01-24T02:56:21.3894070Z adding 'torch/include/ATen/ops/elu_backward_meta_dispatch.h' 2025-01-24T02:56:21.3894620Z adding 'torch/include/ATen/ops/elu_backward_mps_dispatch.h' 2025-01-24T02:56:21.3895870Z adding 'torch/include/ATen/ops/elu_backward_native.h' 2025-01-24T02:56:21.3897020Z adding 'torch/include/ATen/ops/elu_backward_ops.h' 2025-01-24T02:56:21.3898200Z adding 'torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3898920Z adding 'torch/include/ATen/ops/elu_cpu_dispatch.h' 2025-01-24T02:56:21.3900070Z adding 'torch/include/ATen/ops/elu_cuda_dispatch.h' 2025-01-24T02:56:21.3901080Z adding 'torch/include/ATen/ops/elu_meta.h' 2025-01-24T02:56:21.3901940Z adding 'torch/include/ATen/ops/elu_meta_dispatch.h' 2025-01-24T02:56:21.3903000Z adding 'torch/include/ATen/ops/elu_mps_dispatch.h' 2025-01-24T02:56:21.3904050Z adding 'torch/include/ATen/ops/elu_native.h' 2025-01-24T02:56:21.3905220Z adding 'torch/include/ATen/ops/elu_ops.h' 2025-01-24T02:56:21.3906440Z adding 'torch/include/ATen/ops/embedding.h' 2025-01-24T02:56:21.3907650Z adding 'torch/include/ATen/ops/embedding_backward.h' 2025-01-24T02:56:21.3908670Z adding 'torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3909440Z adding 'torch/include/ATen/ops/embedding_backward_native.h' 2025-01-24T02:56:21.3910650Z adding 'torch/include/ATen/ops/embedding_backward_ops.h' 2025-01-24T02:56:21.3911940Z adding 'torch/include/ATen/ops/embedding_bag.h' 2025-01-24T02:56:21.3912670Z adding 'torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3913830Z adding 'torch/include/ATen/ops/embedding_bag_native.h' 2025-01-24T02:56:21.3915040Z adding 'torch/include/ATen/ops/embedding_bag_ops.h' 2025-01-24T02:56:21.3916220Z adding 'torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3917410Z adding 'torch/include/ATen/ops/embedding_dense_backward.h' 2025-01-24T02:56:21.3918760Z adding 'torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3919300Z adding 'torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h' 2025-01-24T02:56:21.3920640Z adding 'torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h' 2025-01-24T02:56:21.3921270Z adding 'torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h' 2025-01-24T02:56:21.3922540Z adding 'torch/include/ATen/ops/embedding_dense_backward_native.h' 2025-01-24T02:56:21.3923700Z adding 'torch/include/ATen/ops/embedding_dense_backward_ops.h' 2025-01-24T02:56:21.3924530Z adding 'torch/include/ATen/ops/embedding_native.h' 2025-01-24T02:56:21.3925720Z adding 'torch/include/ATen/ops/embedding_ops.h' 2025-01-24T02:56:21.3926930Z adding 'torch/include/ATen/ops/embedding_renorm.h' 2025-01-24T02:56:21.3928120Z adding 'torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3928680Z adding 'torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h' 2025-01-24T02:56:21.3929990Z adding 'torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h' 2025-01-24T02:56:21.3930630Z adding 'torch/include/ATen/ops/embedding_renorm_meta_dispatch.h' 2025-01-24T02:56:21.3931930Z adding 'torch/include/ATen/ops/embedding_renorm_native.h' 2025-01-24T02:56:21.3933140Z adding 'torch/include/ATen/ops/embedding_renorm_ops.h' 2025-01-24T02:56:21.3934040Z adding 'torch/include/ATen/ops/embedding_sparse_backward.h' 2025-01-24T02:56:21.3938580Z adding 'torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3938940Z adding 'torch/include/ATen/ops/embedding_sparse_backward_native.h' 2025-01-24T02:56:21.3939140Z adding 'torch/include/ATen/ops/embedding_sparse_backward_ops.h' 2025-01-24T02:56:21.3939260Z adding 'torch/include/ATen/ops/empty.h' 2025-01-24T02:56:21.3939530Z adding 'torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3940870Z adding 'torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.3941990Z adding 'torch/include/ATen/ops/empty_cpu_dispatch.h' 2025-01-24T02:56:21.3942550Z adding 'torch/include/ATen/ops/empty_cuda_dispatch.h' 2025-01-24T02:56:21.3943910Z adding 'torch/include/ATen/ops/empty_like.h' 2025-01-24T02:56:21.3945260Z adding 'torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3945780Z adding 'torch/include/ATen/ops/empty_like_native.h' 2025-01-24T02:56:21.3947160Z adding 'torch/include/ATen/ops/empty_like_ops.h' 2025-01-24T02:56:21.3948210Z adding 'torch/include/ATen/ops/empty_meta_dispatch.h' 2025-01-24T02:56:21.3949080Z adding 'torch/include/ATen/ops/empty_mps_dispatch.h' 2025-01-24T02:56:21.3950300Z adding 'torch/include/ATen/ops/empty_native.h' 2025-01-24T02:56:21.3951570Z adding 'torch/include/ATen/ops/empty_ops.h' 2025-01-24T02:56:21.3952950Z adding 'torch/include/ATen/ops/empty_permuted.h' 2025-01-24T02:56:21.3954370Z adding 'torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3954820Z adding 'torch/include/ATen/ops/empty_permuted_native.h' 2025-01-24T02:56:21.3956200Z adding 'torch/include/ATen/ops/empty_permuted_ops.h' 2025-01-24T02:56:21.3957350Z adding 'torch/include/ATen/ops/empty_quantized.h' 2025-01-24T02:56:21.3958530Z adding 'torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3959140Z adding 'torch/include/ATen/ops/empty_quantized_native.h' 2025-01-24T02:56:21.3960550Z adding 'torch/include/ATen/ops/empty_quantized_ops.h' 2025-01-24T02:56:21.3961880Z adding 'torch/include/ATen/ops/empty_strided.h' 2025-01-24T02:56:21.3963240Z adding 'torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.3963770Z adding 'torch/include/ATen/ops/empty_strided_cpu_dispatch.h' 2025-01-24T02:56:21.3965100Z adding 'torch/include/ATen/ops/empty_strided_cuda_dispatch.h' 2025-01-24T02:56:21.3965970Z adding 'torch/include/ATen/ops/empty_strided_meta_dispatch.h' 2025-01-24T02:56:21.3967180Z adding 'torch/include/ATen/ops/empty_strided_mps_dispatch.h' 2025-01-24T02:56:21.3968040Z adding 'torch/include/ATen/ops/empty_strided_native.h' 2025-01-24T02:56:21.3969330Z adding 'torch/include/ATen/ops/empty_strided_ops.h' 2025-01-24T02:56:21.3970660Z adding 'torch/include/ATen/ops/eq.h' 2025-01-24T02:56:21.3971780Z adding 'torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3972940Z adding 'torch/include/ATen/ops/eq_cpu_dispatch.h' 2025-01-24T02:56:21.3973750Z adding 'torch/include/ATen/ops/eq_cuda_dispatch.h' 2025-01-24T02:56:21.3974800Z adding 'torch/include/ATen/ops/eq_meta.h' 2025-01-24T02:56:21.3975670Z adding 'torch/include/ATen/ops/eq_meta_dispatch.h' 2025-01-24T02:56:21.3976800Z adding 'torch/include/ATen/ops/eq_mps_dispatch.h' 2025-01-24T02:56:21.3978010Z adding 'torch/include/ATen/ops/eq_native.h' 2025-01-24T02:56:21.3979180Z adding 'torch/include/ATen/ops/eq_ops.h' 2025-01-24T02:56:21.3980010Z adding 'torch/include/ATen/ops/equal.h' 2025-01-24T02:56:21.3981230Z adding 'torch/include/ATen/ops/equal_cpu_dispatch.h' 2025-01-24T02:56:21.3982100Z adding 'torch/include/ATen/ops/equal_cuda_dispatch.h' 2025-01-24T02:56:21.3982960Z adding 'torch/include/ATen/ops/equal_mps_dispatch.h' 2025-01-24T02:56:21.3984040Z adding 'torch/include/ATen/ops/equal_native.h' 2025-01-24T02:56:21.3984890Z adding 'torch/include/ATen/ops/equal_ops.h' 2025-01-24T02:56:21.3986070Z adding 'torch/include/ATen/ops/erf.h' 2025-01-24T02:56:21.3987100Z adding 'torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3988160Z adding 'torch/include/ATen/ops/erf_cpu_dispatch.h' 2025-01-24T02:56:21.3989200Z adding 'torch/include/ATen/ops/erf_cuda_dispatch.h' 2025-01-24T02:56:21.3989730Z adding 'torch/include/ATen/ops/erf_meta.h' 2025-01-24T02:56:21.3990980Z adding 'torch/include/ATen/ops/erf_meta_dispatch.h' 2025-01-24T02:56:21.3992030Z adding 'torch/include/ATen/ops/erf_mps_dispatch.h' 2025-01-24T02:56:21.3993050Z adding 'torch/include/ATen/ops/erf_native.h' 2025-01-24T02:56:21.3993920Z adding 'torch/include/ATen/ops/erf_ops.h' 2025-01-24T02:56:21.3995090Z adding 'torch/include/ATen/ops/erfc.h' 2025-01-24T02:56:21.3996120Z adding 'torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.3997170Z adding 'torch/include/ATen/ops/erfc_cpu_dispatch.h' 2025-01-24T02:56:21.3997730Z adding 'torch/include/ATen/ops/erfc_cuda_dispatch.h' 2025-01-24T02:56:21.3998910Z adding 'torch/include/ATen/ops/erfc_meta.h' 2025-01-24T02:56:21.3999780Z adding 'torch/include/ATen/ops/erfc_meta_dispatch.h' 2025-01-24T02:56:21.4000850Z adding 'torch/include/ATen/ops/erfc_native.h' 2025-01-24T02:56:21.4002020Z adding 'torch/include/ATen/ops/erfc_ops.h' 2025-01-24T02:56:21.4002850Z adding 'torch/include/ATen/ops/erfinv.h' 2025-01-24T02:56:21.4004230Z adding 'torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4004710Z adding 'torch/include/ATen/ops/erfinv_cpu_dispatch.h' 2025-01-24T02:56:21.4006000Z adding 'torch/include/ATen/ops/erfinv_cuda_dispatch.h' 2025-01-24T02:56:21.4006580Z adding 'torch/include/ATen/ops/erfinv_meta.h' 2025-01-24T02:56:21.4007900Z adding 'torch/include/ATen/ops/erfinv_meta_dispatch.h' 2025-01-24T02:56:21.4008510Z adding 'torch/include/ATen/ops/erfinv_mps_dispatch.h' 2025-01-24T02:56:21.4009810Z adding 'torch/include/ATen/ops/erfinv_native.h' 2025-01-24T02:56:21.4011020Z adding 'torch/include/ATen/ops/erfinv_ops.h' 2025-01-24T02:56:21.4011630Z adding 'torch/include/ATen/ops/exp.h' 2025-01-24T02:56:21.4012940Z adding 'torch/include/ATen/ops/exp2.h' 2025-01-24T02:56:21.4014190Z adding 'torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4014650Z adding 'torch/include/ATen/ops/exp2_cpu_dispatch.h' 2025-01-24T02:56:21.4016030Z adding 'torch/include/ATen/ops/exp2_cuda_dispatch.h' 2025-01-24T02:56:21.4016560Z adding 'torch/include/ATen/ops/exp2_meta.h' 2025-01-24T02:56:21.4017810Z adding 'torch/include/ATen/ops/exp2_meta_dispatch.h' 2025-01-24T02:56:21.4018670Z adding 'torch/include/ATen/ops/exp2_mps_dispatch.h' 2025-01-24T02:56:21.4019540Z adding 'torch/include/ATen/ops/exp2_native.h' 2025-01-24T02:56:21.4020780Z adding 'torch/include/ATen/ops/exp2_ops.h' 2025-01-24T02:56:21.4021790Z adding 'torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4022850Z adding 'torch/include/ATen/ops/exp_cpu_dispatch.h' 2025-01-24T02:56:21.4023450Z adding 'torch/include/ATen/ops/exp_cuda_dispatch.h' 2025-01-24T02:56:21.4024640Z adding 'torch/include/ATen/ops/exp_meta.h' 2025-01-24T02:56:21.4025510Z adding 'torch/include/ATen/ops/exp_meta_dispatch.h' 2025-01-24T02:56:21.4026590Z adding 'torch/include/ATen/ops/exp_mps_dispatch.h' 2025-01-24T02:56:21.4027600Z adding 'torch/include/ATen/ops/exp_native.h' 2025-01-24T02:56:21.4028780Z adding 'torch/include/ATen/ops/exp_ops.h' 2025-01-24T02:56:21.4029610Z adding 'torch/include/ATen/ops/expand.h' 2025-01-24T02:56:21.4030800Z adding 'torch/include/ATen/ops/expand_as.h' 2025-01-24T02:56:21.4031780Z adding 'torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4032530Z adding 'torch/include/ATen/ops/expand_as_native.h' 2025-01-24T02:56:21.4033710Z adding 'torch/include/ATen/ops/expand_as_ops.h' 2025-01-24T02:56:21.4034700Z adding 'torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4035930Z adding 'torch/include/ATen/ops/expand_copy.h' 2025-01-24T02:56:21.4037300Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4037920Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4038990Z adding 'torch/include/ATen/ops/expand_copy_native.h' 2025-01-24T02:56:21.4040220Z adding 'torch/include/ATen/ops/expand_copy_ops.h' 2025-01-24T02:56:21.4040740Z adding 'torch/include/ATen/ops/expand_native.h' 2025-01-24T02:56:21.4042050Z adding 'torch/include/ATen/ops/expand_ops.h' 2025-01-24T02:56:21.4042880Z adding 'torch/include/ATen/ops/expm1.h' 2025-01-24T02:56:21.4044280Z adding 'torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4044870Z adding 'torch/include/ATen/ops/expm1_cpu_dispatch.h' 2025-01-24T02:56:21.4046090Z adding 'torch/include/ATen/ops/expm1_cuda_dispatch.h' 2025-01-24T02:56:21.4046920Z adding 'torch/include/ATen/ops/expm1_meta.h' 2025-01-24T02:56:21.4047990Z adding 'torch/include/ATen/ops/expm1_meta_dispatch.h' 2025-01-24T02:56:21.4048690Z adding 'torch/include/ATen/ops/expm1_mps_dispatch.h' 2025-01-24T02:56:21.4049970Z adding 'torch/include/ATen/ops/expm1_native.h' 2025-01-24T02:56:21.4051200Z adding 'torch/include/ATen/ops/expm1_ops.h' 2025-01-24T02:56:21.4051880Z adding 'torch/include/ATen/ops/exponential.h' 2025-01-24T02:56:21.4053250Z adding 'torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4053990Z adding 'torch/include/ATen/ops/exponential_cpu_dispatch.h' 2025-01-24T02:56:21.4055340Z adding 'torch/include/ATen/ops/exponential_cuda_dispatch.h' 2025-01-24T02:56:21.4055810Z adding 'torch/include/ATen/ops/exponential_meta_dispatch.h' 2025-01-24T02:56:21.4057150Z adding 'torch/include/ATen/ops/exponential_mps_dispatch.h' 2025-01-24T02:56:21.4057780Z adding 'torch/include/ATen/ops/exponential_native.h' 2025-01-24T02:56:21.4059200Z adding 'torch/include/ATen/ops/exponential_ops.h' 2025-01-24T02:56:21.4060670Z adding 'torch/include/ATen/ops/eye.h' 2025-01-24T02:56:21.4061670Z adding 'torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4062580Z adding 'torch/include/ATen/ops/eye_cpu_dispatch.h' 2025-01-24T02:56:21.4064050Z adding 'torch/include/ATen/ops/eye_cuda_dispatch.h' 2025-01-24T02:56:21.4064620Z adding 'torch/include/ATen/ops/eye_meta_dispatch.h' 2025-01-24T02:56:21.4065640Z adding 'torch/include/ATen/ops/eye_mps_dispatch.h' 2025-01-24T02:56:21.4066900Z adding 'torch/include/ATen/ops/eye_native.h' 2025-01-24T02:56:21.4070760Z adding 'torch/include/ATen/ops/eye_ops.h' 2025-01-24T02:56:21.4071170Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine.h' 2025-01-24T02:56:21.4071750Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h' 2025-01-24T02:56:21.4072360Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h' 2025-01-24T02:56:21.4073160Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4073950Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h' 2025-01-24T02:56:21.4074620Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h' 2025-01-24T02:56:21.4075370Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4076290Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h' 2025-01-24T02:56:21.4077260Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h' 2025-01-24T02:56:21.4078250Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h' 2025-01-24T02:56:21.4079750Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h' 2025-01-24T02:56:21.4080610Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4081490Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h' 2025-01-24T02:56:21.4082910Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h' 2025-01-24T02:56:21.4083580Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine.h' 2025-01-24T02:56:21.4085000Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h' 2025-01-24T02:56:21.4085760Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h' 2025-01-24T02:56:21.4086930Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4087800Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h' 2025-01-24T02:56:21.4088820Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h' 2025-01-24T02:56:21.4089940Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4090860Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h' 2025-01-24T02:56:21.4091820Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h' 2025-01-24T02:56:21.4092800Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h' 2025-01-24T02:56:21.4094280Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h' 2025-01-24T02:56:21.4095120Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4095980Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h' 2025-01-24T02:56:21.4097380Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h' 2025-01-24T02:56:21.4098060Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight.h' 2025-01-24T02:56:21.4099540Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4100280Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h' 2025-01-24T02:56:21.4101290Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4102160Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h' 2025-01-24T02:56:21.4103170Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h' 2025-01-24T02:56:21.4104080Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h' 2025-01-24T02:56:21.4105440Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h' 2025-01-24T02:56:21.4106100Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight.h' 2025-01-24T02:56:21.4107560Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4108300Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h' 2025-01-24T02:56:21.4109360Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4110210Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h' 2025-01-24T02:56:21.4111700Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h' 2025-01-24T02:56:21.4112230Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h' 2025-01-24T02:56:21.4113580Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h' 2025-01-24T02:56:21.4114230Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight.h' 2025-01-24T02:56:21.4115720Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4116460Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h' 2025-01-24T02:56:21.4117280Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h' 2025-01-24T02:56:21.4118640Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h' 2025-01-24T02:56:21.4119390Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4120230Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h' 2025-01-24T02:56:21.4121650Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h' 2025-01-24T02:56:21.4122270Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h' 2025-01-24T02:56:21.4123770Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4124490Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h' 2025-01-24T02:56:21.4125880Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h' 2025-01-24T02:56:21.4126530Z adding 'torch/include/ATen/ops/feature_alpha_dropout.h' 2025-01-24T02:56:21.4128030Z adding 'torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4128990Z adding 'torch/include/ATen/ops/feature_alpha_dropout_native.h' 2025-01-24T02:56:21.4130350Z adding 'torch/include/ATen/ops/feature_alpha_dropout_ops.h' 2025-01-24T02:56:21.4131040Z adding 'torch/include/ATen/ops/feature_dropout.h' 2025-01-24T02:56:21.4132490Z adding 'torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4133120Z adding 'torch/include/ATen/ops/feature_dropout_native.h' 2025-01-24T02:56:21.4134400Z adding 'torch/include/ATen/ops/feature_dropout_ops.h' 2025-01-24T02:56:21.4135630Z adding 'torch/include/ATen/ops/fft_fft.h' 2025-01-24T02:56:21.4136900Z adding 'torch/include/ATen/ops/fft_fft2.h' 2025-01-24T02:56:21.4138250Z adding 'torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4138790Z adding 'torch/include/ATen/ops/fft_fft2_native.h' 2025-01-24T02:56:21.4140080Z adding 'torch/include/ATen/ops/fft_fft2_ops.h' 2025-01-24T02:56:21.4141430Z adding 'torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4141890Z adding 'torch/include/ATen/ops/fft_fft_native.h' 2025-01-24T02:56:21.4143220Z adding 'torch/include/ATen/ops/fft_fft_ops.h' 2025-01-24T02:56:21.4144430Z adding 'torch/include/ATen/ops/fft_fftfreq.h' 2025-01-24T02:56:21.4145230Z adding 'torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4146090Z adding 'torch/include/ATen/ops/fft_fftfreq_native.h' 2025-01-24T02:56:21.4147490Z adding 'torch/include/ATen/ops/fft_fftfreq_ops.h' 2025-01-24T02:56:21.4148730Z adding 'torch/include/ATen/ops/fft_fftn.h' 2025-01-24T02:56:21.4150070Z adding 'torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4150560Z adding 'torch/include/ATen/ops/fft_fftn_native.h' 2025-01-24T02:56:21.4151890Z adding 'torch/include/ATen/ops/fft_fftn_ops.h' 2025-01-24T02:56:21.4152600Z adding 'torch/include/ATen/ops/fft_fftshift.h' 2025-01-24T02:56:21.4154030Z adding 'torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4154640Z adding 'torch/include/ATen/ops/fft_fftshift_native.h' 2025-01-24T02:56:21.4159340Z adding 'torch/include/ATen/ops/fft_fftshift_ops.h' 2025-01-24T02:56:21.4159710Z adding 'torch/include/ATen/ops/fft_hfft.h' 2025-01-24T02:56:21.4160030Z adding 'torch/include/ATen/ops/fft_hfft2.h' 2025-01-24T02:56:21.4160490Z adding 'torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4160980Z adding 'torch/include/ATen/ops/fft_hfft2_native.h' 2025-01-24T02:56:21.4161470Z adding 'torch/include/ATen/ops/fft_hfft2_ops.h' 2025-01-24T02:56:21.4162840Z adding 'torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4163380Z adding 'torch/include/ATen/ops/fft_hfft_native.h' 2025-01-24T02:56:21.4164670Z adding 'torch/include/ATen/ops/fft_hfft_ops.h' 2025-01-24T02:56:21.4165920Z adding 'torch/include/ATen/ops/fft_hfftn.h' 2025-01-24T02:56:21.4167270Z adding 'torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4167850Z adding 'torch/include/ATen/ops/fft_hfftn_native.h' 2025-01-24T02:56:21.4169160Z adding 'torch/include/ATen/ops/fft_hfftn_ops.h' 2025-01-24T02:56:21.4170370Z adding 'torch/include/ATen/ops/fft_ifft.h' 2025-01-24T02:56:21.4171610Z adding 'torch/include/ATen/ops/fft_ifft2.h' 2025-01-24T02:56:21.4172970Z adding 'torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4173490Z adding 'torch/include/ATen/ops/fft_ifft2_native.h' 2025-01-24T02:56:21.4174790Z adding 'torch/include/ATen/ops/fft_ifft2_ops.h' 2025-01-24T02:56:21.4176150Z adding 'torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4176610Z adding 'torch/include/ATen/ops/fft_ifft_native.h' 2025-01-24T02:56:21.4177920Z adding 'torch/include/ATen/ops/fft_ifft_ops.h' 2025-01-24T02:56:21.4179130Z adding 'torch/include/ATen/ops/fft_ifftn.h' 2025-01-24T02:56:21.4180490Z adding 'torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4181020Z adding 'torch/include/ATen/ops/fft_ifftn_native.h' 2025-01-24T02:56:21.4182340Z adding 'torch/include/ATen/ops/fft_ifftn_ops.h' 2025-01-24T02:56:21.4183580Z adding 'torch/include/ATen/ops/fft_ifftshift.h' 2025-01-24T02:56:21.4184240Z adding 'torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4185110Z adding 'torch/include/ATen/ops/fft_ifftshift_native.h' 2025-01-24T02:56:21.4186410Z adding 'torch/include/ATen/ops/fft_ifftshift_ops.h' 2025-01-24T02:56:21.4187640Z adding 'torch/include/ATen/ops/fft_ihfft.h' 2025-01-24T02:56:21.4188880Z adding 'torch/include/ATen/ops/fft_ihfft2.h' 2025-01-24T02:56:21.4190240Z adding 'torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4190720Z adding 'torch/include/ATen/ops/fft_ihfft2_native.h' 2025-01-24T02:56:21.4192070Z adding 'torch/include/ATen/ops/fft_ihfft2_ops.h' 2025-01-24T02:56:21.4192980Z adding 'torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4193840Z adding 'torch/include/ATen/ops/fft_ihfft_native.h' 2025-01-24T02:56:21.4195210Z adding 'torch/include/ATen/ops/fft_ihfft_ops.h' 2025-01-24T02:56:21.4196450Z adding 'torch/include/ATen/ops/fft_ihfftn.h' 2025-01-24T02:56:21.4197840Z adding 'torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4198320Z adding 'torch/include/ATen/ops/fft_ihfftn_native.h' 2025-01-24T02:56:21.4199630Z adding 'torch/include/ATen/ops/fft_ihfftn_ops.h' 2025-01-24T02:56:21.4200850Z adding 'torch/include/ATen/ops/fft_irfft.h' 2025-01-24T02:56:21.4202110Z adding 'torch/include/ATen/ops/fft_irfft2.h' 2025-01-24T02:56:21.4203490Z adding 'torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4204030Z adding 'torch/include/ATen/ops/fft_irfft2_native.h' 2025-01-24T02:56:21.4205390Z adding 'torch/include/ATen/ops/fft_irfft2_ops.h' 2025-01-24T02:56:21.4206740Z adding 'torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4207320Z adding 'torch/include/ATen/ops/fft_irfft_native.h' 2025-01-24T02:56:21.4208630Z adding 'torch/include/ATen/ops/fft_irfft_ops.h' 2025-01-24T02:56:21.4209840Z adding 'torch/include/ATen/ops/fft_irfftn.h' 2025-01-24T02:56:21.4210760Z adding 'torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4211620Z adding 'torch/include/ATen/ops/fft_irfftn_native.h' 2025-01-24T02:56:21.4213000Z adding 'torch/include/ATen/ops/fft_irfftn_ops.h' 2025-01-24T02:56:21.4214200Z adding 'torch/include/ATen/ops/fft_rfft.h' 2025-01-24T02:56:21.4215420Z adding 'torch/include/ATen/ops/fft_rfft2.h' 2025-01-24T02:56:21.4216760Z adding 'torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4217290Z adding 'torch/include/ATen/ops/fft_rfft2_native.h' 2025-01-24T02:56:21.4218580Z adding 'torch/include/ATen/ops/fft_rfft2_ops.h' 2025-01-24T02:56:21.4219940Z adding 'torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4220400Z adding 'torch/include/ATen/ops/fft_rfft_native.h' 2025-01-24T02:56:21.4221700Z adding 'torch/include/ATen/ops/fft_rfft_ops.h' 2025-01-24T02:56:21.4222980Z adding 'torch/include/ATen/ops/fft_rfftfreq.h' 2025-01-24T02:56:21.4223710Z adding 'torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4224620Z adding 'torch/include/ATen/ops/fft_rfftfreq_native.h' 2025-01-24T02:56:21.4226050Z adding 'torch/include/ATen/ops/fft_rfftfreq_ops.h' 2025-01-24T02:56:21.4227300Z adding 'torch/include/ATen/ops/fft_rfftn.h' 2025-01-24T02:56:21.4228670Z adding 'torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4229250Z adding 'torch/include/ATen/ops/fft_rfftn_native.h' 2025-01-24T02:56:21.4230540Z adding 'torch/include/ATen/ops/fft_rfftn_ops.h' 2025-01-24T02:56:21.4231740Z adding 'torch/include/ATen/ops/fill.h' 2025-01-24T02:56:21.4232530Z adding 'torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4233870Z adding 'torch/include/ATen/ops/fill_cpu_dispatch.h' 2025-01-24T02:56:21.4234400Z adding 'torch/include/ATen/ops/fill_cuda_dispatch.h' 2025-01-24T02:56:21.4235640Z adding 'torch/include/ATen/ops/fill_diagonal.h' 2025-01-24T02:56:21.4236480Z adding 'torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4237320Z adding 'torch/include/ATen/ops/fill_diagonal_native.h' 2025-01-24T02:56:21.4238640Z adding 'torch/include/ATen/ops/fill_diagonal_ops.h' 2025-01-24T02:56:21.4239300Z adding 'torch/include/ATen/ops/fill_meta_dispatch.h' 2025-01-24T02:56:21.4240660Z adding 'torch/include/ATen/ops/fill_mps_dispatch.h' 2025-01-24T02:56:21.4241260Z adding 'torch/include/ATen/ops/fill_native.h' 2025-01-24T02:56:21.4242780Z adding 'torch/include/ATen/ops/fill_ops.h' 2025-01-24T02:56:21.4243530Z adding 'torch/include/ATen/ops/fix.h' 2025-01-24T02:56:21.4244930Z adding 'torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4245520Z adding 'torch/include/ATen/ops/fix_native.h' 2025-01-24T02:56:21.4246930Z adding 'torch/include/ATen/ops/fix_ops.h' 2025-01-24T02:56:21.4251360Z adding 'torch/include/ATen/ops/flatten.h' 2025-01-24T02:56:21.4251860Z adding 'torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4252400Z adding 'torch/include/ATen/ops/flatten_dense_tensors.h' 2025-01-24T02:56:21.4252960Z adding 'torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4253520Z adding 'torch/include/ATen/ops/flatten_dense_tensors_native.h' 2025-01-24T02:56:21.4253970Z adding 'torch/include/ATen/ops/flatten_dense_tensors_ops.h' 2025-01-24T02:56:21.4254360Z adding 'torch/include/ATen/ops/flatten_native.h' 2025-01-24T02:56:21.4254840Z adding 'torch/include/ATen/ops/flatten_ops.h' 2025-01-24T02:56:21.4256110Z adding 'torch/include/ATen/ops/flip.h' 2025-01-24T02:56:21.4257110Z adding 'torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4257880Z adding 'torch/include/ATen/ops/flip_cpu_dispatch.h' 2025-01-24T02:56:21.4259140Z adding 'torch/include/ATen/ops/flip_cuda_dispatch.h' 2025-01-24T02:56:21.4259790Z adding 'torch/include/ATen/ops/flip_mps_dispatch.h' 2025-01-24T02:56:21.4261080Z adding 'torch/include/ATen/ops/flip_native.h' 2025-01-24T02:56:21.4261770Z adding 'torch/include/ATen/ops/flip_ops.h' 2025-01-24T02:56:21.4263050Z adding 'torch/include/ATen/ops/fliplr.h' 2025-01-24T02:56:21.4263910Z adding 'torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4264740Z adding 'torch/include/ATen/ops/fliplr_native.h' 2025-01-24T02:56:21.4266030Z adding 'torch/include/ATen/ops/fliplr_ops.h' 2025-01-24T02:56:21.4266710Z adding 'torch/include/ATen/ops/flipud.h' 2025-01-24T02:56:21.4268140Z adding 'torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4268710Z adding 'torch/include/ATen/ops/flipud_native.h' 2025-01-24T02:56:21.4270050Z adding 'torch/include/ATen/ops/flipud_ops.h' 2025-01-24T02:56:21.4271260Z adding 'torch/include/ATen/ops/float_power.h' 2025-01-24T02:56:21.4272080Z adding 'torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4272990Z adding 'torch/include/ATen/ops/float_power_native.h' 2025-01-24T02:56:21.4274560Z adding 'torch/include/ATen/ops/float_power_ops.h' 2025-01-24T02:56:21.4275300Z adding 'torch/include/ATen/ops/floor.h' 2025-01-24T02:56:21.4276820Z adding 'torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4277470Z adding 'torch/include/ATen/ops/floor_cpu_dispatch.h' 2025-01-24T02:56:21.4278730Z adding 'torch/include/ATen/ops/floor_cuda_dispatch.h' 2025-01-24T02:56:21.4279460Z adding 'torch/include/ATen/ops/floor_divide.h' 2025-01-24T02:56:21.4280900Z adding 'torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4281530Z adding 'torch/include/ATen/ops/floor_divide_cpu_dispatch.h' 2025-01-24T02:56:21.4282820Z adding 'torch/include/ATen/ops/floor_divide_cuda_dispatch.h' 2025-01-24T02:56:21.4283600Z adding 'torch/include/ATen/ops/floor_divide_meta_dispatch.h' 2025-01-24T02:56:21.4284920Z adding 'torch/include/ATen/ops/floor_divide_mps_dispatch.h' 2025-01-24T02:56:21.4285570Z adding 'torch/include/ATen/ops/floor_divide_native.h' 2025-01-24T02:56:21.4287110Z adding 'torch/include/ATen/ops/floor_divide_ops.h' 2025-01-24T02:56:21.4287810Z adding 'torch/include/ATen/ops/floor_meta.h' 2025-01-24T02:56:21.4289120Z adding 'torch/include/ATen/ops/floor_meta_dispatch.h' 2025-01-24T02:56:21.4289800Z adding 'torch/include/ATen/ops/floor_mps_dispatch.h' 2025-01-24T02:56:21.4291110Z adding 'torch/include/ATen/ops/floor_native.h' 2025-01-24T02:56:21.4292080Z adding 'torch/include/ATen/ops/floor_ops.h' 2025-01-24T02:56:21.4293290Z adding 'torch/include/ATen/ops/fmax.h' 2025-01-24T02:56:21.4294120Z adding 'torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4294980Z adding 'torch/include/ATen/ops/fmax_cpu_dispatch.h' 2025-01-24T02:56:21.4296250Z adding 'torch/include/ATen/ops/fmax_cuda_dispatch.h' 2025-01-24T02:56:21.4296920Z adding 'torch/include/ATen/ops/fmax_meta.h' 2025-01-24T02:56:21.4298230Z adding 'torch/include/ATen/ops/fmax_meta_dispatch.h' 2025-01-24T02:56:21.4298880Z adding 'torch/include/ATen/ops/fmax_mps_dispatch.h' 2025-01-24T02:56:21.4300190Z adding 'torch/include/ATen/ops/fmax_native.h' 2025-01-24T02:56:21.4300960Z adding 'torch/include/ATen/ops/fmax_ops.h' 2025-01-24T02:56:21.4302260Z adding 'torch/include/ATen/ops/fmin.h' 2025-01-24T02:56:21.4303150Z adding 'torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4303980Z adding 'torch/include/ATen/ops/fmin_cpu_dispatch.h' 2025-01-24T02:56:21.4305270Z adding 'torch/include/ATen/ops/fmin_cuda_dispatch.h' 2025-01-24T02:56:21.4305900Z adding 'torch/include/ATen/ops/fmin_meta.h' 2025-01-24T02:56:21.4307280Z adding 'torch/include/ATen/ops/fmin_meta_dispatch.h' 2025-01-24T02:56:21.4307800Z adding 'torch/include/ATen/ops/fmin_mps_dispatch.h' 2025-01-24T02:56:21.4309050Z adding 'torch/include/ATen/ops/fmin_native.h' 2025-01-24T02:56:21.4310310Z adding 'torch/include/ATen/ops/fmin_ops.h' 2025-01-24T02:56:21.4310930Z adding 'torch/include/ATen/ops/fmod.h' 2025-01-24T02:56:21.4312430Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4313160Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4314030Z adding 'torch/include/ATen/ops/fmod_cpu_dispatch.h' 2025-01-24T02:56:21.4315280Z adding 'torch/include/ATen/ops/fmod_cuda_dispatch.h' 2025-01-24T02:56:21.4315940Z adding 'torch/include/ATen/ops/fmod_meta.h' 2025-01-24T02:56:21.4317260Z adding 'torch/include/ATen/ops/fmod_meta_dispatch.h' 2025-01-24T02:56:21.4317880Z adding 'torch/include/ATen/ops/fmod_mps_dispatch.h' 2025-01-24T02:56:21.4319210Z adding 'torch/include/ATen/ops/fmod_native.h' 2025-01-24T02:56:21.4320430Z adding 'torch/include/ATen/ops/fmod_ops.h' 2025-01-24T02:56:21.4321170Z adding 'torch/include/ATen/ops/frac.h' 2025-01-24T02:56:21.4322640Z adding 'torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4323270Z adding 'torch/include/ATen/ops/frac_cpu_dispatch.h' 2025-01-24T02:56:21.4324530Z adding 'torch/include/ATen/ops/frac_cuda_dispatch.h' 2025-01-24T02:56:21.4325020Z adding 'torch/include/ATen/ops/frac_meta.h' 2025-01-24T02:56:21.4326340Z adding 'torch/include/ATen/ops/frac_meta_dispatch.h' 2025-01-24T02:56:21.4327000Z adding 'torch/include/ATen/ops/frac_mps_dispatch.h' 2025-01-24T02:56:21.4328300Z adding 'torch/include/ATen/ops/frac_native.h' 2025-01-24T02:56:21.4329510Z adding 'torch/include/ATen/ops/frac_ops.h' 2025-01-24T02:56:21.4330260Z adding 'torch/include/ATen/ops/fractional_max_pool2d.h' 2025-01-24T02:56:21.4331680Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward.h' 2025-01-24T02:56:21.4332680Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4333560Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.4337820Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.4338390Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h' 2025-01-24T02:56:21.4338950Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h' 2025-01-24T02:56:21.4339520Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_native.h' 2025-01-24T02:56:21.4340050Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h' 2025-01-24T02:56:21.4340740Z adding 'torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4341410Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h' 2025-01-24T02:56:21.4341960Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h' 2025-01-24T02:56:21.4342690Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta.h' 2025-01-24T02:56:21.4344060Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h' 2025-01-24T02:56:21.4344720Z adding 'torch/include/ATen/ops/fractional_max_pool2d_native.h' 2025-01-24T02:56:21.4346140Z adding 'torch/include/ATen/ops/fractional_max_pool2d_ops.h' 2025-01-24T02:56:21.4346920Z adding 'torch/include/ATen/ops/fractional_max_pool3d.h' 2025-01-24T02:56:21.4348330Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward.h' 2025-01-24T02:56:21.4349090Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.4350070Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.4351070Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_native.h' 2025-01-24T02:56:21.4352510Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h' 2025-01-24T02:56:21.4353410Z adding 'torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4354270Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h' 2025-01-24T02:56:21.4355710Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h' 2025-01-24T02:56:21.4357240Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta.h' 2025-01-24T02:56:21.4358020Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h' 2025-01-24T02:56:21.4359380Z adding 'torch/include/ATen/ops/fractional_max_pool3d_native.h' 2025-01-24T02:56:21.4360220Z adding 'torch/include/ATen/ops/fractional_max_pool3d_ops.h' 2025-01-24T02:56:21.4361490Z adding 'torch/include/ATen/ops/frexp.h' 2025-01-24T02:56:21.4362520Z adding 'torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4363280Z adding 'torch/include/ATen/ops/frexp_cpu_dispatch.h' 2025-01-24T02:56:21.4364560Z adding 'torch/include/ATen/ops/frexp_cuda_dispatch.h' 2025-01-24T02:56:21.4365240Z adding 'torch/include/ATen/ops/frexp_native.h' 2025-01-24T02:56:21.4366630Z adding 'torch/include/ATen/ops/frexp_ops.h' 2025-01-24T02:56:21.4367860Z adding 'torch/include/ATen/ops/frobenius_norm.h' 2025-01-24T02:56:21.4368610Z adding 'torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4370050Z adding 'torch/include/ATen/ops/frobenius_norm_native.h' 2025-01-24T02:56:21.4375190Z adding 'torch/include/ATen/ops/frobenius_norm_ops.h' 2025-01-24T02:56:21.4376880Z adding 'torch/include/ATen/ops/from_blob.h' 2025-01-24T02:56:21.4378290Z adding 'torch/include/ATen/ops/from_file.h' 2025-01-24T02:56:21.4379760Z adding 'torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4380690Z adding 'torch/include/ATen/ops/from_file_cpu_dispatch.h' 2025-01-24T02:56:21.4382220Z adding 'torch/include/ATen/ops/from_file_native.h' 2025-01-24T02:56:21.4383640Z adding 'torch/include/ATen/ops/from_file_ops.h' 2025-01-24T02:56:21.4385300Z adding 'torch/include/ATen/ops/full.h' 2025-01-24T02:56:21.4386930Z adding 'torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4388260Z adding 'torch/include/ATen/ops/full_like.h' 2025-01-24T02:56:21.4389750Z adding 'torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4390610Z adding 'torch/include/ATen/ops/full_like_native.h' 2025-01-24T02:56:21.4392280Z adding 'torch/include/ATen/ops/full_like_ops.h' 2025-01-24T02:56:21.4393550Z adding 'torch/include/ATen/ops/full_native.h' 2025-01-24T02:56:21.4395040Z adding 'torch/include/ATen/ops/full_ops.h' 2025-01-24T02:56:21.4396480Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h' 2025-01-24T02:56:21.4398010Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4398830Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h' 2025-01-24T02:56:21.4400470Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h' 2025-01-24T02:56:21.4401760Z adding 'torch/include/ATen/ops/gather.h' 2025-01-24T02:56:21.4403050Z adding 'torch/include/ATen/ops/gather_backward.h' 2025-01-24T02:56:21.4404520Z adding 'torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4405340Z adding 'torch/include/ATen/ops/gather_backward_native.h' 2025-01-24T02:56:21.4406940Z adding 'torch/include/ATen/ops/gather_backward_ops.h' 2025-01-24T02:56:21.4408400Z adding 'torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4409320Z adding 'torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4410780Z adding 'torch/include/ATen/ops/gather_cpu_dispatch.h' 2025-01-24T02:56:21.4412030Z adding 'torch/include/ATen/ops/gather_cuda_dispatch.h' 2025-01-24T02:56:21.4413330Z adding 'torch/include/ATen/ops/gather_meta.h' 2025-01-24T02:56:21.4414590Z adding 'torch/include/ATen/ops/gather_meta_dispatch.h' 2025-01-24T02:56:21.4415380Z adding 'torch/include/ATen/ops/gather_mps_dispatch.h' 2025-01-24T02:56:21.4416920Z adding 'torch/include/ATen/ops/gather_native.h' 2025-01-24T02:56:21.4418340Z adding 'torch/include/ATen/ops/gather_ops.h' 2025-01-24T02:56:21.4419640Z adding 'torch/include/ATen/ops/gcd.h' 2025-01-24T02:56:21.4421080Z adding 'torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4421900Z adding 'torch/include/ATen/ops/gcd_cpu_dispatch.h' 2025-01-24T02:56:21.4423390Z adding 'torch/include/ATen/ops/gcd_cuda_dispatch.h' 2025-01-24T02:56:21.4424660Z adding 'torch/include/ATen/ops/gcd_meta.h' 2025-01-24T02:56:21.4425930Z adding 'torch/include/ATen/ops/gcd_meta_dispatch.h' 2025-01-24T02:56:21.4427160Z adding 'torch/include/ATen/ops/gcd_native.h' 2025-01-24T02:56:21.4428470Z adding 'torch/include/ATen/ops/gcd_ops.h' 2025-01-24T02:56:21.4429790Z adding 'torch/include/ATen/ops/ge.h' 2025-01-24T02:56:21.4431250Z adding 'torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4432100Z adding 'torch/include/ATen/ops/ge_cpu_dispatch.h' 2025-01-24T02:56:21.4433640Z adding 'torch/include/ATen/ops/ge_cuda_dispatch.h' 2025-01-24T02:56:21.4434880Z adding 'torch/include/ATen/ops/ge_meta.h' 2025-01-24T02:56:21.4436150Z adding 'torch/include/ATen/ops/ge_meta_dispatch.h' 2025-01-24T02:56:21.4437400Z adding 'torch/include/ATen/ops/ge_mps_dispatch.h' 2025-01-24T02:56:21.4438690Z adding 'torch/include/ATen/ops/ge_native.h' 2025-01-24T02:56:21.4440170Z adding 'torch/include/ATen/ops/ge_ops.h' 2025-01-24T02:56:21.4441550Z adding 'torch/include/ATen/ops/gelu.h' 2025-01-24T02:56:21.4446330Z adding 'torch/include/ATen/ops/gelu_backward.h' 2025-01-24T02:56:21.4446920Z adding 'torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4447510Z adding 'torch/include/ATen/ops/gelu_backward_cpu_dispatch.h' 2025-01-24T02:56:21.4447960Z adding 'torch/include/ATen/ops/gelu_backward_cuda_dispatch.h' 2025-01-24T02:56:21.4448380Z adding 'torch/include/ATen/ops/gelu_backward_meta.h' 2025-01-24T02:56:21.4448900Z adding 'torch/include/ATen/ops/gelu_backward_meta_dispatch.h' 2025-01-24T02:56:21.4450360Z adding 'torch/include/ATen/ops/gelu_backward_mps_dispatch.h' 2025-01-24T02:56:21.4451660Z adding 'torch/include/ATen/ops/gelu_backward_native.h' 2025-01-24T02:56:21.4453000Z adding 'torch/include/ATen/ops/gelu_backward_ops.h' 2025-01-24T02:56:21.4454440Z adding 'torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4455260Z adding 'torch/include/ATen/ops/gelu_cpu_dispatch.h' 2025-01-24T02:56:21.4456750Z adding 'torch/include/ATen/ops/gelu_cuda_dispatch.h' 2025-01-24T02:56:21.4458220Z adding 'torch/include/ATen/ops/gelu_meta.h' 2025-01-24T02:56:21.4458950Z adding 'torch/include/ATen/ops/gelu_meta_dispatch.h' 2025-01-24T02:56:21.4460390Z adding 'torch/include/ATen/ops/gelu_mps_dispatch.h' 2025-01-24T02:56:21.4461680Z adding 'torch/include/ATen/ops/gelu_native.h' 2025-01-24T02:56:21.4463020Z adding 'torch/include/ATen/ops/gelu_ops.h' 2025-01-24T02:56:21.4464350Z adding 'torch/include/ATen/ops/geometric.h' 2025-01-24T02:56:21.4465790Z adding 'torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4466680Z adding 'torch/include/ATen/ops/geometric_cpu_dispatch.h' 2025-01-24T02:56:21.4468290Z adding 'torch/include/ATen/ops/geometric_cuda_dispatch.h' 2025-01-24T02:56:21.4469660Z adding 'torch/include/ATen/ops/geometric_meta_dispatch.h' 2025-01-24T02:56:21.4470480Z adding 'torch/include/ATen/ops/geometric_native.h' 2025-01-24T02:56:21.4472130Z adding 'torch/include/ATen/ops/geometric_ops.h' 2025-01-24T02:56:21.4473420Z adding 'torch/include/ATen/ops/geqrf.h' 2025-01-24T02:56:21.4474730Z adding 'torch/include/ATen/ops/geqrf_cpu_dispatch.h' 2025-01-24T02:56:21.4476010Z adding 'torch/include/ATen/ops/geqrf_cuda_dispatch.h' 2025-01-24T02:56:21.4477300Z adding 'torch/include/ATen/ops/geqrf_native.h' 2025-01-24T02:56:21.4478520Z adding 'torch/include/ATen/ops/geqrf_ops.h' 2025-01-24T02:56:21.4479790Z adding 'torch/include/ATen/ops/ger.h' 2025-01-24T02:56:21.4481210Z adding 'torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4482050Z adding 'torch/include/ATen/ops/ger_native.h' 2025-01-24T02:56:21.4483680Z adding 'torch/include/ATen/ops/ger_ops.h' 2025-01-24T02:56:21.4484920Z adding 'torch/include/ATen/ops/glu.h' 2025-01-24T02:56:21.4486290Z adding 'torch/include/ATen/ops/glu_backward.h' 2025-01-24T02:56:21.4487720Z adding 'torch/include/ATen/ops/glu_backward_cpu_dispatch.h' 2025-01-24T02:56:21.4489040Z adding 'torch/include/ATen/ops/glu_backward_cuda_dispatch.h' 2025-01-24T02:56:21.4490330Z adding 'torch/include/ATen/ops/glu_backward_jvp.h' 2025-01-24T02:56:21.4491760Z adding 'torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4492700Z adding 'torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h' 2025-01-24T02:56:21.4494220Z adding 'torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h' 2025-01-24T02:56:21.4495550Z adding 'torch/include/ATen/ops/glu_backward_jvp_native.h' 2025-01-24T02:56:21.4496830Z adding 'torch/include/ATen/ops/glu_backward_jvp_ops.h' 2025-01-24T02:56:21.4498130Z adding 'torch/include/ATen/ops/glu_backward_mps_dispatch.h' 2025-01-24T02:56:21.4499430Z adding 'torch/include/ATen/ops/glu_backward_native.h' 2025-01-24T02:56:21.4500700Z adding 'torch/include/ATen/ops/glu_backward_ops.h' 2025-01-24T02:56:21.4502120Z adding 'torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4502900Z adding 'torch/include/ATen/ops/glu_cpu_dispatch.h' 2025-01-24T02:56:21.4504380Z adding 'torch/include/ATen/ops/glu_cuda_dispatch.h' 2025-01-24T02:56:21.4505730Z adding 'torch/include/ATen/ops/glu_jvp.h' 2025-01-24T02:56:21.4507120Z adding 'torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4507950Z adding 'torch/include/ATen/ops/glu_jvp_cpu_dispatch.h' 2025-01-24T02:56:21.4509540Z adding 'torch/include/ATen/ops/glu_jvp_cuda_dispatch.h' 2025-01-24T02:56:21.4510820Z adding 'torch/include/ATen/ops/glu_jvp_native.h' 2025-01-24T02:56:21.4512130Z adding 'torch/include/ATen/ops/glu_jvp_ops.h' 2025-01-24T02:56:21.4513350Z adding 'torch/include/ATen/ops/glu_meta.h' 2025-01-24T02:56:21.4514590Z adding 'torch/include/ATen/ops/glu_meta_dispatch.h' 2025-01-24T02:56:21.4515850Z adding 'torch/include/ATen/ops/glu_mps_dispatch.h' 2025-01-24T02:56:21.4517100Z adding 'torch/include/ATen/ops/glu_native.h' 2025-01-24T02:56:21.4518310Z adding 'torch/include/ATen/ops/glu_ops.h' 2025-01-24T02:56:21.4519720Z adding 'torch/include/ATen/ops/gradient.h' 2025-01-24T02:56:21.4521210Z adding 'torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4522160Z adding 'torch/include/ATen/ops/gradient_native.h' 2025-01-24T02:56:21.4524000Z adding 'torch/include/ATen/ops/gradient_ops.h' 2025-01-24T02:56:21.4525360Z adding 'torch/include/ATen/ops/greater.h' 2025-01-24T02:56:21.4526830Z adding 'torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4528190Z adding 'torch/include/ATen/ops/greater_equal.h' 2025-01-24T02:56:21.4529570Z adding 'torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4530390Z adding 'torch/include/ATen/ops/greater_equal_native.h' 2025-01-24T02:56:21.4532140Z adding 'torch/include/ATen/ops/greater_equal_ops.h' 2025-01-24T02:56:21.4533470Z adding 'torch/include/ATen/ops/greater_native.h' 2025-01-24T02:56:21.4534920Z adding 'torch/include/ATen/ops/greater_ops.h' 2025-01-24T02:56:21.4536210Z adding 'torch/include/ATen/ops/grid_sampler.h' 2025-01-24T02:56:21.4537540Z adding 'torch/include/ATen/ops/grid_sampler_2d.h' 2025-01-24T02:56:21.4538960Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward.h' 2025-01-24T02:56:21.4540420Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4541330Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.4542840Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.4544240Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_native.h' 2025-01-24T02:56:21.4545620Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_ops.h' 2025-01-24T02:56:21.4547080Z adding 'torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4547840Z adding 'torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h' 2025-01-24T02:56:21.4549320Z adding 'torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h' 2025-01-24T02:56:21.4550660Z adding 'torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h' 2025-01-24T02:56:21.4551480Z adding 'torch/include/ATen/ops/grid_sampler_2d_native.h' 2025-01-24T02:56:21.4557230Z adding 'torch/include/ATen/ops/grid_sampler_2d_ops.h' 2025-01-24T02:56:21.4557640Z adding 'torch/include/ATen/ops/grid_sampler_3d.h' 2025-01-24T02:56:21.4558030Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward.h' 2025-01-24T02:56:21.4558610Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4559230Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.4559770Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.4560640Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_native.h' 2025-01-24T02:56:21.4562310Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_ops.h' 2025-01-24T02:56:21.4563760Z adding 'torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4564490Z adding 'torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h' 2025-01-24T02:56:21.4565950Z adding 'torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h' 2025-01-24T02:56:21.4567270Z adding 'torch/include/ATen/ops/grid_sampler_3d_native.h' 2025-01-24T02:56:21.4568570Z adding 'torch/include/ATen/ops/grid_sampler_3d_ops.h' 2025-01-24T02:56:21.4569950Z adding 'torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4570770Z adding 'torch/include/ATen/ops/grid_sampler_native.h' 2025-01-24T02:56:21.4572320Z adding 'torch/include/ATen/ops/grid_sampler_ops.h' 2025-01-24T02:56:21.4573590Z adding 'torch/include/ATen/ops/group_norm.h' 2025-01-24T02:56:21.4575010Z adding 'torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4575840Z adding 'torch/include/ATen/ops/group_norm_native.h' 2025-01-24T02:56:21.4577410Z adding 'torch/include/ATen/ops/group_norm_ops.h' 2025-01-24T02:56:21.4578690Z adding 'torch/include/ATen/ops/gru.h' 2025-01-24T02:56:21.4579960Z adding 'torch/include/ATen/ops/gru_cell.h' 2025-01-24T02:56:21.4581410Z adding 'torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4582210Z adding 'torch/include/ATen/ops/gru_cell_native.h' 2025-01-24T02:56:21.4583800Z adding 'torch/include/ATen/ops/gru_cell_ops.h' 2025-01-24T02:56:21.4585170Z adding 'torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4586030Z adding 'torch/include/ATen/ops/gru_native.h' 2025-01-24T02:56:21.4587700Z adding 'torch/include/ATen/ops/gru_ops.h' 2025-01-24T02:56:21.4589110Z adding 'torch/include/ATen/ops/gt.h' 2025-01-24T02:56:21.4590580Z adding 'torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4591430Z adding 'torch/include/ATen/ops/gt_cpu_dispatch.h' 2025-01-24T02:56:21.4592950Z adding 'torch/include/ATen/ops/gt_cuda_dispatch.h' 2025-01-24T02:56:21.4594170Z adding 'torch/include/ATen/ops/gt_meta.h' 2025-01-24T02:56:21.4595440Z adding 'torch/include/ATen/ops/gt_meta_dispatch.h' 2025-01-24T02:56:21.4596690Z adding 'torch/include/ATen/ops/gt_mps_dispatch.h' 2025-01-24T02:56:21.4597940Z adding 'torch/include/ATen/ops/gt_native.h' 2025-01-24T02:56:21.4599380Z adding 'torch/include/ATen/ops/gt_ops.h' 2025-01-24T02:56:21.4601030Z adding 'torch/include/ATen/ops/hamming_window.h' 2025-01-24T02:56:21.4602570Z adding 'torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4603470Z adding 'torch/include/ATen/ops/hamming_window_native.h' 2025-01-24T02:56:21.4605390Z adding 'torch/include/ATen/ops/hamming_window_ops.h' 2025-01-24T02:56:21.4606840Z adding 'torch/include/ATen/ops/hann_window.h' 2025-01-24T02:56:21.4608260Z adding 'torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4609120Z adding 'torch/include/ATen/ops/hann_window_native.h' 2025-01-24T02:56:21.4610830Z adding 'torch/include/ATen/ops/hann_window_ops.h' 2025-01-24T02:56:21.4612120Z adding 'torch/include/ATen/ops/hardshrink.h' 2025-01-24T02:56:21.4613440Z adding 'torch/include/ATen/ops/hardshrink_backward.h' 2025-01-24T02:56:21.4614940Z adding 'torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4615780Z adding 'torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h' 2025-01-24T02:56:21.4617290Z adding 'torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h' 2025-01-24T02:56:21.4618640Z adding 'torch/include/ATen/ops/hardshrink_backward_meta.h' 2025-01-24T02:56:21.4619470Z adding 'torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h' 2025-01-24T02:56:21.4621120Z adding 'torch/include/ATen/ops/hardshrink_backward_native.h' 2025-01-24T02:56:21.4622450Z adding 'torch/include/ATen/ops/hardshrink_backward_ops.h' 2025-01-24T02:56:21.4623920Z adding 'torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4624600Z adding 'torch/include/ATen/ops/hardshrink_cpu_dispatch.h' 2025-01-24T02:56:21.4626130Z adding 'torch/include/ATen/ops/hardshrink_cuda_dispatch.h' 2025-01-24T02:56:21.4627410Z adding 'torch/include/ATen/ops/hardshrink_meta.h' 2025-01-24T02:56:21.4628680Z adding 'torch/include/ATen/ops/hardshrink_meta_dispatch.h' 2025-01-24T02:56:21.4629870Z adding 'torch/include/ATen/ops/hardshrink_native.h' 2025-01-24T02:56:21.4631090Z adding 'torch/include/ATen/ops/hardshrink_ops.h' 2025-01-24T02:56:21.4632360Z adding 'torch/include/ATen/ops/hardsigmoid.h' 2025-01-24T02:56:21.4633670Z adding 'torch/include/ATen/ops/hardsigmoid_backward.h' 2025-01-24T02:56:21.4635150Z adding 'torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4636260Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h' 2025-01-24T02:56:21.4637480Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h' 2025-01-24T02:56:21.4638660Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta.h' 2025-01-24T02:56:21.4639910Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h' 2025-01-24T02:56:21.4641150Z adding 'torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h' 2025-01-24T02:56:21.4642310Z adding 'torch/include/ATen/ops/hardsigmoid_backward_native.h' 2025-01-24T02:56:21.4643650Z adding 'torch/include/ATen/ops/hardsigmoid_backward_ops.h' 2025-01-24T02:56:21.4645080Z adding 'torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4646170Z adding 'torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h' 2025-01-24T02:56:21.4647390Z adding 'torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h' 2025-01-24T02:56:21.4648600Z adding 'torch/include/ATen/ops/hardsigmoid_meta.h' 2025-01-24T02:56:21.4649840Z adding 'torch/include/ATen/ops/hardsigmoid_meta_dispatch.h' 2025-01-24T02:56:21.4651070Z adding 'torch/include/ATen/ops/hardsigmoid_mps_dispatch.h' 2025-01-24T02:56:21.4652290Z adding 'torch/include/ATen/ops/hardsigmoid_native.h' 2025-01-24T02:56:21.4653630Z adding 'torch/include/ATen/ops/hardsigmoid_ops.h' 2025-01-24T02:56:21.4654920Z adding 'torch/include/ATen/ops/hardswish.h' 2025-01-24T02:56:21.4656260Z adding 'torch/include/ATen/ops/hardswish_backward.h' 2025-01-24T02:56:21.4657670Z adding 'torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4658830Z adding 'torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h' 2025-01-24T02:56:21.4660070Z adding 'torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h' 2025-01-24T02:56:21.4661300Z adding 'torch/include/ATen/ops/hardswish_backward_mps_dispatch.h' 2025-01-24T02:56:21.4662600Z adding 'torch/include/ATen/ops/hardswish_backward_native.h' 2025-01-24T02:56:21.4664080Z adding 'torch/include/ATen/ops/hardswish_backward_ops.h' 2025-01-24T02:56:21.4665330Z adding 'torch/include/ATen/ops/hardswish_cpu_dispatch.h' 2025-01-24T02:56:21.4666630Z adding 'torch/include/ATen/ops/hardswish_cuda_dispatch.h' 2025-01-24T02:56:21.4667880Z adding 'torch/include/ATen/ops/hardswish_meta_dispatch.h' 2025-01-24T02:56:21.4669170Z adding 'torch/include/ATen/ops/hardswish_mps_dispatch.h' 2025-01-24T02:56:21.4670400Z adding 'torch/include/ATen/ops/hardswish_native.h' 2025-01-24T02:56:21.4671720Z adding 'torch/include/ATen/ops/hardswish_ops.h' 2025-01-24T02:56:21.4673400Z adding 'torch/include/ATen/ops/hardtanh.h' 2025-01-24T02:56:21.4674720Z adding 'torch/include/ATen/ops/hardtanh_backward.h' 2025-01-24T02:56:21.4676040Z adding 'torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h' 2025-01-24T02:56:21.4677280Z adding 'torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h' 2025-01-24T02:56:21.4678520Z adding 'torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h' 2025-01-24T02:56:21.4679780Z adding 'torch/include/ATen/ops/hardtanh_backward_native.h' 2025-01-24T02:56:21.4681140Z adding 'torch/include/ATen/ops/hardtanh_backward_ops.h' 2025-01-24T02:56:21.4682420Z adding 'torch/include/ATen/ops/hardtanh_cpu_dispatch.h' 2025-01-24T02:56:21.4683710Z adding 'torch/include/ATen/ops/hardtanh_cuda_dispatch.h' 2025-01-24T02:56:21.4684990Z adding 'torch/include/ATen/ops/hardtanh_meta_dispatch.h' 2025-01-24T02:56:21.4686230Z adding 'torch/include/ATen/ops/hardtanh_mps_dispatch.h' 2025-01-24T02:56:21.4687470Z adding 'torch/include/ATen/ops/hardtanh_native.h' 2025-01-24T02:56:21.4688870Z adding 'torch/include/ATen/ops/hardtanh_ops.h' 2025-01-24T02:56:21.4690190Z adding 'torch/include/ATen/ops/heaviside.h' 2025-01-24T02:56:21.4691820Z adding 'torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4693050Z adding 'torch/include/ATen/ops/heaviside_cpu_dispatch.h' 2025-01-24T02:56:21.4694340Z adding 'torch/include/ATen/ops/heaviside_cuda_dispatch.h' 2025-01-24T02:56:21.4698900Z adding 'torch/include/ATen/ops/heaviside_meta.h' 2025-01-24T02:56:21.4699230Z adding 'torch/include/ATen/ops/heaviside_meta_dispatch.h' 2025-01-24T02:56:21.4699520Z adding 'torch/include/ATen/ops/heaviside_native.h' 2025-01-24T02:56:21.4699670Z adding 'torch/include/ATen/ops/heaviside_ops.h' 2025-01-24T02:56:21.4700740Z adding 'torch/include/ATen/ops/hinge_embedding_loss.h' 2025-01-24T02:56:21.4702170Z adding 'torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4703280Z adding 'torch/include/ATen/ops/hinge_embedding_loss_native.h' 2025-01-24T02:56:21.4704550Z adding 'torch/include/ATen/ops/hinge_embedding_loss_ops.h' 2025-01-24T02:56:21.4705810Z adding 'torch/include/ATen/ops/histc.h' 2025-01-24T02:56:21.4707120Z adding 'torch/include/ATen/ops/histc_cpu_dispatch.h' 2025-01-24T02:56:21.4708310Z adding 'torch/include/ATen/ops/histc_cuda_dispatch.h' 2025-01-24T02:56:21.4709550Z adding 'torch/include/ATen/ops/histc_mps_dispatch.h' 2025-01-24T02:56:21.4710790Z adding 'torch/include/ATen/ops/histc_native.h' 2025-01-24T02:56:21.4712110Z adding 'torch/include/ATen/ops/histc_ops.h' 2025-01-24T02:56:21.4713540Z adding 'torch/include/ATen/ops/histogram.h' 2025-01-24T02:56:21.4714910Z adding 'torch/include/ATen/ops/histogram_cpu_dispatch.h' 2025-01-24T02:56:21.4716200Z adding 'torch/include/ATen/ops/histogram_mps_dispatch.h' 2025-01-24T02:56:21.4717460Z adding 'torch/include/ATen/ops/histogram_native.h' 2025-01-24T02:56:21.4718940Z adding 'torch/include/ATen/ops/histogram_ops.h' 2025-01-24T02:56:21.4720300Z adding 'torch/include/ATen/ops/histogramdd.h' 2025-01-24T02:56:21.4721750Z adding 'torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4722900Z adding 'torch/include/ATen/ops/histogramdd_native.h' 2025-01-24T02:56:21.4724320Z adding 'torch/include/ATen/ops/histogramdd_ops.h' 2025-01-24T02:56:21.4725550Z adding 'torch/include/ATen/ops/hsplit.h' 2025-01-24T02:56:21.4727000Z adding 'torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4728060Z adding 'torch/include/ATen/ops/hsplit_native.h' 2025-01-24T02:56:21.4729380Z adding 'torch/include/ATen/ops/hsplit_ops.h' 2025-01-24T02:56:21.4730640Z adding 'torch/include/ATen/ops/hspmm.h' 2025-01-24T02:56:21.4731920Z adding 'torch/include/ATen/ops/hspmm_native.h' 2025-01-24T02:56:21.4733250Z adding 'torch/include/ATen/ops/hspmm_ops.h' 2025-01-24T02:56:21.4734520Z adding 'torch/include/ATen/ops/hstack.h' 2025-01-24T02:56:21.4735930Z adding 'torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4737050Z adding 'torch/include/ATen/ops/hstack_native.h' 2025-01-24T02:56:21.4738370Z adding 'torch/include/ATen/ops/hstack_ops.h' 2025-01-24T02:56:21.4739660Z adding 'torch/include/ATen/ops/huber_loss.h' 2025-01-24T02:56:21.4740990Z adding 'torch/include/ATen/ops/huber_loss_backward.h' 2025-01-24T02:56:21.4742430Z adding 'torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4743610Z adding 'torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h' 2025-01-24T02:56:21.4744820Z adding 'torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h' 2025-01-24T02:56:21.4746030Z adding 'torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h' 2025-01-24T02:56:21.4747260Z adding 'torch/include/ATen/ops/huber_loss_backward_native.h' 2025-01-24T02:56:21.4748610Z adding 'torch/include/ATen/ops/huber_loss_backward_ops.h' 2025-01-24T02:56:21.4749890Z adding 'torch/include/ATen/ops/huber_loss_cpu_dispatch.h' 2025-01-24T02:56:21.4751140Z adding 'torch/include/ATen/ops/huber_loss_cuda_dispatch.h' 2025-01-24T02:56:21.4752340Z adding 'torch/include/ATen/ops/huber_loss_mps_dispatch.h' 2025-01-24T02:56:21.4753580Z adding 'torch/include/ATen/ops/huber_loss_native.h' 2025-01-24T02:56:21.4754890Z adding 'torch/include/ATen/ops/huber_loss_ops.h' 2025-01-24T02:56:21.4756110Z adding 'torch/include/ATen/ops/hypot.h' 2025-01-24T02:56:21.4757570Z adding 'torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4758670Z adding 'torch/include/ATen/ops/hypot_cpu_dispatch.h' 2025-01-24T02:56:21.4759880Z adding 'torch/include/ATen/ops/hypot_cuda_dispatch.h' 2025-01-24T02:56:21.4761100Z adding 'torch/include/ATen/ops/hypot_meta.h' 2025-01-24T02:56:21.4762250Z adding 'torch/include/ATen/ops/hypot_meta_dispatch.h' 2025-01-24T02:56:21.4763550Z adding 'torch/include/ATen/ops/hypot_mps_dispatch.h' 2025-01-24T02:56:21.4764790Z adding 'torch/include/ATen/ops/hypot_native.h' 2025-01-24T02:56:21.4766100Z adding 'torch/include/ATen/ops/hypot_ops.h' 2025-01-24T02:56:21.4767380Z adding 'torch/include/ATen/ops/i0.h' 2025-01-24T02:56:21.4768810Z adding 'torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4769910Z adding 'torch/include/ATen/ops/i0_cpu_dispatch.h' 2025-01-24T02:56:21.4771120Z adding 'torch/include/ATen/ops/i0_cuda_dispatch.h' 2025-01-24T02:56:21.4772320Z adding 'torch/include/ATen/ops/i0_meta.h' 2025-01-24T02:56:21.4773570Z adding 'torch/include/ATen/ops/i0_meta_dispatch.h' 2025-01-24T02:56:21.4774770Z adding 'torch/include/ATen/ops/i0_mps_dispatch.h' 2025-01-24T02:56:21.4775990Z adding 'torch/include/ATen/ops/i0_native.h' 2025-01-24T02:56:21.4777340Z adding 'torch/include/ATen/ops/i0_ops.h' 2025-01-24T02:56:21.4778610Z adding 'torch/include/ATen/ops/igamma.h' 2025-01-24T02:56:21.4780060Z adding 'torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4781140Z adding 'torch/include/ATen/ops/igamma_cpu_dispatch.h' 2025-01-24T02:56:21.4782370Z adding 'torch/include/ATen/ops/igamma_cuda_dispatch.h' 2025-01-24T02:56:21.4783650Z adding 'torch/include/ATen/ops/igamma_meta.h' 2025-01-24T02:56:21.4784870Z adding 'torch/include/ATen/ops/igamma_meta_dispatch.h' 2025-01-24T02:56:21.4786060Z adding 'torch/include/ATen/ops/igamma_native.h' 2025-01-24T02:56:21.4787350Z adding 'torch/include/ATen/ops/igamma_ops.h' 2025-01-24T02:56:21.4788590Z adding 'torch/include/ATen/ops/igammac.h' 2025-01-24T02:56:21.4789990Z adding 'torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4791080Z adding 'torch/include/ATen/ops/igammac_cpu_dispatch.h' 2025-01-24T02:56:21.4792300Z adding 'torch/include/ATen/ops/igammac_cuda_dispatch.h' 2025-01-24T02:56:21.4793570Z adding 'torch/include/ATen/ops/igammac_meta.h' 2025-01-24T02:56:21.4794830Z adding 'torch/include/ATen/ops/igammac_meta_dispatch.h' 2025-01-24T02:56:21.4796010Z adding 'torch/include/ATen/ops/igammac_native.h' 2025-01-24T02:56:21.4797340Z adding 'torch/include/ATen/ops/igammac_ops.h' 2025-01-24T02:56:21.4798630Z adding 'torch/include/ATen/ops/im2col.h' 2025-01-24T02:56:21.4799950Z adding 'torch/include/ATen/ops/im2col_cpu_dispatch.h' 2025-01-24T02:56:21.4801170Z adding 'torch/include/ATen/ops/im2col_cuda_dispatch.h' 2025-01-24T02:56:21.4802360Z adding 'torch/include/ATen/ops/im2col_mps_dispatch.h' 2025-01-24T02:56:21.4803590Z adding 'torch/include/ATen/ops/im2col_native.h' 2025-01-24T02:56:21.4804940Z adding 'torch/include/ATen/ops/im2col_ops.h' 2025-01-24T02:56:21.4806250Z adding 'torch/include/ATen/ops/imag.h' 2025-01-24T02:56:21.4807560Z adding 'torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4808720Z adding 'torch/include/ATen/ops/imag_native.h' 2025-01-24T02:56:21.4809920Z adding 'torch/include/ATen/ops/imag_ops.h' 2025-01-24T02:56:21.4811210Z adding 'torch/include/ATen/ops/index.h' 2025-01-24T02:56:21.4812610Z adding 'torch/include/ATen/ops/index_add.h' 2025-01-24T02:56:21.4814010Z adding 'torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4815220Z adding 'torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4816430Z adding 'torch/include/ATen/ops/index_add_cpu_dispatch.h' 2025-01-24T02:56:21.4817670Z adding 'torch/include/ATen/ops/index_add_cuda_dispatch.h' 2025-01-24T02:56:21.4818970Z adding 'torch/include/ATen/ops/index_add_meta.h' 2025-01-24T02:56:21.4820240Z adding 'torch/include/ATen/ops/index_add_meta_dispatch.h' 2025-01-24T02:56:21.4821470Z adding 'torch/include/ATen/ops/index_add_mps_dispatch.h' 2025-01-24T02:56:21.4822720Z adding 'torch/include/ATen/ops/index_add_native.h' 2025-01-24T02:56:21.4824160Z adding 'torch/include/ATen/ops/index_add_ops.h' 2025-01-24T02:56:21.4825600Z adding 'torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4826780Z adding 'torch/include/ATen/ops/index_copy.h' 2025-01-24T02:56:21.4828210Z adding 'torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4829400Z adding 'torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4830570Z adding 'torch/include/ATen/ops/index_copy_cpu_dispatch.h' 2025-01-24T02:56:21.4831830Z adding 'torch/include/ATen/ops/index_copy_cuda_dispatch.h' 2025-01-24T02:56:21.4833110Z adding 'torch/include/ATen/ops/index_copy_meta.h' 2025-01-24T02:56:21.4834390Z adding 'torch/include/ATen/ops/index_copy_meta_dispatch.h' 2025-01-24T02:56:21.4835620Z adding 'torch/include/ATen/ops/index_copy_native.h' 2025-01-24T02:56:21.4837090Z adding 'torch/include/ATen/ops/index_copy_ops.h' 2025-01-24T02:56:21.4838380Z adding 'torch/include/ATen/ops/index_cpu_dispatch.h' 2025-01-24T02:56:21.4839590Z adding 'torch/include/ATen/ops/index_cuda_dispatch.h' 2025-01-24T02:56:21.4840950Z adding 'torch/include/ATen/ops/index_fill.h' 2025-01-24T02:56:21.4842400Z adding 'torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4843670Z adding 'torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4844830Z adding 'torch/include/ATen/ops/index_fill_cpu_dispatch.h' 2025-01-24T02:56:21.4846040Z adding 'torch/include/ATen/ops/index_fill_cuda_dispatch.h' 2025-01-24T02:56:21.4847270Z adding 'torch/include/ATen/ops/index_fill_meta_dispatch.h' 2025-01-24T02:56:21.4848490Z adding 'torch/include/ATen/ops/index_fill_mps_dispatch.h' 2025-01-24T02:56:21.4849760Z adding 'torch/include/ATen/ops/index_fill_native.h' 2025-01-24T02:56:21.4851440Z adding 'torch/include/ATen/ops/index_fill_ops.h' 2025-01-24T02:56:21.4852840Z adding 'torch/include/ATen/ops/index_meta.h' 2025-01-24T02:56:21.4854130Z adding 'torch/include/ATen/ops/index_meta_dispatch.h' 2025-01-24T02:56:21.4855370Z adding 'torch/include/ATen/ops/index_mps_dispatch.h' 2025-01-24T02:56:21.4856590Z adding 'torch/include/ATen/ops/index_native.h' 2025-01-24T02:56:21.4857950Z adding 'torch/include/ATen/ops/index_ops.h' 2025-01-24T02:56:21.4859280Z adding 'torch/include/ATen/ops/index_put.h' 2025-01-24T02:56:21.4860720Z adding 'torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4861840Z adding 'torch/include/ATen/ops/index_put_native.h' 2025-01-24T02:56:21.4863220Z adding 'torch/include/ATen/ops/index_put_ops.h' 2025-01-24T02:56:21.4864520Z adding 'torch/include/ATen/ops/index_reduce.h' 2025-01-24T02:56:21.4866020Z adding 'torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4867170Z adding 'torch/include/ATen/ops/index_reduce_cpu_dispatch.h' 2025-01-24T02:56:21.4868410Z adding 'torch/include/ATen/ops/index_reduce_cuda_dispatch.h' 2025-01-24T02:56:21.4869670Z adding 'torch/include/ATen/ops/index_reduce_meta.h' 2025-01-24T02:56:21.4870950Z adding 'torch/include/ATen/ops/index_reduce_meta_dispatch.h' 2025-01-24T02:56:21.4872190Z adding 'torch/include/ATen/ops/index_reduce_native.h' 2025-01-24T02:56:21.4873580Z adding 'torch/include/ATen/ops/index_reduce_ops.h' 2025-01-24T02:56:21.4874910Z adding 'torch/include/ATen/ops/index_select.h' 2025-01-24T02:56:21.4876220Z adding 'torch/include/ATen/ops/index_select_backward.h' 2025-01-24T02:56:21.4877640Z adding 'torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4878770Z adding 'torch/include/ATen/ops/index_select_backward_native.h' 2025-01-24T02:56:21.4880050Z adding 'torch/include/ATen/ops/index_select_backward_ops.h' 2025-01-24T02:56:21.4881390Z adding 'torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4882530Z adding 'torch/include/ATen/ops/index_select_cpu_dispatch.h' 2025-01-24T02:56:21.4883740Z adding 'torch/include/ATen/ops/index_select_cuda_dispatch.h' 2025-01-24T02:56:21.4884970Z adding 'torch/include/ATen/ops/index_select_mps_dispatch.h' 2025-01-24T02:56:21.4886240Z adding 'torch/include/ATen/ops/index_select_native.h' 2025-01-24T02:56:21.4887670Z adding 'torch/include/ATen/ops/index_select_ops.h' 2025-01-24T02:56:21.4888890Z adding 'torch/include/ATen/ops/indices.h' 2025-01-24T02:56:21.4890300Z adding 'torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4891450Z adding 'torch/include/ATen/ops/indices_copy.h' 2025-01-24T02:56:21.4892740Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4894230Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.4895310Z adding 'torch/include/ATen/ops/indices_copy_native.h' 2025-01-24T02:56:21.4896620Z adding 'torch/include/ATen/ops/indices_copy_ops.h' 2025-01-24T02:56:21.4897750Z adding 'torch/include/ATen/ops/indices_native.h' 2025-01-24T02:56:21.4899120Z adding 'torch/include/ATen/ops/indices_ops.h' 2025-01-24T02:56:21.4900480Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h' 2025-01-24T02:56:21.4901910Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4903060Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h' 2025-01-24T02:56:21.4904290Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h' 2025-01-24T02:56:21.4908530Z adding 'torch/include/ATen/ops/inner.h' 2025-01-24T02:56:21.4908930Z adding 'torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4909100Z adding 'torch/include/ATen/ops/inner_native.h' 2025-01-24T02:56:21.4909230Z adding 'torch/include/ATen/ops/inner_ops.h' 2025-01-24T02:56:21.4910130Z adding 'torch/include/ATen/ops/instance_norm.h' 2025-01-24T02:56:21.4911820Z adding 'torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4912930Z adding 'torch/include/ATen/ops/instance_norm_native.h' 2025-01-24T02:56:21.4914270Z adding 'torch/include/ATen/ops/instance_norm_ops.h' 2025-01-24T02:56:21.4915470Z adding 'torch/include/ATen/ops/int_repr.h' 2025-01-24T02:56:21.4916860Z adding 'torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4917950Z adding 'torch/include/ATen/ops/int_repr_native.h' 2025-01-24T02:56:21.4919240Z adding 'torch/include/ATen/ops/int_repr_ops.h' 2025-01-24T02:56:21.4920470Z adding 'torch/include/ATen/ops/inverse.h' 2025-01-24T02:56:21.4921850Z adding 'torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4922940Z adding 'torch/include/ATen/ops/inverse_native.h' 2025-01-24T02:56:21.4924240Z adding 'torch/include/ATen/ops/inverse_ops.h' 2025-01-24T02:56:21.4925450Z adding 'torch/include/ATen/ops/is_coalesced.h' 2025-01-24T02:56:21.4926830Z adding 'torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4927930Z adding 'torch/include/ATen/ops/is_coalesced_native.h' 2025-01-24T02:56:21.4929160Z adding 'torch/include/ATen/ops/is_coalesced_ops.h' 2025-01-24T02:56:21.4930350Z adding 'torch/include/ATen/ops/is_complex.h' 2025-01-24T02:56:21.4931710Z adding 'torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4932810Z adding 'torch/include/ATen/ops/is_complex_native.h' 2025-01-24T02:56:21.4934070Z adding 'torch/include/ATen/ops/is_complex_ops.h' 2025-01-24T02:56:21.4935270Z adding 'torch/include/ATen/ops/is_conj.h' 2025-01-24T02:56:21.4936660Z adding 'torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4937760Z adding 'torch/include/ATen/ops/is_conj_native.h' 2025-01-24T02:56:21.4939020Z adding 'torch/include/ATen/ops/is_conj_ops.h' 2025-01-24T02:56:21.4940230Z adding 'torch/include/ATen/ops/is_distributed.h' 2025-01-24T02:56:21.4941630Z adding 'torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4942770Z adding 'torch/include/ATen/ops/is_distributed_native.h' 2025-01-24T02:56:21.4943980Z adding 'torch/include/ATen/ops/is_distributed_ops.h' 2025-01-24T02:56:21.4945220Z adding 'torch/include/ATen/ops/is_floating_point.h' 2025-01-24T02:56:21.4946560Z adding 'torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4947650Z adding 'torch/include/ATen/ops/is_floating_point_native.h' 2025-01-24T02:56:21.4948870Z adding 'torch/include/ATen/ops/is_floating_point_ops.h' 2025-01-24T02:56:21.4950060Z adding 'torch/include/ATen/ops/is_inference.h' 2025-01-24T02:56:21.4951410Z adding 'torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4952500Z adding 'torch/include/ATen/ops/is_inference_native.h' 2025-01-24T02:56:21.4953750Z adding 'torch/include/ATen/ops/is_inference_ops.h' 2025-01-24T02:56:21.4954930Z adding 'torch/include/ATen/ops/is_leaf.h' 2025-01-24T02:56:21.4956310Z adding 'torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4957420Z adding 'torch/include/ATen/ops/is_leaf_native.h' 2025-01-24T02:56:21.4958680Z adding 'torch/include/ATen/ops/is_leaf_ops.h' 2025-01-24T02:56:21.4959890Z adding 'torch/include/ATen/ops/is_neg.h' 2025-01-24T02:56:21.4961280Z adding 'torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4962390Z adding 'torch/include/ATen/ops/is_neg_native.h' 2025-01-24T02:56:21.4963660Z adding 'torch/include/ATen/ops/is_neg_ops.h' 2025-01-24T02:56:21.4965270Z adding 'torch/include/ATen/ops/is_nonzero.h' 2025-01-24T02:56:21.4966680Z adding 'torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4967840Z adding 'torch/include/ATen/ops/is_nonzero_native.h' 2025-01-24T02:56:21.4969020Z adding 'torch/include/ATen/ops/is_nonzero_ops.h' 2025-01-24T02:56:21.4970250Z adding 'torch/include/ATen/ops/is_pinned.h' 2025-01-24T02:56:21.4971710Z adding 'torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4972870Z adding 'torch/include/ATen/ops/is_pinned_native.h' 2025-01-24T02:56:21.4974160Z adding 'torch/include/ATen/ops/is_pinned_ops.h' 2025-01-24T02:56:21.4975450Z adding 'torch/include/ATen/ops/is_same_size.h' 2025-01-24T02:56:21.4976920Z adding 'torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.4978080Z adding 'torch/include/ATen/ops/is_same_size_native.h' 2025-01-24T02:56:21.4979390Z adding 'torch/include/ATen/ops/is_same_size_ops.h' 2025-01-24T02:56:21.4980590Z adding 'torch/include/ATen/ops/is_set_to.h' 2025-01-24T02:56:21.4981940Z adding 'torch/include/ATen/ops/is_set_to_cpu_dispatch.h' 2025-01-24T02:56:21.4983280Z adding 'torch/include/ATen/ops/is_set_to_cuda_dispatch.h' 2025-01-24T02:56:21.4984500Z adding 'torch/include/ATen/ops/is_set_to_mps_dispatch.h' 2025-01-24T02:56:21.4985740Z adding 'torch/include/ATen/ops/is_set_to_native.h' 2025-01-24T02:56:21.4987030Z adding 'torch/include/ATen/ops/is_set_to_ops.h' 2025-01-24T02:56:21.4988330Z adding 'torch/include/ATen/ops/is_signed.h' 2025-01-24T02:56:21.4989760Z adding 'torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4990880Z adding 'torch/include/ATen/ops/is_signed_native.h' 2025-01-24T02:56:21.4992140Z adding 'torch/include/ATen/ops/is_signed_ops.h' 2025-01-24T02:56:21.4993470Z adding 'torch/include/ATen/ops/is_vulkan_available.h' 2025-01-24T02:56:21.4994990Z adding 'torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.4996140Z adding 'torch/include/ATen/ops/is_vulkan_available_native.h' 2025-01-24T02:56:21.4997460Z adding 'torch/include/ATen/ops/is_vulkan_available_ops.h' 2025-01-24T02:56:21.4998760Z adding 'torch/include/ATen/ops/isclose.h' 2025-01-24T02:56:21.5000220Z adding 'torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5001390Z adding 'torch/include/ATen/ops/isclose_native.h' 2025-01-24T02:56:21.5002670Z adding 'torch/include/ATen/ops/isclose_ops.h' 2025-01-24T02:56:21.5003880Z adding 'torch/include/ATen/ops/isfinite.h' 2025-01-24T02:56:21.5005290Z adding 'torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5006520Z adding 'torch/include/ATen/ops/isfinite_native.h' 2025-01-24T02:56:21.5007770Z adding 'torch/include/ATen/ops/isfinite_ops.h' 2025-01-24T02:56:21.5009060Z adding 'torch/include/ATen/ops/isin.h' 2025-01-24T02:56:21.5010740Z adding 'torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5012000Z adding 'torch/include/ATen/ops/isin_cpu_dispatch.h' 2025-01-24T02:56:21.5013220Z adding 'torch/include/ATen/ops/isin_cuda_dispatch.h' 2025-01-24T02:56:21.5014460Z adding 'torch/include/ATen/ops/isin_meta.h' 2025-01-24T02:56:21.5015780Z adding 'torch/include/ATen/ops/isin_meta_dispatch.h' 2025-01-24T02:56:21.5017110Z adding 'torch/include/ATen/ops/isin_mps_dispatch.h' 2025-01-24T02:56:21.5018430Z adding 'torch/include/ATen/ops/isin_native.h' 2025-01-24T02:56:21.5019990Z adding 'torch/include/ATen/ops/isin_ops.h' 2025-01-24T02:56:21.5021330Z adding 'torch/include/ATen/ops/isinf.h' 2025-01-24T02:56:21.5022800Z adding 'torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5023960Z adding 'torch/include/ATen/ops/isinf_native.h' 2025-01-24T02:56:21.5025300Z adding 'torch/include/ATen/ops/isinf_ops.h' 2025-01-24T02:56:21.5026650Z adding 'torch/include/ATen/ops/isnan.h' 2025-01-24T02:56:21.5028080Z adding 'torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5029240Z adding 'torch/include/ATen/ops/isnan_cpu_dispatch.h' 2025-01-24T02:56:21.5030450Z adding 'torch/include/ATen/ops/isnan_cuda_dispatch.h' 2025-01-24T02:56:21.5031700Z adding 'torch/include/ATen/ops/isnan_mps_dispatch.h' 2025-01-24T02:56:21.5032910Z adding 'torch/include/ATen/ops/isnan_native.h' 2025-01-24T02:56:21.5034270Z adding 'torch/include/ATen/ops/isnan_ops.h' 2025-01-24T02:56:21.5035630Z adding 'torch/include/ATen/ops/isneginf.h' 2025-01-24T02:56:21.5037200Z adding 'torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5038330Z adding 'torch/include/ATen/ops/isneginf_cpu_dispatch.h' 2025-01-24T02:56:21.5039570Z adding 'torch/include/ATen/ops/isneginf_cuda_dispatch.h' 2025-01-24T02:56:21.5040470Z adding 'torch/include/ATen/ops/isneginf_meta.h' 2025-01-24T02:56:21.5042040Z adding 'torch/include/ATen/ops/isneginf_meta_dispatch.h' 2025-01-24T02:56:21.5043270Z adding 'torch/include/ATen/ops/isneginf_mps_dispatch.h' 2025-01-24T02:56:21.5044470Z adding 'torch/include/ATen/ops/isneginf_native.h' 2025-01-24T02:56:21.5045820Z adding 'torch/include/ATen/ops/isneginf_ops.h' 2025-01-24T02:56:21.5047130Z adding 'torch/include/ATen/ops/isposinf.h' 2025-01-24T02:56:21.5048570Z adding 'torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5049670Z adding 'torch/include/ATen/ops/isposinf_cpu_dispatch.h' 2025-01-24T02:56:21.5050900Z adding 'torch/include/ATen/ops/isposinf_cuda_dispatch.h' 2025-01-24T02:56:21.5052170Z adding 'torch/include/ATen/ops/isposinf_meta.h' 2025-01-24T02:56:21.5053480Z adding 'torch/include/ATen/ops/isposinf_meta_dispatch.h' 2025-01-24T02:56:21.5054740Z adding 'torch/include/ATen/ops/isposinf_mps_dispatch.h' 2025-01-24T02:56:21.5056030Z adding 'torch/include/ATen/ops/isposinf_native.h' 2025-01-24T02:56:21.5057420Z adding 'torch/include/ATen/ops/isposinf_ops.h' 2025-01-24T02:56:21.5058640Z adding 'torch/include/ATen/ops/isreal.h' 2025-01-24T02:56:21.5060110Z adding 'torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5061350Z adding 'torch/include/ATen/ops/isreal_native.h' 2025-01-24T02:56:21.5062620Z adding 'torch/include/ATen/ops/isreal_ops.h' 2025-01-24T02:56:21.5064000Z adding 'torch/include/ATen/ops/istft.h' 2025-01-24T02:56:21.5065500Z adding 'torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5066670Z adding 'torch/include/ATen/ops/istft_native.h' 2025-01-24T02:56:21.5068030Z adding 'torch/include/ATen/ops/istft_ops.h' 2025-01-24T02:56:21.5069290Z adding 'torch/include/ATen/ops/item.h' 2025-01-24T02:56:21.5070750Z adding 'torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5071890Z adding 'torch/include/ATen/ops/item_native.h' 2025-01-24T02:56:21.5073120Z adding 'torch/include/ATen/ops/item_ops.h' 2025-01-24T02:56:21.5074670Z adding 'torch/include/ATen/ops/kaiser_window.h' 2025-01-24T02:56:21.5076210Z adding 'torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5077410Z adding 'torch/include/ATen/ops/kaiser_window_native.h' 2025-01-24T02:56:21.5078980Z adding 'torch/include/ATen/ops/kaiser_window_ops.h' 2025-01-24T02:56:21.5080330Z adding 'torch/include/ATen/ops/kl_div.h' 2025-01-24T02:56:21.5081740Z adding 'torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5082870Z adding 'torch/include/ATen/ops/kl_div_native.h' 2025-01-24T02:56:21.5084150Z adding 'torch/include/ATen/ops/kl_div_ops.h' 2025-01-24T02:56:21.5085440Z adding 'torch/include/ATen/ops/kron.h' 2025-01-24T02:56:21.5086900Z adding 'torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5088020Z adding 'torch/include/ATen/ops/kron_native.h' 2025-01-24T02:56:21.5089370Z adding 'torch/include/ATen/ops/kron_ops.h' 2025-01-24T02:56:21.5090810Z adding 'torch/include/ATen/ops/kthvalue.h' 2025-01-24T02:56:21.5092350Z adding 'torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5093690Z adding 'torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5094920Z adding 'torch/include/ATen/ops/kthvalue_cpu_dispatch.h' 2025-01-24T02:56:21.5096420Z adding 'torch/include/ATen/ops/kthvalue_cuda_dispatch.h' 2025-01-24T02:56:21.5097620Z adding 'torch/include/ATen/ops/kthvalue_native.h' 2025-01-24T02:56:21.5099080Z adding 'torch/include/ATen/ops/kthvalue_ops.h' 2025-01-24T02:56:21.5100380Z adding 'torch/include/ATen/ops/l1_loss.h' 2025-01-24T02:56:21.5101800Z adding 'torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5103060Z adding 'torch/include/ATen/ops/l1_loss_native.h' 2025-01-24T02:56:21.5104380Z adding 'torch/include/ATen/ops/l1_loss_ops.h' 2025-01-24T02:56:21.5105860Z adding 'torch/include/ATen/ops/layer_norm.h' 2025-01-24T02:56:21.5107220Z adding 'torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5108390Z adding 'torch/include/ATen/ops/layer_norm_native.h' 2025-01-24T02:56:21.5109580Z adding 'torch/include/ATen/ops/layer_norm_ops.h' 2025-01-24T02:56:21.5111140Z adding 'torch/include/ATen/ops/lcm.h' 2025-01-24T02:56:21.5112640Z adding 'torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5113830Z adding 'torch/include/ATen/ops/lcm_cpu_dispatch.h' 2025-01-24T02:56:21.5115060Z adding 'torch/include/ATen/ops/lcm_cuda_dispatch.h' 2025-01-24T02:56:21.5116280Z adding 'torch/include/ATen/ops/lcm_meta.h' 2025-01-24T02:56:21.5120780Z adding 'torch/include/ATen/ops/lcm_meta_dispatch.h' 2025-01-24T02:56:21.5121120Z adding 'torch/include/ATen/ops/lcm_native.h' 2025-01-24T02:56:21.5121250Z adding 'torch/include/ATen/ops/lcm_ops.h' 2025-01-24T02:56:21.5121360Z adding 'torch/include/ATen/ops/ldexp.h' 2025-01-24T02:56:21.5122870Z adding 'torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5124050Z adding 'torch/include/ATen/ops/ldexp_native.h' 2025-01-24T02:56:21.5125470Z adding 'torch/include/ATen/ops/ldexp_ops.h' 2025-01-24T02:56:21.5126820Z adding 'torch/include/ATen/ops/le.h' 2025-01-24T02:56:21.5128320Z adding 'torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5129460Z adding 'torch/include/ATen/ops/le_cpu_dispatch.h' 2025-01-24T02:56:21.5130690Z adding 'torch/include/ATen/ops/le_cuda_dispatch.h' 2025-01-24T02:56:21.5131910Z adding 'torch/include/ATen/ops/le_meta.h' 2025-01-24T02:56:21.5133170Z adding 'torch/include/ATen/ops/le_meta_dispatch.h' 2025-01-24T02:56:21.5134380Z adding 'torch/include/ATen/ops/le_mps_dispatch.h' 2025-01-24T02:56:21.5135680Z adding 'torch/include/ATen/ops/le_native.h' 2025-01-24T02:56:21.5137140Z adding 'torch/include/ATen/ops/le_ops.h' 2025-01-24T02:56:21.5138480Z adding 'torch/include/ATen/ops/leaky_relu.h' 2025-01-24T02:56:21.5139810Z adding 'torch/include/ATen/ops/leaky_relu_backward.h' 2025-01-24T02:56:21.5141340Z adding 'torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5142490Z adding 'torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h' 2025-01-24T02:56:21.5143760Z adding 'torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h' 2025-01-24T02:56:21.5145030Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta.h' 2025-01-24T02:56:21.5146320Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h' 2025-01-24T02:56:21.5147550Z adding 'torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h' 2025-01-24T02:56:21.5148800Z adding 'torch/include/ATen/ops/leaky_relu_backward_native.h' 2025-01-24T02:56:21.5150180Z adding 'torch/include/ATen/ops/leaky_relu_backward_ops.h' 2025-01-24T02:56:21.5151640Z adding 'torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5152750Z adding 'torch/include/ATen/ops/leaky_relu_cpu_dispatch.h' 2025-01-24T02:56:21.5154000Z adding 'torch/include/ATen/ops/leaky_relu_cuda_dispatch.h' 2025-01-24T02:56:21.5155230Z adding 'torch/include/ATen/ops/leaky_relu_meta.h' 2025-01-24T02:56:21.5156510Z adding 'torch/include/ATen/ops/leaky_relu_meta_dispatch.h' 2025-01-24T02:56:21.5157750Z adding 'torch/include/ATen/ops/leaky_relu_mps_dispatch.h' 2025-01-24T02:56:21.5159090Z adding 'torch/include/ATen/ops/leaky_relu_native.h' 2025-01-24T02:56:21.5160440Z adding 'torch/include/ATen/ops/leaky_relu_ops.h' 2025-01-24T02:56:21.5161820Z adding 'torch/include/ATen/ops/lerp.h' 2025-01-24T02:56:21.5163360Z adding 'torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5164520Z adding 'torch/include/ATen/ops/lerp_cpu_dispatch.h' 2025-01-24T02:56:21.5165790Z adding 'torch/include/ATen/ops/lerp_cuda_dispatch.h' 2025-01-24T02:56:21.5167010Z adding 'torch/include/ATen/ops/lerp_meta.h' 2025-01-24T02:56:21.5168260Z adding 'torch/include/ATen/ops/lerp_meta_dispatch.h' 2025-01-24T02:56:21.5169460Z adding 'torch/include/ATen/ops/lerp_mps_dispatch.h' 2025-01-24T02:56:21.5170680Z adding 'torch/include/ATen/ops/lerp_native.h' 2025-01-24T02:56:21.5172220Z adding 'torch/include/ATen/ops/lerp_ops.h' 2025-01-24T02:56:21.5173580Z adding 'torch/include/ATen/ops/less.h' 2025-01-24T02:56:21.5175050Z adding 'torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5176300Z adding 'torch/include/ATen/ops/less_equal.h' 2025-01-24T02:56:21.5177730Z adding 'torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5178920Z adding 'torch/include/ATen/ops/less_equal_native.h' 2025-01-24T02:56:21.5180390Z adding 'torch/include/ATen/ops/less_equal_ops.h' 2025-01-24T02:56:21.5181650Z adding 'torch/include/ATen/ops/less_native.h' 2025-01-24T02:56:21.5183250Z adding 'torch/include/ATen/ops/less_ops.h' 2025-01-24T02:56:21.5184760Z adding 'torch/include/ATen/ops/lgamma.h' 2025-01-24T02:56:21.5186260Z adding 'torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5187370Z adding 'torch/include/ATen/ops/lgamma_cpu_dispatch.h' 2025-01-24T02:56:21.5188640Z adding 'torch/include/ATen/ops/lgamma_cuda_dispatch.h' 2025-01-24T02:56:21.5189900Z adding 'torch/include/ATen/ops/lgamma_meta.h' 2025-01-24T02:56:21.5191220Z adding 'torch/include/ATen/ops/lgamma_meta_dispatch.h' 2025-01-24T02:56:21.5192480Z adding 'torch/include/ATen/ops/lgamma_mps_dispatch.h' 2025-01-24T02:56:21.5193710Z adding 'torch/include/ATen/ops/lgamma_native.h' 2025-01-24T02:56:21.5195040Z adding 'torch/include/ATen/ops/lgamma_ops.h' 2025-01-24T02:56:21.5196370Z adding 'torch/include/ATen/ops/lift.h' 2025-01-24T02:56:21.5197800Z adding 'torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5198930Z adding 'torch/include/ATen/ops/lift_fresh.h' 2025-01-24T02:56:21.5200460Z adding 'torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5201560Z adding 'torch/include/ATen/ops/lift_fresh_copy.h' 2025-01-24T02:56:21.5203020Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5204350Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5205430Z adding 'torch/include/ATen/ops/lift_fresh_copy_native.h' 2025-01-24T02:56:21.5206730Z adding 'torch/include/ATen/ops/lift_fresh_copy_ops.h' 2025-01-24T02:56:21.5208000Z adding 'torch/include/ATen/ops/lift_fresh_native.h' 2025-01-24T02:56:21.5209280Z adding 'torch/include/ATen/ops/lift_fresh_ops.h' 2025-01-24T02:56:21.5210480Z adding 'torch/include/ATen/ops/lift_native.h' 2025-01-24T02:56:21.5211770Z adding 'torch/include/ATen/ops/lift_ops.h' 2025-01-24T02:56:21.5213050Z adding 'torch/include/ATen/ops/linalg_cholesky.h' 2025-01-24T02:56:21.5214510Z adding 'torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5215660Z adding 'torch/include/ATen/ops/linalg_cholesky_ex.h' 2025-01-24T02:56:21.5217140Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5218270Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h' 2025-01-24T02:56:21.5219550Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h' 2025-01-24T02:56:21.5220740Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta.h' 2025-01-24T02:56:21.5222050Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h' 2025-01-24T02:56:21.5223240Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_native.h' 2025-01-24T02:56:21.5224640Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_ops.h' 2025-01-24T02:56:21.5225900Z adding 'torch/include/ATen/ops/linalg_cholesky_native.h' 2025-01-24T02:56:21.5227290Z adding 'torch/include/ATen/ops/linalg_cholesky_ops.h' 2025-01-24T02:56:21.5228720Z adding 'torch/include/ATen/ops/linalg_cond.h' 2025-01-24T02:56:21.5230240Z adding 'torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5231360Z adding 'torch/include/ATen/ops/linalg_cond_native.h' 2025-01-24T02:56:21.5232710Z adding 'torch/include/ATen/ops/linalg_cond_ops.h' 2025-01-24T02:56:21.5233970Z adding 'torch/include/ATen/ops/linalg_cross.h' 2025-01-24T02:56:21.5235450Z adding 'torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5236540Z adding 'torch/include/ATen/ops/linalg_cross_cpu_dispatch.h' 2025-01-24T02:56:21.5237780Z adding 'torch/include/ATen/ops/linalg_cross_cuda_dispatch.h' 2025-01-24T02:56:21.5238970Z adding 'torch/include/ATen/ops/linalg_cross_meta.h' 2025-01-24T02:56:21.5240230Z adding 'torch/include/ATen/ops/linalg_cross_meta_dispatch.h' 2025-01-24T02:56:21.5241440Z adding 'torch/include/ATen/ops/linalg_cross_mps_dispatch.h' 2025-01-24T02:56:21.5242650Z adding 'torch/include/ATen/ops/linalg_cross_native.h' 2025-01-24T02:56:21.5244020Z adding 'torch/include/ATen/ops/linalg_cross_ops.h' 2025-01-24T02:56:21.5245260Z adding 'torch/include/ATen/ops/linalg_det.h' 2025-01-24T02:56:21.5246670Z adding 'torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5247760Z adding 'torch/include/ATen/ops/linalg_det_native.h' 2025-01-24T02:56:21.5249050Z adding 'torch/include/ATen/ops/linalg_det_ops.h' 2025-01-24T02:56:21.5250340Z adding 'torch/include/ATen/ops/linalg_diagonal.h' 2025-01-24T02:56:21.5251750Z adding 'torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5252910Z adding 'torch/include/ATen/ops/linalg_diagonal_native.h' 2025-01-24T02:56:21.5254160Z adding 'torch/include/ATen/ops/linalg_diagonal_ops.h' 2025-01-24T02:56:21.5255440Z adding 'torch/include/ATen/ops/linalg_eig.h' 2025-01-24T02:56:21.5256760Z adding 'torch/include/ATen/ops/linalg_eig_cpu_dispatch.h' 2025-01-24T02:56:21.5258010Z adding 'torch/include/ATen/ops/linalg_eig_cuda_dispatch.h' 2025-01-24T02:56:21.5259270Z adding 'torch/include/ATen/ops/linalg_eig_native.h' 2025-01-24T02:56:21.5260620Z adding 'torch/include/ATen/ops/linalg_eig_ops.h' 2025-01-24T02:56:21.5261950Z adding 'torch/include/ATen/ops/linalg_eigh.h' 2025-01-24T02:56:21.5263390Z adding 'torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5267770Z adding 'torch/include/ATen/ops/linalg_eigh_native.h' 2025-01-24T02:56:21.5269190Z adding 'torch/include/ATen/ops/linalg_eigh_ops.h' 2025-01-24T02:56:21.5270470Z adding 'torch/include/ATen/ops/linalg_eigvals.h' 2025-01-24T02:56:21.5271840Z adding 'torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5273010Z adding 'torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h' 2025-01-24T02:56:21.5274240Z adding 'torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h' 2025-01-24T02:56:21.5275430Z adding 'torch/include/ATen/ops/linalg_eigvals_native.h' 2025-01-24T02:56:21.5276760Z adding 'torch/include/ATen/ops/linalg_eigvals_ops.h' 2025-01-24T02:56:21.5278040Z adding 'torch/include/ATen/ops/linalg_eigvalsh.h' 2025-01-24T02:56:21.5279480Z adding 'torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5280630Z adding 'torch/include/ATen/ops/linalg_eigvalsh_native.h' 2025-01-24T02:56:21.5281970Z adding 'torch/include/ATen/ops/linalg_eigvalsh_ops.h' 2025-01-24T02:56:21.5283300Z adding 'torch/include/ATen/ops/linalg_householder_product.h' 2025-01-24T02:56:21.5284690Z adding 'torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h' 2025-01-24T02:56:21.5285880Z adding 'torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h' 2025-01-24T02:56:21.5287140Z adding 'torch/include/ATen/ops/linalg_householder_product_native.h' 2025-01-24T02:56:21.5288470Z adding 'torch/include/ATen/ops/linalg_householder_product_ops.h' 2025-01-24T02:56:21.5289710Z adding 'torch/include/ATen/ops/linalg_inv.h' 2025-01-24T02:56:21.5291150Z adding 'torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5292330Z adding 'torch/include/ATen/ops/linalg_inv_ex.h' 2025-01-24T02:56:21.5293800Z adding 'torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5294940Z adding 'torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h' 2025-01-24T02:56:21.5296180Z adding 'torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h' 2025-01-24T02:56:21.5297420Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta.h' 2025-01-24T02:56:21.5298670Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h' 2025-01-24T02:56:21.5299910Z adding 'torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h' 2025-01-24T02:56:21.5301120Z adding 'torch/include/ATen/ops/linalg_inv_ex_native.h' 2025-01-24T02:56:21.5302480Z adding 'torch/include/ATen/ops/linalg_inv_ex_ops.h' 2025-01-24T02:56:21.5303720Z adding 'torch/include/ATen/ops/linalg_inv_native.h' 2025-01-24T02:56:21.5305070Z adding 'torch/include/ATen/ops/linalg_inv_ops.h' 2025-01-24T02:56:21.5306460Z adding 'torch/include/ATen/ops/linalg_ldl_factor.h' 2025-01-24T02:56:21.5307890Z adding 'torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5309150Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex.h' 2025-01-24T02:56:21.5310780Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5311930Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h' 2025-01-24T02:56:21.5313210Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h' 2025-01-24T02:56:21.5314420Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h' 2025-01-24T02:56:21.5315700Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h' 2025-01-24T02:56:21.5316920Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_native.h' 2025-01-24T02:56:21.5318300Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h' 2025-01-24T02:56:21.5319550Z adding 'torch/include/ATen/ops/linalg_ldl_factor_native.h' 2025-01-24T02:56:21.5320920Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ops.h' 2025-01-24T02:56:21.5322190Z adding 'torch/include/ATen/ops/linalg_ldl_solve.h' 2025-01-24T02:56:21.5323690Z adding 'torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5324800Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h' 2025-01-24T02:56:21.5326060Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h' 2025-01-24T02:56:21.5327290Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta.h' 2025-01-24T02:56:21.5328690Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h' 2025-01-24T02:56:21.5329940Z adding 'torch/include/ATen/ops/linalg_ldl_solve_native.h' 2025-01-24T02:56:21.5331290Z adding 'torch/include/ATen/ops/linalg_ldl_solve_ops.h' 2025-01-24T02:56:21.5332670Z adding 'torch/include/ATen/ops/linalg_lstsq.h' 2025-01-24T02:56:21.5334100Z adding 'torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5338790Z adding 'torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h' 2025-01-24T02:56:21.5339120Z adding 'torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h' 2025-01-24T02:56:21.5339320Z adding 'torch/include/ATen/ops/linalg_lstsq_native.h' 2025-01-24T02:56:21.5339470Z adding 'torch/include/ATen/ops/linalg_lstsq_ops.h' 2025-01-24T02:56:21.5340240Z adding 'torch/include/ATen/ops/linalg_lu.h' 2025-01-24T02:56:21.5342040Z adding 'torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5343190Z adding 'torch/include/ATen/ops/linalg_lu_cpu_dispatch.h' 2025-01-24T02:56:21.5344380Z adding 'torch/include/ATen/ops/linalg_lu_cuda_dispatch.h' 2025-01-24T02:56:21.5345690Z adding 'torch/include/ATen/ops/linalg_lu_factor.h' 2025-01-24T02:56:21.5347110Z adding 'torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5348320Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex.h' 2025-01-24T02:56:21.5349860Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5351020Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h' 2025-01-24T02:56:21.5352310Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h' 2025-01-24T02:56:21.5353510Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta.h' 2025-01-24T02:56:21.5354780Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h' 2025-01-24T02:56:21.5356020Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_native.h' 2025-01-24T02:56:21.5357390Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_ops.h' 2025-01-24T02:56:21.5358730Z adding 'torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h' 2025-01-24T02:56:21.5359970Z adding 'torch/include/ATen/ops/linalg_lu_factor_native.h' 2025-01-24T02:56:21.5361300Z adding 'torch/include/ATen/ops/linalg_lu_factor_ops.h' 2025-01-24T02:56:21.5362550Z adding 'torch/include/ATen/ops/linalg_lu_meta.h' 2025-01-24T02:56:21.5363790Z adding 'torch/include/ATen/ops/linalg_lu_meta_dispatch.h' 2025-01-24T02:56:21.5365040Z adding 'torch/include/ATen/ops/linalg_lu_native.h' 2025-01-24T02:56:21.5366400Z adding 'torch/include/ATen/ops/linalg_lu_ops.h' 2025-01-24T02:56:21.5367730Z adding 'torch/include/ATen/ops/linalg_lu_solve.h' 2025-01-24T02:56:21.5369170Z adding 'torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5370330Z adding 'torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h' 2025-01-24T02:56:21.5371600Z adding 'torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h' 2025-01-24T02:56:21.5372840Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta.h' 2025-01-24T02:56:21.5374090Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h' 2025-01-24T02:56:21.5375290Z adding 'torch/include/ATen/ops/linalg_lu_solve_native.h' 2025-01-24T02:56:21.5376620Z adding 'torch/include/ATen/ops/linalg_lu_solve_ops.h' 2025-01-24T02:56:21.5377870Z adding 'torch/include/ATen/ops/linalg_matmul.h' 2025-01-24T02:56:21.5379300Z adding 'torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5380410Z adding 'torch/include/ATen/ops/linalg_matmul_native.h' 2025-01-24T02:56:21.5381720Z adding 'torch/include/ATen/ops/linalg_matmul_ops.h' 2025-01-24T02:56:21.5382980Z adding 'torch/include/ATen/ops/linalg_matrix_exp.h' 2025-01-24T02:56:21.5384400Z adding 'torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5385560Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h' 2025-01-24T02:56:21.5386780Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h' 2025-01-24T02:56:21.5388010Z adding 'torch/include/ATen/ops/linalg_matrix_exp_native.h' 2025-01-24T02:56:21.5389330Z adding 'torch/include/ATen/ops/linalg_matrix_exp_ops.h' 2025-01-24T02:56:21.5390770Z adding 'torch/include/ATen/ops/linalg_matrix_norm.h' 2025-01-24T02:56:21.5392250Z adding 'torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5393440Z adding 'torch/include/ATen/ops/linalg_matrix_norm_native.h' 2025-01-24T02:56:21.5394930Z adding 'torch/include/ATen/ops/linalg_matrix_norm_ops.h' 2025-01-24T02:56:21.5396250Z adding 'torch/include/ATen/ops/linalg_matrix_power.h' 2025-01-24T02:56:21.5397700Z adding 'torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5398860Z adding 'torch/include/ATen/ops/linalg_matrix_power_native.h' 2025-01-24T02:56:21.5400180Z adding 'torch/include/ATen/ops/linalg_matrix_power_ops.h' 2025-01-24T02:56:21.5401680Z adding 'torch/include/ATen/ops/linalg_matrix_rank.h' 2025-01-24T02:56:21.5403200Z adding 'torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5404440Z adding 'torch/include/ATen/ops/linalg_matrix_rank_native.h' 2025-01-24T02:56:21.5406170Z adding 'torch/include/ATen/ops/linalg_matrix_rank_ops.h' 2025-01-24T02:56:21.5407450Z adding 'torch/include/ATen/ops/linalg_multi_dot.h' 2025-01-24T02:56:21.5408880Z adding 'torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5410010Z adding 'torch/include/ATen/ops/linalg_multi_dot_native.h' 2025-01-24T02:56:21.5411340Z adding 'torch/include/ATen/ops/linalg_multi_dot_ops.h' 2025-01-24T02:56:21.5412700Z adding 'torch/include/ATen/ops/linalg_norm.h' 2025-01-24T02:56:21.5414220Z adding 'torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5415370Z adding 'torch/include/ATen/ops/linalg_norm_native.h' 2025-01-24T02:56:21.5416870Z adding 'torch/include/ATen/ops/linalg_norm_ops.h' 2025-01-24T02:56:21.5418370Z adding 'torch/include/ATen/ops/linalg_pinv.h' 2025-01-24T02:56:21.5419820Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5421170Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5422460Z adding 'torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5423690Z adding 'torch/include/ATen/ops/linalg_pinv_native.h' 2025-01-24T02:56:21.5425420Z adding 'torch/include/ATen/ops/linalg_pinv_ops.h' 2025-01-24T02:56:21.5426690Z adding 'torch/include/ATen/ops/linalg_qr.h' 2025-01-24T02:56:21.5428230Z adding 'torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5429380Z adding 'torch/include/ATen/ops/linalg_qr_cpu_dispatch.h' 2025-01-24T02:56:21.5430770Z adding 'torch/include/ATen/ops/linalg_qr_cuda_dispatch.h' 2025-01-24T02:56:21.5432010Z adding 'torch/include/ATen/ops/linalg_qr_meta.h' 2025-01-24T02:56:21.5433270Z adding 'torch/include/ATen/ops/linalg_qr_meta_dispatch.h' 2025-01-24T02:56:21.5434500Z adding 'torch/include/ATen/ops/linalg_qr_native.h' 2025-01-24T02:56:21.5435870Z adding 'torch/include/ATen/ops/linalg_qr_ops.h' 2025-01-24T02:56:21.5437150Z adding 'torch/include/ATen/ops/linalg_slogdet.h' 2025-01-24T02:56:21.5438620Z adding 'torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5439680Z adding 'torch/include/ATen/ops/linalg_slogdet_native.h' 2025-01-24T02:56:21.5441010Z adding 'torch/include/ATen/ops/linalg_slogdet_ops.h' 2025-01-24T02:56:21.5442300Z adding 'torch/include/ATen/ops/linalg_solve.h' 2025-01-24T02:56:21.5443740Z adding 'torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5444890Z adding 'torch/include/ATen/ops/linalg_solve_ex.h' 2025-01-24T02:56:21.5446350Z adding 'torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5447470Z adding 'torch/include/ATen/ops/linalg_solve_ex_native.h' 2025-01-24T02:56:21.5448800Z adding 'torch/include/ATen/ops/linalg_solve_ex_ops.h' 2025-01-24T02:56:21.5450000Z adding 'torch/include/ATen/ops/linalg_solve_native.h' 2025-01-24T02:56:21.5451300Z adding 'torch/include/ATen/ops/linalg_solve_ops.h' 2025-01-24T02:56:21.5452640Z adding 'torch/include/ATen/ops/linalg_solve_triangular.h' 2025-01-24T02:56:21.5454020Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h' 2025-01-24T02:56:21.5455290Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h' 2025-01-24T02:56:21.5456560Z adding 'torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h' 2025-01-24T02:56:21.5457820Z adding 'torch/include/ATen/ops/linalg_solve_triangular_native.h' 2025-01-24T02:56:21.5459160Z adding 'torch/include/ATen/ops/linalg_solve_triangular_ops.h' 2025-01-24T02:56:21.5460430Z adding 'torch/include/ATen/ops/linalg_svd.h' 2025-01-24T02:56:21.5461910Z adding 'torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5463030Z adding 'torch/include/ATen/ops/linalg_svd_native.h' 2025-01-24T02:56:21.5464380Z adding 'torch/include/ATen/ops/linalg_svd_ops.h' 2025-01-24T02:56:21.5465670Z adding 'torch/include/ATen/ops/linalg_svdvals.h' 2025-01-24T02:56:21.5467080Z adding 'torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5468220Z adding 'torch/include/ATen/ops/linalg_svdvals_native.h' 2025-01-24T02:56:21.5469530Z adding 'torch/include/ATen/ops/linalg_svdvals_ops.h' 2025-01-24T02:56:21.5470860Z adding 'torch/include/ATen/ops/linalg_tensorinv.h' 2025-01-24T02:56:21.5472290Z adding 'torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5473430Z adding 'torch/include/ATen/ops/linalg_tensorinv_native.h' 2025-01-24T02:56:21.5474780Z adding 'torch/include/ATen/ops/linalg_tensorinv_ops.h' 2025-01-24T02:56:21.5476100Z adding 'torch/include/ATen/ops/linalg_tensorsolve.h' 2025-01-24T02:56:21.5477550Z adding 'torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5478740Z adding 'torch/include/ATen/ops/linalg_tensorsolve_native.h' 2025-01-24T02:56:21.5480090Z adding 'torch/include/ATen/ops/linalg_tensorsolve_ops.h' 2025-01-24T02:56:21.5481370Z adding 'torch/include/ATen/ops/linalg_vander.h' 2025-01-24T02:56:21.5482830Z adding 'torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5483940Z adding 'torch/include/ATen/ops/linalg_vander_native.h' 2025-01-24T02:56:21.5485240Z adding 'torch/include/ATen/ops/linalg_vander_ops.h' 2025-01-24T02:56:21.5486490Z adding 'torch/include/ATen/ops/linalg_vecdot.h' 2025-01-24T02:56:21.5487920Z adding 'torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5489030Z adding 'torch/include/ATen/ops/linalg_vecdot_native.h' 2025-01-24T02:56:21.5490370Z adding 'torch/include/ATen/ops/linalg_vecdot_ops.h' 2025-01-24T02:56:21.5491710Z adding 'torch/include/ATen/ops/linalg_vector_norm.h' 2025-01-24T02:56:21.5493200Z adding 'torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5494360Z adding 'torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h' 2025-01-24T02:56:21.5495620Z adding 'torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h' 2025-01-24T02:56:21.5496880Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta.h' 2025-01-24T02:56:21.5498140Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h' 2025-01-24T02:56:21.5499380Z adding 'torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h' 2025-01-24T02:56:21.5500620Z adding 'torch/include/ATen/ops/linalg_vector_norm_native.h' 2025-01-24T02:56:21.5501970Z adding 'torch/include/ATen/ops/linalg_vector_norm_ops.h' 2025-01-24T02:56:21.5503230Z adding 'torch/include/ATen/ops/linear.h' 2025-01-24T02:56:21.5504660Z adding 'torch/include/ATen/ops/linear_backward.h' 2025-01-24T02:56:21.5506150Z adding 'torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5507290Z adding 'torch/include/ATen/ops/linear_backward_mps_dispatch.h' 2025-01-24T02:56:21.5508570Z adding 'torch/include/ATen/ops/linear_backward_native.h' 2025-01-24T02:56:21.5509940Z adding 'torch/include/ATen/ops/linear_backward_ops.h' 2025-01-24T02:56:21.5511370Z adding 'torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5512610Z adding 'torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5513780Z adding 'torch/include/ATen/ops/linear_mps_dispatch.h' 2025-01-24T02:56:21.5514990Z adding 'torch/include/ATen/ops/linear_native.h' 2025-01-24T02:56:21.5516330Z adding 'torch/include/ATen/ops/linear_ops.h' 2025-01-24T02:56:21.5518010Z adding 'torch/include/ATen/ops/linspace.h' 2025-01-24T02:56:21.5519580Z adding 'torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5520740Z adding 'torch/include/ATen/ops/linspace_cpu_dispatch.h' 2025-01-24T02:56:21.5521930Z adding 'torch/include/ATen/ops/linspace_cuda_dispatch.h' 2025-01-24T02:56:21.5523160Z adding 'torch/include/ATen/ops/linspace_meta_dispatch.h' 2025-01-24T02:56:21.5524400Z adding 'torch/include/ATen/ops/linspace_mps_dispatch.h' 2025-01-24T02:56:21.5525740Z adding 'torch/include/ATen/ops/linspace_native.h' 2025-01-24T02:56:21.5527480Z adding 'torch/include/ATen/ops/linspace_ops.h' 2025-01-24T02:56:21.5528730Z adding 'torch/include/ATen/ops/log.h' 2025-01-24T02:56:21.5530070Z adding 'torch/include/ATen/ops/log10.h' 2025-01-24T02:56:21.5531540Z adding 'torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5532650Z adding 'torch/include/ATen/ops/log10_cpu_dispatch.h' 2025-01-24T02:56:21.5533970Z adding 'torch/include/ATen/ops/log10_cuda_dispatch.h' 2025-01-24T02:56:21.5535180Z adding 'torch/include/ATen/ops/log10_meta.h' 2025-01-24T02:56:21.5536460Z adding 'torch/include/ATen/ops/log10_meta_dispatch.h' 2025-01-24T02:56:21.5537700Z adding 'torch/include/ATen/ops/log10_mps_dispatch.h' 2025-01-24T02:56:21.5538950Z adding 'torch/include/ATen/ops/log10_native.h' 2025-01-24T02:56:21.5540320Z adding 'torch/include/ATen/ops/log10_ops.h' 2025-01-24T02:56:21.5541590Z adding 'torch/include/ATen/ops/log1p.h' 2025-01-24T02:56:21.5543040Z adding 'torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5544100Z adding 'torch/include/ATen/ops/log1p_cpu_dispatch.h' 2025-01-24T02:56:21.5545340Z adding 'torch/include/ATen/ops/log1p_cuda_dispatch.h' 2025-01-24T02:56:21.5546610Z adding 'torch/include/ATen/ops/log1p_meta.h' 2025-01-24T02:56:21.5547890Z adding 'torch/include/ATen/ops/log1p_meta_dispatch.h' 2025-01-24T02:56:21.5549110Z adding 'torch/include/ATen/ops/log1p_mps_dispatch.h' 2025-01-24T02:56:21.5553630Z adding 'torch/include/ATen/ops/log1p_native.h' 2025-01-24T02:56:21.5553910Z adding 'torch/include/ATen/ops/log1p_ops.h' 2025-01-24T02:56:21.5554030Z adding 'torch/include/ATen/ops/log2.h' 2025-01-24T02:56:21.5554340Z adding 'torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5555230Z adding 'torch/include/ATen/ops/log2_cpu_dispatch.h' 2025-01-24T02:56:21.5556820Z adding 'torch/include/ATen/ops/log2_cuda_dispatch.h' 2025-01-24T02:56:21.5558060Z adding 'torch/include/ATen/ops/log2_meta.h' 2025-01-24T02:56:21.5559320Z adding 'torch/include/ATen/ops/log2_meta_dispatch.h' 2025-01-24T02:56:21.5560600Z adding 'torch/include/ATen/ops/log2_mps_dispatch.h' 2025-01-24T02:56:21.5561790Z adding 'torch/include/ATen/ops/log2_native.h' 2025-01-24T02:56:21.5563190Z adding 'torch/include/ATen/ops/log2_ops.h' 2025-01-24T02:56:21.5564610Z adding 'torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5565740Z adding 'torch/include/ATen/ops/log_cpu_dispatch.h' 2025-01-24T02:56:21.5567350Z adding 'torch/include/ATen/ops/log_cuda_dispatch.h' 2025-01-24T02:56:21.5568570Z adding 'torch/include/ATen/ops/log_meta.h' 2025-01-24T02:56:21.5569830Z adding 'torch/include/ATen/ops/log_meta_dispatch.h' 2025-01-24T02:56:21.5571070Z adding 'torch/include/ATen/ops/log_mps_dispatch.h' 2025-01-24T02:56:21.5572310Z adding 'torch/include/ATen/ops/log_native.h' 2025-01-24T02:56:21.5573620Z adding 'torch/include/ATen/ops/log_normal.h' 2025-01-24T02:56:21.5575050Z adding 'torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5576230Z adding 'torch/include/ATen/ops/log_normal_cpu_dispatch.h' 2025-01-24T02:56:21.5577490Z adding 'torch/include/ATen/ops/log_normal_cuda_dispatch.h' 2025-01-24T02:56:21.5578730Z adding 'torch/include/ATen/ops/log_normal_meta_dispatch.h' 2025-01-24T02:56:21.5579980Z adding 'torch/include/ATen/ops/log_normal_native.h' 2025-01-24T02:56:21.5581400Z adding 'torch/include/ATen/ops/log_normal_ops.h' 2025-01-24T02:56:21.5582730Z adding 'torch/include/ATen/ops/log_ops.h' 2025-01-24T02:56:21.5584030Z adding 'torch/include/ATen/ops/log_sigmoid.h' 2025-01-24T02:56:21.5585430Z adding 'torch/include/ATen/ops/log_sigmoid_backward.h' 2025-01-24T02:56:21.5586720Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h' 2025-01-24T02:56:21.5588000Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h' 2025-01-24T02:56:21.5589200Z adding 'torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h' 2025-01-24T02:56:21.5590440Z adding 'torch/include/ATen/ops/log_sigmoid_backward_native.h' 2025-01-24T02:56:21.5591790Z adding 'torch/include/ATen/ops/log_sigmoid_backward_ops.h' 2025-01-24T02:56:21.5593160Z adding 'torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5594360Z adding 'torch/include/ATen/ops/log_sigmoid_forward.h' 2025-01-24T02:56:21.5595710Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h' 2025-01-24T02:56:21.5596970Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h' 2025-01-24T02:56:21.5598220Z adding 'torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h' 2025-01-24T02:56:21.5599490Z adding 'torch/include/ATen/ops/log_sigmoid_forward_native.h' 2025-01-24T02:56:21.5600950Z adding 'torch/include/ATen/ops/log_sigmoid_forward_ops.h' 2025-01-24T02:56:21.5602180Z adding 'torch/include/ATen/ops/log_sigmoid_native.h' 2025-01-24T02:56:21.5603440Z adding 'torch/include/ATen/ops/log_sigmoid_ops.h' 2025-01-24T02:56:21.5604760Z adding 'torch/include/ATen/ops/log_softmax.h' 2025-01-24T02:56:21.5606250Z adding 'torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5607500Z adding 'torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5608660Z adding 'torch/include/ATen/ops/log_softmax_native.h' 2025-01-24T02:56:21.5610050Z adding 'torch/include/ATen/ops/log_softmax_ops.h' 2025-01-24T02:56:21.5611300Z adding 'torch/include/ATen/ops/logaddexp.h' 2025-01-24T02:56:21.5612580Z adding 'torch/include/ATen/ops/logaddexp2.h' 2025-01-24T02:56:21.5614050Z adding 'torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5615150Z adding 'torch/include/ATen/ops/logaddexp2_cpu_dispatch.h' 2025-01-24T02:56:21.5616370Z adding 'torch/include/ATen/ops/logaddexp2_cuda_dispatch.h' 2025-01-24T02:56:21.5617570Z adding 'torch/include/ATen/ops/logaddexp2_meta.h' 2025-01-24T02:56:21.5618840Z adding 'torch/include/ATen/ops/logaddexp2_meta_dispatch.h' 2025-01-24T02:56:21.5620070Z adding 'torch/include/ATen/ops/logaddexp2_mps_dispatch.h' 2025-01-24T02:56:21.5621310Z adding 'torch/include/ATen/ops/logaddexp2_native.h' 2025-01-24T02:56:21.5622630Z adding 'torch/include/ATen/ops/logaddexp2_ops.h' 2025-01-24T02:56:21.5624080Z adding 'torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5625160Z adding 'torch/include/ATen/ops/logaddexp_cpu_dispatch.h' 2025-01-24T02:56:21.5626400Z adding 'torch/include/ATen/ops/logaddexp_cuda_dispatch.h' 2025-01-24T02:56:21.5627610Z adding 'torch/include/ATen/ops/logaddexp_meta.h' 2025-01-24T02:56:21.5628910Z adding 'torch/include/ATen/ops/logaddexp_meta_dispatch.h' 2025-01-24T02:56:21.5630140Z adding 'torch/include/ATen/ops/logaddexp_mps_dispatch.h' 2025-01-24T02:56:21.5631370Z adding 'torch/include/ATen/ops/logaddexp_native.h' 2025-01-24T02:56:21.5632710Z adding 'torch/include/ATen/ops/logaddexp_ops.h' 2025-01-24T02:56:21.5634140Z adding 'torch/include/ATen/ops/logcumsumexp.h' 2025-01-24T02:56:21.5635580Z adding 'torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5636900Z adding 'torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5638030Z adding 'torch/include/ATen/ops/logcumsumexp_native.h' 2025-01-24T02:56:21.5639480Z adding 'torch/include/ATen/ops/logcumsumexp_ops.h' 2025-01-24T02:56:21.5640690Z adding 'torch/include/ATen/ops/logdet.h' 2025-01-24T02:56:21.5642090Z adding 'torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5643190Z adding 'torch/include/ATen/ops/logdet_native.h' 2025-01-24T02:56:21.5644500Z adding 'torch/include/ATen/ops/logdet_ops.h' 2025-01-24T02:56:21.5645770Z adding 'torch/include/ATen/ops/logical_and.h' 2025-01-24T02:56:21.5647200Z adding 'torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5648380Z adding 'torch/include/ATen/ops/logical_and_cpu_dispatch.h' 2025-01-24T02:56:21.5649610Z adding 'torch/include/ATen/ops/logical_and_cuda_dispatch.h' 2025-01-24T02:56:21.5650820Z adding 'torch/include/ATen/ops/logical_and_mps_dispatch.h' 2025-01-24T02:56:21.5652010Z adding 'torch/include/ATen/ops/logical_and_native.h' 2025-01-24T02:56:21.5653330Z adding 'torch/include/ATen/ops/logical_and_ops.h' 2025-01-24T02:56:21.5654570Z adding 'torch/include/ATen/ops/logical_not.h' 2025-01-24T02:56:21.5656050Z adding 'torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5657180Z adding 'torch/include/ATen/ops/logical_not_cpu_dispatch.h' 2025-01-24T02:56:21.5658410Z adding 'torch/include/ATen/ops/logical_not_cuda_dispatch.h' 2025-01-24T02:56:21.5659620Z adding 'torch/include/ATen/ops/logical_not_mps_dispatch.h' 2025-01-24T02:56:21.5660810Z adding 'torch/include/ATen/ops/logical_not_native.h' 2025-01-24T02:56:21.5662160Z adding 'torch/include/ATen/ops/logical_not_ops.h' 2025-01-24T02:56:21.5663470Z adding 'torch/include/ATen/ops/logical_or.h' 2025-01-24T02:56:21.5664880Z adding 'torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5666020Z adding 'torch/include/ATen/ops/logical_or_cpu_dispatch.h' 2025-01-24T02:56:21.5667270Z adding 'torch/include/ATen/ops/logical_or_cuda_dispatch.h' 2025-01-24T02:56:21.5668490Z adding 'torch/include/ATen/ops/logical_or_mps_dispatch.h' 2025-01-24T02:56:21.5669700Z adding 'torch/include/ATen/ops/logical_or_native.h' 2025-01-24T02:56:21.5671000Z adding 'torch/include/ATen/ops/logical_or_ops.h' 2025-01-24T02:56:21.5672270Z adding 'torch/include/ATen/ops/logical_xor.h' 2025-01-24T02:56:21.5673670Z adding 'torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5674810Z adding 'torch/include/ATen/ops/logical_xor_cpu_dispatch.h' 2025-01-24T02:56:21.5676030Z adding 'torch/include/ATen/ops/logical_xor_cuda_dispatch.h' 2025-01-24T02:56:21.5677250Z adding 'torch/include/ATen/ops/logical_xor_mps_dispatch.h' 2025-01-24T02:56:21.5678510Z adding 'torch/include/ATen/ops/logical_xor_native.h' 2025-01-24T02:56:21.5679890Z adding 'torch/include/ATen/ops/logical_xor_ops.h' 2025-01-24T02:56:21.5681190Z adding 'torch/include/ATen/ops/logit.h' 2025-01-24T02:56:21.5682500Z adding 'torch/include/ATen/ops/logit_backward.h' 2025-01-24T02:56:21.5684010Z adding 'torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5685160Z adding 'torch/include/ATen/ops/logit_backward_cpu_dispatch.h' 2025-01-24T02:56:21.5686420Z adding 'torch/include/ATen/ops/logit_backward_cuda_dispatch.h' 2025-01-24T02:56:21.5687650Z adding 'torch/include/ATen/ops/logit_backward_meta.h' 2025-01-24T02:56:21.5688920Z adding 'torch/include/ATen/ops/logit_backward_meta_dispatch.h' 2025-01-24T02:56:21.5690190Z adding 'torch/include/ATen/ops/logit_backward_mps_dispatch.h' 2025-01-24T02:56:21.5691410Z adding 'torch/include/ATen/ops/logit_backward_native.h' 2025-01-24T02:56:21.5692770Z adding 'torch/include/ATen/ops/logit_backward_ops.h' 2025-01-24T02:56:21.5694040Z adding 'torch/include/ATen/ops/logit_cpu_dispatch.h' 2025-01-24T02:56:21.5695330Z adding 'torch/include/ATen/ops/logit_cuda_dispatch.h' 2025-01-24T02:56:21.5696600Z adding 'torch/include/ATen/ops/logit_meta_dispatch.h' 2025-01-24T02:56:21.5697970Z adding 'torch/include/ATen/ops/logit_mps_dispatch.h' 2025-01-24T02:56:21.5699230Z adding 'torch/include/ATen/ops/logit_native.h' 2025-01-24T02:56:21.5700600Z adding 'torch/include/ATen/ops/logit_ops.h' 2025-01-24T02:56:21.5702370Z adding 'torch/include/ATen/ops/logspace.h' 2025-01-24T02:56:21.5703960Z adding 'torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5705210Z adding 'torch/include/ATen/ops/logspace_cpu_dispatch.h' 2025-01-24T02:56:21.5706480Z adding 'torch/include/ATen/ops/logspace_cuda_dispatch.h' 2025-01-24T02:56:21.5707690Z adding 'torch/include/ATen/ops/logspace_meta_dispatch.h' 2025-01-24T02:56:21.5709060Z adding 'torch/include/ATen/ops/logspace_native.h' 2025-01-24T02:56:21.5710780Z adding 'torch/include/ATen/ops/logspace_ops.h' 2025-01-24T02:56:21.5712160Z adding 'torch/include/ATen/ops/logsumexp.h' 2025-01-24T02:56:21.5713600Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5714930Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5716140Z adding 'torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5717270Z adding 'torch/include/ATen/ops/logsumexp_native.h' 2025-01-24T02:56:21.5718710Z adding 'torch/include/ATen/ops/logsumexp_ops.h' 2025-01-24T02:56:21.5720030Z adding 'torch/include/ATen/ops/lshift.h' 2025-01-24T02:56:21.5721500Z adding 'torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5722650Z adding 'torch/include/ATen/ops/lshift_cpu_dispatch.h' 2025-01-24T02:56:21.5723850Z adding 'torch/include/ATen/ops/lshift_cuda_dispatch.h' 2025-01-24T02:56:21.5725080Z adding 'torch/include/ATen/ops/lshift_meta_dispatch.h' 2025-01-24T02:56:21.5726280Z adding 'torch/include/ATen/ops/lshift_mps_dispatch.h' 2025-01-24T02:56:21.5727500Z adding 'torch/include/ATen/ops/lshift_native.h' 2025-01-24T02:56:21.5728970Z adding 'torch/include/ATen/ops/lshift_ops.h' 2025-01-24T02:56:21.5730280Z adding 'torch/include/ATen/ops/lstm.h' 2025-01-24T02:56:21.5731580Z adding 'torch/include/ATen/ops/lstm_cell.h' 2025-01-24T02:56:21.5732990Z adding 'torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5734130Z adding 'torch/include/ATen/ops/lstm_cell_native.h' 2025-01-24T02:56:21.5735550Z adding 'torch/include/ATen/ops/lstm_cell_ops.h' 2025-01-24T02:56:21.5736950Z adding 'torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5738280Z adding 'torch/include/ATen/ops/lstm_mps_backward.h' 2025-01-24T02:56:21.5739750Z adding 'torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5740950Z adding 'torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h' 2025-01-24T02:56:21.5742230Z adding 'torch/include/ATen/ops/lstm_mps_backward_native.h' 2025-01-24T02:56:21.5743760Z adding 'torch/include/ATen/ops/lstm_mps_backward_ops.h' 2025-01-24T02:56:21.5744970Z adding 'torch/include/ATen/ops/lstm_native.h' 2025-01-24T02:56:21.5746360Z adding 'torch/include/ATen/ops/lstm_ops.h' 2025-01-24T02:56:21.5747710Z adding 'torch/include/ATen/ops/lt.h' 2025-01-24T02:56:21.5749120Z adding 'torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5750270Z adding 'torch/include/ATen/ops/lt_cpu_dispatch.h' 2025-01-24T02:56:21.5751510Z adding 'torch/include/ATen/ops/lt_cuda_dispatch.h' 2025-01-24T02:56:21.5752710Z adding 'torch/include/ATen/ops/lt_meta.h' 2025-01-24T02:56:21.5754000Z adding 'torch/include/ATen/ops/lt_meta_dispatch.h' 2025-01-24T02:56:21.5755210Z adding 'torch/include/ATen/ops/lt_mps_dispatch.h' 2025-01-24T02:56:21.5756500Z adding 'torch/include/ATen/ops/lt_native.h' 2025-01-24T02:56:21.5757970Z adding 'torch/include/ATen/ops/lt_ops.h' 2025-01-24T02:56:21.5759270Z adding 'torch/include/ATen/ops/lu_solve.h' 2025-01-24T02:56:21.5760700Z adding 'torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5761850Z adding 'torch/include/ATen/ops/lu_solve_native.h' 2025-01-24T02:56:21.5763210Z adding 'torch/include/ATen/ops/lu_solve_ops.h' 2025-01-24T02:56:21.5767760Z adding 'torch/include/ATen/ops/lu_unpack.h' 2025-01-24T02:56:21.5768240Z adding 'torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5768410Z adding 'torch/include/ATen/ops/lu_unpack_cpu_dispatch.h' 2025-01-24T02:56:21.5768610Z adding 'torch/include/ATen/ops/lu_unpack_cuda_dispatch.h' 2025-01-24T02:56:21.5769240Z adding 'torch/include/ATen/ops/lu_unpack_meta.h' 2025-01-24T02:56:21.5770770Z adding 'torch/include/ATen/ops/lu_unpack_meta_dispatch.h' 2025-01-24T02:56:21.5771990Z adding 'torch/include/ATen/ops/lu_unpack_native.h' 2025-01-24T02:56:21.5773390Z adding 'torch/include/ATen/ops/lu_unpack_ops.h' 2025-01-24T02:56:21.5774550Z adding 'torch/include/ATen/ops/mH.h' 2025-01-24T02:56:21.5775950Z adding 'torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5777090Z adding 'torch/include/ATen/ops/mH_native.h' 2025-01-24T02:56:21.5778310Z adding 'torch/include/ATen/ops/mH_ops.h' 2025-01-24T02:56:21.5779510Z adding 'torch/include/ATen/ops/mT.h' 2025-01-24T02:56:21.5780900Z adding 'torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5782000Z adding 'torch/include/ATen/ops/mT_native.h' 2025-01-24T02:56:21.5783260Z adding 'torch/include/ATen/ops/mT_ops.h' 2025-01-24T02:56:21.5784570Z adding 'torch/include/ATen/ops/margin_ranking_loss.h' 2025-01-24T02:56:21.5785980Z adding 'torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5787100Z adding 'torch/include/ATen/ops/margin_ranking_loss_native.h' 2025-01-24T02:56:21.5788430Z adding 'torch/include/ATen/ops/margin_ranking_loss_ops.h' 2025-01-24T02:56:21.5789760Z adding 'torch/include/ATen/ops/masked_fill.h' 2025-01-24T02:56:21.5791230Z adding 'torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5792380Z adding 'torch/include/ATen/ops/masked_fill_cpu_dispatch.h' 2025-01-24T02:56:21.5793590Z adding 'torch/include/ATen/ops/masked_fill_cuda_dispatch.h' 2025-01-24T02:56:21.5794810Z adding 'torch/include/ATen/ops/masked_fill_meta_dispatch.h' 2025-01-24T02:56:21.5796060Z adding 'torch/include/ATen/ops/masked_fill_mps_dispatch.h' 2025-01-24T02:56:21.5797310Z adding 'torch/include/ATen/ops/masked_fill_native.h' 2025-01-24T02:56:21.5798890Z adding 'torch/include/ATen/ops/masked_fill_ops.h' 2025-01-24T02:56:21.5800190Z adding 'torch/include/ATen/ops/masked_scatter.h' 2025-01-24T02:56:21.5801570Z adding 'torch/include/ATen/ops/masked_scatter_backward.h' 2025-01-24T02:56:21.5803020Z adding 'torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5804150Z adding 'torch/include/ATen/ops/masked_scatter_backward_native.h' 2025-01-24T02:56:21.5805460Z adding 'torch/include/ATen/ops/masked_scatter_backward_ops.h' 2025-01-24T02:56:21.5806880Z adding 'torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5808020Z adding 'torch/include/ATen/ops/masked_scatter_cpu_dispatch.h' 2025-01-24T02:56:21.5809230Z adding 'torch/include/ATen/ops/masked_scatter_cuda_dispatch.h' 2025-01-24T02:56:21.5810460Z adding 'torch/include/ATen/ops/masked_scatter_meta_dispatch.h' 2025-01-24T02:56:21.5811670Z adding 'torch/include/ATen/ops/masked_scatter_mps_dispatch.h' 2025-01-24T02:56:21.5812860Z adding 'torch/include/ATen/ops/masked_scatter_native.h' 2025-01-24T02:56:21.5814220Z adding 'torch/include/ATen/ops/masked_scatter_ops.h' 2025-01-24T02:56:21.5815480Z adding 'torch/include/ATen/ops/masked_select.h' 2025-01-24T02:56:21.5816810Z adding 'torch/include/ATen/ops/masked_select_backward.h' 2025-01-24T02:56:21.5818210Z adding 'torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5819390Z adding 'torch/include/ATen/ops/masked_select_backward_native.h' 2025-01-24T02:56:21.5820700Z adding 'torch/include/ATen/ops/masked_select_backward_ops.h' 2025-01-24T02:56:21.5822010Z adding 'torch/include/ATen/ops/masked_select_cpu_dispatch.h' 2025-01-24T02:56:21.5823300Z adding 'torch/include/ATen/ops/masked_select_cuda_dispatch.h' 2025-01-24T02:56:21.5824540Z adding 'torch/include/ATen/ops/masked_select_mps_dispatch.h' 2025-01-24T02:56:21.5825730Z adding 'torch/include/ATen/ops/masked_select_native.h' 2025-01-24T02:56:21.5827090Z adding 'torch/include/ATen/ops/masked_select_ops.h' 2025-01-24T02:56:21.5828400Z adding 'torch/include/ATen/ops/matmul.h' 2025-01-24T02:56:21.5829680Z adding 'torch/include/ATen/ops/matmul_backward.h' 2025-01-24T02:56:21.5831120Z adding 'torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5832250Z adding 'torch/include/ATen/ops/matmul_backward_native.h' 2025-01-24T02:56:21.5833670Z adding 'torch/include/ATen/ops/matmul_backward_ops.h' 2025-01-24T02:56:21.5835080Z adding 'torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5836290Z adding 'torch/include/ATen/ops/matmul_native.h' 2025-01-24T02:56:21.5837620Z adding 'torch/include/ATen/ops/matmul_ops.h' 2025-01-24T02:56:21.5838850Z adding 'torch/include/ATen/ops/matrix_H.h' 2025-01-24T02:56:21.5840250Z adding 'torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5841380Z adding 'torch/include/ATen/ops/matrix_H_native.h' 2025-01-24T02:56:21.5842690Z adding 'torch/include/ATen/ops/matrix_H_ops.h' 2025-01-24T02:56:21.5843990Z adding 'torch/include/ATen/ops/matrix_exp.h' 2025-01-24T02:56:21.5845220Z adding 'torch/include/ATen/ops/matrix_exp_backward.h' 2025-01-24T02:56:21.5846650Z adding 'torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5847750Z adding 'torch/include/ATen/ops/matrix_exp_backward_native.h' 2025-01-24T02:56:21.5849040Z adding 'torch/include/ATen/ops/matrix_exp_backward_ops.h' 2025-01-24T02:56:21.5850420Z adding 'torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5851530Z adding 'torch/include/ATen/ops/matrix_exp_native.h' 2025-01-24T02:56:21.5852770Z adding 'torch/include/ATen/ops/matrix_exp_ops.h' 2025-01-24T02:56:21.5853990Z adding 'torch/include/ATen/ops/matrix_power.h' 2025-01-24T02:56:21.5855400Z adding 'torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5856510Z adding 'torch/include/ATen/ops/matrix_power_native.h' 2025-01-24T02:56:21.5857810Z adding 'torch/include/ATen/ops/matrix_power_ops.h' 2025-01-24T02:56:21.5859220Z adding 'torch/include/ATen/ops/max.h' 2025-01-24T02:56:21.5860730Z adding 'torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5861970Z adding 'torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5863580Z adding 'torch/include/ATen/ops/max_cpu_dispatch.h' 2025-01-24T02:56:21.5864900Z adding 'torch/include/ATen/ops/max_cuda_dispatch.h' 2025-01-24T02:56:21.5866170Z adding 'torch/include/ATen/ops/max_meta.h' 2025-01-24T02:56:21.5867440Z adding 'torch/include/ATen/ops/max_meta_dispatch.h' 2025-01-24T02:56:21.5868680Z adding 'torch/include/ATen/ops/max_mps_dispatch.h' 2025-01-24T02:56:21.5870010Z adding 'torch/include/ATen/ops/max_native.h' 2025-01-24T02:56:21.5871610Z adding 'torch/include/ATen/ops/max_ops.h' 2025-01-24T02:56:21.5872950Z adding 'torch/include/ATen/ops/max_pool1d.h' 2025-01-24T02:56:21.5874380Z adding 'torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5875520Z adding 'torch/include/ATen/ops/max_pool1d_native.h' 2025-01-24T02:56:21.5876870Z adding 'torch/include/ATen/ops/max_pool1d_ops.h' 2025-01-24T02:56:21.5878200Z adding 'torch/include/ATen/ops/max_pool1d_with_indices.h' 2025-01-24T02:56:21.5879650Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5880820Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_native.h' 2025-01-24T02:56:21.5882100Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_ops.h' 2025-01-24T02:56:21.5883310Z adding 'torch/include/ATen/ops/max_pool2d.h' 2025-01-24T02:56:21.5884710Z adding 'torch/include/ATen/ops/max_pool2d_backward.h' 2025-01-24T02:56:21.5886220Z adding 'torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5887470Z adding 'torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h' 2025-01-24T02:56:21.5888740Z adding 'torch/include/ATen/ops/max_pool2d_backward_native.h' 2025-01-24T02:56:21.5890180Z adding 'torch/include/ATen/ops/max_pool2d_backward_ops.h' 2025-01-24T02:56:21.5891530Z adding 'torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5892720Z adding 'torch/include/ATen/ops/max_pool2d_mps_dispatch.h' 2025-01-24T02:56:21.5893950Z adding 'torch/include/ATen/ops/max_pool2d_native.h' 2025-01-24T02:56:21.5895300Z adding 'torch/include/ATen/ops/max_pool2d_ops.h' 2025-01-24T02:56:21.5896790Z adding 'torch/include/ATen/ops/max_pool2d_with_indices.h' 2025-01-24T02:56:21.5898270Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward.h' 2025-01-24T02:56:21.5899850Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5901040Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h' 2025-01-24T02:56:21.5902290Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h' 2025-01-24T02:56:21.5903560Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h' 2025-01-24T02:56:21.5904880Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h' 2025-01-24T02:56:21.5906320Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h' 2025-01-24T02:56:21.5907550Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h' 2025-01-24T02:56:21.5908940Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h' 2025-01-24T02:56:21.5910380Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5911530Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h' 2025-01-24T02:56:21.5912840Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h' 2025-01-24T02:56:21.5914120Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta.h' 2025-01-24T02:56:21.5915430Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h' 2025-01-24T02:56:21.5916720Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h' 2025-01-24T02:56:21.5918010Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_native.h' 2025-01-24T02:56:21.5919430Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_ops.h' 2025-01-24T02:56:21.5920710Z adding 'torch/include/ATen/ops/max_pool3d.h' 2025-01-24T02:56:21.5922160Z adding 'torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5923340Z adding 'torch/include/ATen/ops/max_pool3d_native.h' 2025-01-24T02:56:21.5924640Z adding 'torch/include/ATen/ops/max_pool3d_ops.h' 2025-01-24T02:56:21.5926070Z adding 'torch/include/ATen/ops/max_pool3d_with_indices.h' 2025-01-24T02:56:21.5927490Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward.h' 2025-01-24T02:56:21.5928840Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h' 2025-01-24T02:56:21.5930110Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h' 2025-01-24T02:56:21.5931360Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h' 2025-01-24T02:56:21.5932750Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h' 2025-01-24T02:56:21.5934000Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h' 2025-01-24T02:56:21.5935330Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h' 2025-01-24T02:56:21.5937160Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_native.h' 2025-01-24T02:56:21.5938690Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_ops.h' 2025-01-24T02:56:21.5940130Z adding 'torch/include/ATen/ops/max_unpool2d.h' 2025-01-24T02:56:21.5941510Z adding 'torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h' 2025-01-24T02:56:21.5942720Z adding 'torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h' 2025-01-24T02:56:21.5943900Z adding 'torch/include/ATen/ops/max_unpool2d_native.h' 2025-01-24T02:56:21.5945130Z adding 'torch/include/ATen/ops/max_unpool2d_ops.h' 2025-01-24T02:56:21.5946560Z adding 'torch/include/ATen/ops/max_unpool3d.h' 2025-01-24T02:56:21.5947810Z adding 'torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h' 2025-01-24T02:56:21.5949030Z adding 'torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h' 2025-01-24T02:56:21.5950220Z adding 'torch/include/ATen/ops/max_unpool3d_native.h' 2025-01-24T02:56:21.5951450Z adding 'torch/include/ATen/ops/max_unpool3d_ops.h' 2025-01-24T02:56:21.5952580Z adding 'torch/include/ATen/ops/maximum.h' 2025-01-24T02:56:21.5954030Z adding 'torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5955120Z adding 'torch/include/ATen/ops/maximum_cpu_dispatch.h' 2025-01-24T02:56:21.5955990Z adding 'torch/include/ATen/ops/maximum_cuda_dispatch.h' 2025-01-24T02:56:21.5957200Z adding 'torch/include/ATen/ops/maximum_meta.h' 2025-01-24T02:56:21.5958100Z adding 'torch/include/ATen/ops/maximum_meta_dispatch.h' 2025-01-24T02:56:21.5959310Z adding 'torch/include/ATen/ops/maximum_mps_dispatch.h' 2025-01-24T02:56:21.5960510Z adding 'torch/include/ATen/ops/maximum_native.h' 2025-01-24T02:56:21.5961560Z adding 'torch/include/ATen/ops/maximum_ops.h' 2025-01-24T02:56:21.5962820Z adding 'torch/include/ATen/ops/mean.h' 2025-01-24T02:56:21.5964150Z adding 'torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5965430Z adding 'torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5966580Z adding 'torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5967720Z adding 'torch/include/ATen/ops/mean_cpu_dispatch.h' 2025-01-24T02:56:21.5968590Z adding 'torch/include/ATen/ops/mean_cuda_dispatch.h' 2025-01-24T02:56:21.5969830Z adding 'torch/include/ATen/ops/mean_meta.h' 2025-01-24T02:56:21.5971070Z adding 'torch/include/ATen/ops/mean_meta_dispatch.h' 2025-01-24T02:56:21.5971950Z adding 'torch/include/ATen/ops/mean_mps_dispatch.h' 2025-01-24T02:56:21.5973200Z adding 'torch/include/ATen/ops/mean_native.h' 2025-01-24T02:56:21.5974580Z adding 'torch/include/ATen/ops/mean_ops.h' 2025-01-24T02:56:21.5979600Z adding 'torch/include/ATen/ops/median.h' 2025-01-24T02:56:21.5980050Z adding 'torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.5980320Z adding 'torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5980480Z adding 'torch/include/ATen/ops/median_cpu_dispatch.h' 2025-01-24T02:56:21.5980640Z adding 'torch/include/ATen/ops/median_cuda_dispatch.h' 2025-01-24T02:56:21.5981170Z adding 'torch/include/ATen/ops/median_mps_dispatch.h' 2025-01-24T02:56:21.5982530Z adding 'torch/include/ATen/ops/median_native.h' 2025-01-24T02:56:21.5983880Z adding 'torch/include/ATen/ops/median_ops.h' 2025-01-24T02:56:21.5985090Z adding 'torch/include/ATen/ops/meshgrid.h' 2025-01-24T02:56:21.5986450Z adding 'torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5987040Z adding 'torch/include/ATen/ops/meshgrid_native.h' 2025-01-24T02:56:21.5988530Z adding 'torch/include/ATen/ops/meshgrid_ops.h' 2025-01-24T02:56:21.5989840Z adding 'torch/include/ATen/ops/min.h' 2025-01-24T02:56:21.5991260Z adding 'torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.5992420Z adding 'torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.5993200Z adding 'torch/include/ATen/ops/min_cpu_dispatch.h' 2025-01-24T02:56:21.5994500Z adding 'torch/include/ATen/ops/min_cuda_dispatch.h' 2025-01-24T02:56:21.5995710Z adding 'torch/include/ATen/ops/min_meta.h' 2025-01-24T02:56:21.5996950Z adding 'torch/include/ATen/ops/min_meta_dispatch.h' 2025-01-24T02:56:21.5997820Z adding 'torch/include/ATen/ops/min_mps_dispatch.h' 2025-01-24T02:56:21.5999030Z adding 'torch/include/ATen/ops/min_native.h' 2025-01-24T02:56:21.6000490Z adding 'torch/include/ATen/ops/min_ops.h' 2025-01-24T02:56:21.6001670Z adding 'torch/include/ATen/ops/minimum.h' 2025-01-24T02:56:21.6003090Z adding 'torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6003640Z adding 'torch/include/ATen/ops/minimum_cpu_dispatch.h' 2025-01-24T02:56:21.6004990Z adding 'torch/include/ATen/ops/minimum_cuda_dispatch.h' 2025-01-24T02:56:21.6005930Z adding 'torch/include/ATen/ops/minimum_meta.h' 2025-01-24T02:56:21.6007150Z adding 'torch/include/ATen/ops/minimum_meta_dispatch.h' 2025-01-24T02:56:21.6008050Z adding 'torch/include/ATen/ops/minimum_mps_dispatch.h' 2025-01-24T02:56:21.6009260Z adding 'torch/include/ATen/ops/minimum_native.h' 2025-01-24T02:56:21.6010430Z adding 'torch/include/ATen/ops/minimum_ops.h' 2025-01-24T02:56:21.6011670Z adding 'torch/include/ATen/ops/miopen_batch_norm.h' 2025-01-24T02:56:21.6012990Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward.h' 2025-01-24T02:56:21.6014350Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6015070Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h' 2025-01-24T02:56:21.6016430Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_native.h' 2025-01-24T02:56:21.6017750Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_ops.h' 2025-01-24T02:56:21.6019140Z adding 'torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6019770Z adding 'torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h' 2025-01-24T02:56:21.6021160Z adding 'torch/include/ATen/ops/miopen_batch_norm_native.h' 2025-01-24T02:56:21.6022440Z adding 'torch/include/ATen/ops/miopen_batch_norm_ops.h' 2025-01-24T02:56:21.6023950Z adding 'torch/include/ATen/ops/miopen_convolution.h' 2025-01-24T02:56:21.6025320Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu.h' 2025-01-24T02:56:21.6026570Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h' 2025-01-24T02:56:21.6027740Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_native.h' 2025-01-24T02:56:21.6028920Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_ops.h' 2025-01-24T02:56:21.6030230Z adding 'torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6031310Z adding 'torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h' 2025-01-24T02:56:21.6032160Z adding 'torch/include/ATen/ops/miopen_convolution_native.h' 2025-01-24T02:56:21.6033490Z adding 'torch/include/ATen/ops/miopen_convolution_ops.h' 2025-01-24T02:56:21.6034690Z adding 'torch/include/ATen/ops/miopen_convolution_relu.h' 2025-01-24T02:56:21.6035980Z adding 'torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h' 2025-01-24T02:56:21.6037120Z adding 'torch/include/ATen/ops/miopen_convolution_relu_native.h' 2025-01-24T02:56:21.6038310Z adding 'torch/include/ATen/ops/miopen_convolution_relu_ops.h' 2025-01-24T02:56:21.6039800Z adding 'torch/include/ATen/ops/miopen_convolution_transpose.h' 2025-01-24T02:56:21.6041240Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6042400Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h' 2025-01-24T02:56:21.6043560Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_native.h' 2025-01-24T02:56:21.6044750Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_ops.h' 2025-01-24T02:56:21.6046170Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution.h' 2025-01-24T02:56:21.6047530Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6048640Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h' 2025-01-24T02:56:21.6049480Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_native.h' 2025-01-24T02:56:21.6050880Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_ops.h' 2025-01-24T02:56:21.6052040Z adding 'torch/include/ATen/ops/miopen_rnn.h' 2025-01-24T02:56:21.6053460Z adding 'torch/include/ATen/ops/miopen_rnn_backward.h' 2025-01-24T02:56:21.6054850Z adding 'torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6055970Z adding 'torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h' 2025-01-24T02:56:21.6057090Z adding 'torch/include/ATen/ops/miopen_rnn_backward_native.h' 2025-01-24T02:56:21.6058590Z adding 'torch/include/ATen/ops/miopen_rnn_backward_ops.h' 2025-01-24T02:56:21.6059870Z adding 'torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6061040Z adding 'torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h' 2025-01-24T02:56:21.6062210Z adding 'torch/include/ATen/ops/miopen_rnn_native.h' 2025-01-24T02:56:21.6063520Z adding 'torch/include/ATen/ops/miopen_rnn_ops.h' 2025-01-24T02:56:21.6064650Z adding 'torch/include/ATen/ops/mish.h' 2025-01-24T02:56:21.6065830Z adding 'torch/include/ATen/ops/mish_backward.h' 2025-01-24T02:56:21.6066850Z adding 'torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6067990Z adding 'torch/include/ATen/ops/mish_backward_cpu_dispatch.h' 2025-01-24T02:56:21.6069180Z adding 'torch/include/ATen/ops/mish_backward_cuda_dispatch.h' 2025-01-24T02:56:21.6070040Z adding 'torch/include/ATen/ops/mish_backward_mps_dispatch.h' 2025-01-24T02:56:21.6071120Z adding 'torch/include/ATen/ops/mish_backward_native.h' 2025-01-24T02:56:21.6072230Z adding 'torch/include/ATen/ops/mish_backward_ops.h' 2025-01-24T02:56:21.6073480Z adding 'torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6074410Z adding 'torch/include/ATen/ops/mish_cpu_dispatch.h' 2025-01-24T02:56:21.6075470Z adding 'torch/include/ATen/ops/mish_cuda_dispatch.h' 2025-01-24T02:56:21.6076540Z adding 'torch/include/ATen/ops/mish_meta.h' 2025-01-24T02:56:21.6077730Z adding 'torch/include/ATen/ops/mish_meta_dispatch.h' 2025-01-24T02:56:21.6078820Z adding 'torch/include/ATen/ops/mish_mps_dispatch.h' 2025-01-24T02:56:21.6079910Z adding 'torch/include/ATen/ops/mish_native.h' 2025-01-24T02:56:21.6081180Z adding 'torch/include/ATen/ops/mish_ops.h' 2025-01-24T02:56:21.6082420Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h' 2025-01-24T02:56:21.6083640Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h' 2025-01-24T02:56:21.6084980Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6085630Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h' 2025-01-24T02:56:21.6087070Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h' 2025-01-24T02:56:21.6088270Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h' 2025-01-24T02:56:21.6089440Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h' 2025-01-24T02:56:21.6090680Z adding 'torch/include/ATen/ops/mkldnn_convolution.h' 2025-01-24T02:56:21.6092070Z adding 'torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6093130Z adding 'torch/include/ATen/ops/mkldnn_convolution_native.h' 2025-01-24T02:56:21.6094300Z adding 'torch/include/ATen/ops/mkldnn_convolution_ops.h' 2025-01-24T02:56:21.6095460Z adding 'torch/include/ATen/ops/mkldnn_linear.h' 2025-01-24T02:56:21.6096680Z adding 'torch/include/ATen/ops/mkldnn_linear_backward.h' 2025-01-24T02:56:21.6098040Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6099130Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input.h' 2025-01-24T02:56:21.6100480Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6101560Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_native.h' 2025-01-24T02:56:21.6102740Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h' 2025-01-24T02:56:21.6103910Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_native.h' 2025-01-24T02:56:21.6105090Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_ops.h' 2025-01-24T02:56:21.6106080Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights.h' 2025-01-24T02:56:21.6107570Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6108660Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h' 2025-01-24T02:56:21.6109840Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h' 2025-01-24T02:56:21.6111100Z adding 'torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6111950Z adding 'torch/include/ATen/ops/mkldnn_linear_native.h' 2025-01-24T02:56:21.6113140Z adding 'torch/include/ATen/ops/mkldnn_linear_ops.h' 2025-01-24T02:56:21.6114310Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d.h' 2025-01-24T02:56:21.6115590Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward.h' 2025-01-24T02:56:21.6116940Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6118040Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h' 2025-01-24T02:56:21.6119240Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h' 2025-01-24T02:56:21.6120590Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6121270Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_native.h' 2025-01-24T02:56:21.6122730Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_ops.h' 2025-01-24T02:56:21.6123910Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d.h' 2025-01-24T02:56:21.6125120Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward.h' 2025-01-24T02:56:21.6126460Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6127530Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h' 2025-01-24T02:56:21.6128720Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h' 2025-01-24T02:56:21.6129690Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6130840Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_native.h' 2025-01-24T02:56:21.6132040Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_ops.h' 2025-01-24T02:56:21.6133590Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h' 2025-01-24T02:56:21.6135000Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6136090Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h' 2025-01-24T02:56:21.6137280Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h' 2025-01-24T02:56:21.6138830Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h' 2025-01-24T02:56:21.6140140Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6141230Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h' 2025-01-24T02:56:21.6142390Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h' 2025-01-24T02:56:21.6143640Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer.h' 2025-01-24T02:56:21.6145490Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward.h' 2025-01-24T02:56:21.6146920Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6148070Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h' 2025-01-24T02:56:21.6149250Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h' 2025-01-24T02:56:21.6150790Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h' 2025-01-24T02:56:21.6152020Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6153080Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h' 2025-01-24T02:56:21.6154300Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_native.h' 2025-01-24T02:56:21.6155660Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_ops.h' 2025-01-24T02:56:21.6156760Z adding 'torch/include/ATen/ops/mm.h' 2025-01-24T02:56:21.6158040Z adding 'torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6159020Z adding 'torch/include/ATen/ops/mm_cpu_dispatch.h' 2025-01-24T02:56:21.6160040Z adding 'torch/include/ATen/ops/mm_cuda_dispatch.h' 2025-01-24T02:56:21.6161180Z adding 'torch/include/ATen/ops/mm_meta.h' 2025-01-24T02:56:21.6162360Z adding 'torch/include/ATen/ops/mm_meta_dispatch.h' 2025-01-24T02:56:21.6163360Z adding 'torch/include/ATen/ops/mm_mps_dispatch.h' 2025-01-24T02:56:21.6164620Z adding 'torch/include/ATen/ops/mm_native.h' 2025-01-24T02:56:21.6165790Z adding 'torch/include/ATen/ops/mm_ops.h' 2025-01-24T02:56:21.6167010Z adding 'torch/include/ATen/ops/mode.h' 2025-01-24T02:56:21.6168290Z adding 'torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6169490Z adding 'torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6170270Z adding 'torch/include/ATen/ops/mode_cpu_dispatch.h' 2025-01-24T02:56:21.6174880Z adding 'torch/include/ATen/ops/mode_cuda_dispatch.h' 2025-01-24T02:56:21.6175150Z adding 'torch/include/ATen/ops/mode_native.h' 2025-01-24T02:56:21.6175280Z adding 'torch/include/ATen/ops/mode_ops.h' 2025-01-24T02:56:21.6175410Z adding 'torch/include/ATen/ops/moveaxis.h' 2025-01-24T02:56:21.6176040Z adding 'torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6176940Z adding 'torch/include/ATen/ops/moveaxis_native.h' 2025-01-24T02:56:21.6178170Z adding 'torch/include/ATen/ops/moveaxis_ops.h' 2025-01-24T02:56:21.6179580Z adding 'torch/include/ATen/ops/movedim.h' 2025-01-24T02:56:21.6180890Z adding 'torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6181650Z adding 'torch/include/ATen/ops/movedim_native.h' 2025-01-24T02:56:21.6182940Z adding 'torch/include/ATen/ops/movedim_ops.h' 2025-01-24T02:56:21.6184540Z adding 'torch/include/ATen/ops/mps_convolution_backward.h' 2025-01-24T02:56:21.6185950Z adding 'torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6187870Z adding 'torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h' 2025-01-24T02:56:21.6189040Z adding 'torch/include/ATen/ops/mps_convolution_backward_native.h' 2025-01-24T02:56:21.6190370Z adding 'torch/include/ATen/ops/mps_convolution_backward_ops.h' 2025-01-24T02:56:21.6191990Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward.h' 2025-01-24T02:56:21.6193420Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6194620Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h' 2025-01-24T02:56:21.6195770Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_native.h' 2025-01-24T02:56:21.6196950Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h' 2025-01-24T02:56:21.6198010Z adding 'torch/include/ATen/ops/mse_loss.h' 2025-01-24T02:56:21.6199250Z adding 'torch/include/ATen/ops/mse_loss_backward.h' 2025-01-24T02:56:21.6200480Z adding 'torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h' 2025-01-24T02:56:21.6201360Z adding 'torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h' 2025-01-24T02:56:21.6202580Z adding 'torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h' 2025-01-24T02:56:21.6203760Z adding 'torch/include/ATen/ops/mse_loss_backward_native.h' 2025-01-24T02:56:21.6204970Z adding 'torch/include/ATen/ops/mse_loss_backward_ops.h' 2025-01-24T02:56:21.6206070Z adding 'torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6207160Z adding 'torch/include/ATen/ops/mse_loss_cpu_dispatch.h' 2025-01-24T02:56:21.6208330Z adding 'torch/include/ATen/ops/mse_loss_cuda_dispatch.h' 2025-01-24T02:56:21.6209190Z adding 'torch/include/ATen/ops/mse_loss_meta.h' 2025-01-24T02:56:21.6210410Z adding 'torch/include/ATen/ops/mse_loss_meta_dispatch.h' 2025-01-24T02:56:21.6211640Z adding 'torch/include/ATen/ops/mse_loss_mps_dispatch.h' 2025-01-24T02:56:21.6212560Z adding 'torch/include/ATen/ops/mse_loss_native.h' 2025-01-24T02:56:21.6213950Z adding 'torch/include/ATen/ops/mse_loss_ops.h' 2025-01-24T02:56:21.6215100Z adding 'torch/include/ATen/ops/msort.h' 2025-01-24T02:56:21.6216550Z adding 'torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6217000Z adding 'torch/include/ATen/ops/msort_native.h' 2025-01-24T02:56:21.6218440Z adding 'torch/include/ATen/ops/msort_ops.h' 2025-01-24T02:56:21.6219580Z adding 'torch/include/ATen/ops/mul.h' 2025-01-24T02:56:21.6220900Z adding 'torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6221990Z adding 'torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6223020Z adding 'torch/include/ATen/ops/mul_cpu_dispatch.h' 2025-01-24T02:56:21.6224090Z adding 'torch/include/ATen/ops/mul_cuda_dispatch.h' 2025-01-24T02:56:21.6225150Z adding 'torch/include/ATen/ops/mul_meta.h' 2025-01-24T02:56:21.6226270Z adding 'torch/include/ATen/ops/mul_meta_dispatch.h' 2025-01-24T02:56:21.6227400Z adding 'torch/include/ATen/ops/mul_mps_dispatch.h' 2025-01-24T02:56:21.6228730Z adding 'torch/include/ATen/ops/mul_native.h' 2025-01-24T02:56:21.6230080Z adding 'torch/include/ATen/ops/mul_ops.h' 2025-01-24T02:56:21.6231440Z adding 'torch/include/ATen/ops/multi_margin_loss.h' 2025-01-24T02:56:21.6232690Z adding 'torch/include/ATen/ops/multi_margin_loss_backward.h' 2025-01-24T02:56:21.6233930Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h' 2025-01-24T02:56:21.6235120Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h' 2025-01-24T02:56:21.6236270Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_native.h' 2025-01-24T02:56:21.6237530Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_ops.h' 2025-01-24T02:56:21.6239710Z adding 'torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h' 2025-01-24T02:56:21.6241100Z adding 'torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h' 2025-01-24T02:56:21.6242510Z adding 'torch/include/ATen/ops/multi_margin_loss_native.h' 2025-01-24T02:56:21.6244050Z adding 'torch/include/ATen/ops/multi_margin_loss_ops.h' 2025-01-24T02:56:21.6245510Z adding 'torch/include/ATen/ops/multilabel_margin_loss.h' 2025-01-24T02:56:21.6246970Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward.h' 2025-01-24T02:56:21.6248430Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h' 2025-01-24T02:56:21.6249760Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h' 2025-01-24T02:56:21.6251170Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_native.h' 2025-01-24T02:56:21.6252610Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h' 2025-01-24T02:56:21.6254050Z adding 'torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6255340Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward.h' 2025-01-24T02:56:21.6256850Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h' 2025-01-24T02:56:21.6258170Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h' 2025-01-24T02:56:21.6259460Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_native.h' 2025-01-24T02:56:21.6260860Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h' 2025-01-24T02:56:21.6262340Z adding 'torch/include/ATen/ops/multilabel_margin_loss_native.h' 2025-01-24T02:56:21.6263800Z adding 'torch/include/ATen/ops/multilabel_margin_loss_ops.h' 2025-01-24T02:56:21.6265160Z adding 'torch/include/ATen/ops/multinomial.h' 2025-01-24T02:56:21.6266580Z adding 'torch/include/ATen/ops/multinomial_cpu_dispatch.h' 2025-01-24T02:56:21.6267900Z adding 'torch/include/ATen/ops/multinomial_cuda_dispatch.h' 2025-01-24T02:56:21.6269300Z adding 'torch/include/ATen/ops/multinomial_mps_dispatch.h' 2025-01-24T02:56:21.6270610Z adding 'torch/include/ATen/ops/multinomial_native.h' 2025-01-24T02:56:21.6272030Z adding 'torch/include/ATen/ops/multinomial_ops.h' 2025-01-24T02:56:21.6273390Z adding 'torch/include/ATen/ops/multiply.h' 2025-01-24T02:56:21.6274940Z adding 'torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6276040Z adding 'torch/include/ATen/ops/multiply_native.h' 2025-01-24T02:56:21.6277550Z adding 'torch/include/ATen/ops/multiply_ops.h' 2025-01-24T02:56:21.6278850Z adding 'torch/include/ATen/ops/mv.h' 2025-01-24T02:56:21.6280340Z adding 'torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6281480Z adding 'torch/include/ATen/ops/mv_native.h' 2025-01-24T02:56:21.6282850Z adding 'torch/include/ATen/ops/mv_ops.h' 2025-01-24T02:56:21.6284170Z adding 'torch/include/ATen/ops/mvlgamma.h' 2025-01-24T02:56:21.6285620Z adding 'torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6286850Z adding 'torch/include/ATen/ops/mvlgamma_cpu_dispatch.h' 2025-01-24T02:56:21.6288170Z adding 'torch/include/ATen/ops/mvlgamma_cuda_dispatch.h' 2025-01-24T02:56:21.6289410Z adding 'torch/include/ATen/ops/mvlgamma_native.h' 2025-01-24T02:56:21.6290810Z adding 'torch/include/ATen/ops/mvlgamma_ops.h' 2025-01-24T02:56:21.6292240Z adding 'torch/include/ATen/ops/nan_to_num.h' 2025-01-24T02:56:21.6293630Z adding 'torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6294840Z adding 'torch/include/ATen/ops/nan_to_num_cpu_dispatch.h' 2025-01-24T02:56:21.6296200Z adding 'torch/include/ATen/ops/nan_to_num_cuda_dispatch.h' 2025-01-24T02:56:21.6297500Z adding 'torch/include/ATen/ops/nan_to_num_mps_dispatch.h' 2025-01-24T02:56:21.6298850Z adding 'torch/include/ATen/ops/nan_to_num_native.h' 2025-01-24T02:56:21.6300280Z adding 'torch/include/ATen/ops/nan_to_num_ops.h' 2025-01-24T02:56:21.6301700Z adding 'torch/include/ATen/ops/nanmean.h' 2025-01-24T02:56:21.6303190Z adding 'torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6304420Z adding 'torch/include/ATen/ops/nanmean_native.h' 2025-01-24T02:56:21.6305870Z adding 'torch/include/ATen/ops/nanmean_ops.h' 2025-01-24T02:56:21.6307330Z adding 'torch/include/ATen/ops/nanmedian.h' 2025-01-24T02:56:21.6308830Z adding 'torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6310130Z adding 'torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6311350Z adding 'torch/include/ATen/ops/nanmedian_cpu_dispatch.h' 2025-01-24T02:56:21.6312630Z adding 'torch/include/ATen/ops/nanmedian_cuda_dispatch.h' 2025-01-24T02:56:21.6313970Z adding 'torch/include/ATen/ops/nanmedian_native.h' 2025-01-24T02:56:21.6315640Z adding 'torch/include/ATen/ops/nanmedian_ops.h' 2025-01-24T02:56:21.6317070Z adding 'torch/include/ATen/ops/nanquantile.h' 2025-01-24T02:56:21.6318640Z adding 'torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6319840Z adding 'torch/include/ATen/ops/nanquantile_native.h' 2025-01-24T02:56:21.6321310Z adding 'torch/include/ATen/ops/nanquantile_ops.h' 2025-01-24T02:56:21.6322620Z adding 'torch/include/ATen/ops/nansum.h' 2025-01-24T02:56:21.6323950Z adding 'torch/include/ATen/ops/nansum_cpu_dispatch.h' 2025-01-24T02:56:21.6325250Z adding 'torch/include/ATen/ops/nansum_cuda_dispatch.h' 2025-01-24T02:56:21.6326490Z adding 'torch/include/ATen/ops/nansum_mps_dispatch.h' 2025-01-24T02:56:21.6327680Z adding 'torch/include/ATen/ops/nansum_native.h' 2025-01-24T02:56:21.6329070Z adding 'torch/include/ATen/ops/nansum_ops.h' 2025-01-24T02:56:21.6330480Z adding 'torch/include/ATen/ops/narrow.h' 2025-01-24T02:56:21.6331980Z adding 'torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6333290Z adding 'torch/include/ATen/ops/narrow_copy.h' 2025-01-24T02:56:21.6334810Z adding 'torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6335990Z adding 'torch/include/ATen/ops/narrow_copy_cpu_dispatch.h' 2025-01-24T02:56:21.6337240Z adding 'torch/include/ATen/ops/narrow_copy_native.h' 2025-01-24T02:56:21.6338670Z adding 'torch/include/ATen/ops/narrow_copy_ops.h' 2025-01-24T02:56:21.6340040Z adding 'torch/include/ATen/ops/narrow_native.h' 2025-01-24T02:56:21.6342280Z adding 'torch/include/ATen/ops/narrow_ops.h' 2025-01-24T02:56:21.6343750Z adding 'torch/include/ATen/ops/native_batch_norm.h' 2025-01-24T02:56:21.6345280Z adding 'torch/include/ATen/ops/native_batch_norm_backward.h' 2025-01-24T02:56:21.6346790Z adding 'torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6348080Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h' 2025-01-24T02:56:21.6349470Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h' 2025-01-24T02:56:21.6350740Z adding 'torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h' 2025-01-24T02:56:21.6352120Z adding 'torch/include/ATen/ops/native_batch_norm_backward_native.h' 2025-01-24T02:56:21.6353630Z adding 'torch/include/ATen/ops/native_batch_norm_backward_ops.h' 2025-01-24T02:56:21.6354990Z adding 'torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h' 2025-01-24T02:56:21.6356330Z adding 'torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h' 2025-01-24T02:56:21.6357590Z adding 'torch/include/ATen/ops/native_batch_norm_mps_dispatch.h' 2025-01-24T02:56:21.6358960Z adding 'torch/include/ATen/ops/native_batch_norm_native.h' 2025-01-24T02:56:21.6360460Z adding 'torch/include/ATen/ops/native_batch_norm_ops.h' 2025-01-24T02:56:21.6361830Z adding 'torch/include/ATen/ops/native_channel_shuffle.h' 2025-01-24T02:56:21.6363310Z adding 'torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6364500Z adding 'torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h' 2025-01-24T02:56:21.6365740Z adding 'torch/include/ATen/ops/native_channel_shuffle_native.h' 2025-01-24T02:56:21.6367060Z adding 'torch/include/ATen/ops/native_channel_shuffle_ops.h' 2025-01-24T02:56:21.6368420Z adding 'torch/include/ATen/ops/native_dropout.h' 2025-01-24T02:56:21.6369810Z adding 'torch/include/ATen/ops/native_dropout_backward.h' 2025-01-24T02:56:21.6371240Z adding 'torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6372430Z adding 'torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h' 2025-01-24T02:56:21.6373660Z adding 'torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h' 2025-01-24T02:56:21.6374930Z adding 'torch/include/ATen/ops/native_dropout_backward_native.h' 2025-01-24T02:56:21.6376270Z adding 'torch/include/ATen/ops/native_dropout_backward_ops.h' 2025-01-24T02:56:21.6377730Z adding 'torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6378880Z adding 'torch/include/ATen/ops/native_dropout_cpu_dispatch.h' 2025-01-24T02:56:21.6380120Z adding 'torch/include/ATen/ops/native_dropout_cuda_dispatch.h' 2025-01-24T02:56:21.6381410Z adding 'torch/include/ATen/ops/native_dropout_native.h' 2025-01-24T02:56:21.6382840Z adding 'torch/include/ATen/ops/native_dropout_ops.h' 2025-01-24T02:56:21.6384480Z adding 'torch/include/ATen/ops/native_group_norm.h' 2025-01-24T02:56:21.6386200Z adding 'torch/include/ATen/ops/native_group_norm_backward.h' 2025-01-24T02:56:21.6387740Z adding 'torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6392680Z adding 'torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h' 2025-01-24T02:56:21.6393090Z adding 'torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h' 2025-01-24T02:56:21.6393310Z adding 'torch/include/ATen/ops/native_group_norm_backward_native.h' 2025-01-24T02:56:21.6393520Z adding 'torch/include/ATen/ops/native_group_norm_backward_ops.h' 2025-01-24T02:56:21.6394160Z adding 'torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6395630Z adding 'torch/include/ATen/ops/native_group_norm_cpu_dispatch.h' 2025-01-24T02:56:21.6396900Z adding 'torch/include/ATen/ops/native_group_norm_cuda_dispatch.h' 2025-01-24T02:56:21.6398180Z adding 'torch/include/ATen/ops/native_group_norm_native.h' 2025-01-24T02:56:21.6399650Z adding 'torch/include/ATen/ops/native_group_norm_ops.h' 2025-01-24T02:56:21.6401210Z adding 'torch/include/ATen/ops/native_layer_norm.h' 2025-01-24T02:56:21.6402960Z adding 'torch/include/ATen/ops/native_layer_norm_backward.h' 2025-01-24T02:56:21.6404550Z adding 'torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6405830Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h' 2025-01-24T02:56:21.6407140Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h' 2025-01-24T02:56:21.6408430Z adding 'torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h' 2025-01-24T02:56:21.6409820Z adding 'torch/include/ATen/ops/native_layer_norm_backward_native.h' 2025-01-24T02:56:21.6411390Z adding 'torch/include/ATen/ops/native_layer_norm_backward_ops.h' 2025-01-24T02:56:21.6412940Z adding 'torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6414240Z adding 'torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h' 2025-01-24T02:56:21.6415540Z adding 'torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h' 2025-01-24T02:56:21.6416760Z adding 'torch/include/ATen/ops/native_layer_norm_mps_dispatch.h' 2025-01-24T02:56:21.6418040Z adding 'torch/include/ATen/ops/native_layer_norm_native.h' 2025-01-24T02:56:21.6419420Z adding 'torch/include/ATen/ops/native_layer_norm_ops.h' 2025-01-24T02:56:21.6420780Z adding 'torch/include/ATen/ops/native_norm.h' 2025-01-24T02:56:21.6422240Z adding 'torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6423420Z adding 'torch/include/ATen/ops/native_norm_native.h' 2025-01-24T02:56:21.6424870Z adding 'torch/include/ATen/ops/native_norm_ops.h' 2025-01-24T02:56:21.6426200Z adding 'torch/include/ATen/ops/ne.h' 2025-01-24T02:56:21.6427660Z adding 'torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6428800Z adding 'torch/include/ATen/ops/ne_cpu_dispatch.h' 2025-01-24T02:56:21.6430030Z adding 'torch/include/ATen/ops/ne_cuda_dispatch.h' 2025-01-24T02:56:21.6431250Z adding 'torch/include/ATen/ops/ne_meta.h' 2025-01-24T02:56:21.6432530Z adding 'torch/include/ATen/ops/ne_meta_dispatch.h' 2025-01-24T02:56:21.6433750Z adding 'torch/include/ATen/ops/ne_mps_dispatch.h' 2025-01-24T02:56:21.6435050Z adding 'torch/include/ATen/ops/ne_native.h' 2025-01-24T02:56:21.6436520Z adding 'torch/include/ATen/ops/ne_ops.h' 2025-01-24T02:56:21.6437850Z adding 'torch/include/ATen/ops/neg.h' 2025-01-24T02:56:21.6439280Z adding 'torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6440390Z adding 'torch/include/ATen/ops/neg_cpu_dispatch.h' 2025-01-24T02:56:21.6441600Z adding 'torch/include/ATen/ops/neg_cuda_dispatch.h' 2025-01-24T02:56:21.6442810Z adding 'torch/include/ATen/ops/neg_meta.h' 2025-01-24T02:56:21.6444190Z adding 'torch/include/ATen/ops/neg_meta_dispatch.h' 2025-01-24T02:56:21.6445390Z adding 'torch/include/ATen/ops/neg_mps_dispatch.h' 2025-01-24T02:56:21.6447010Z adding 'torch/include/ATen/ops/neg_native.h' 2025-01-24T02:56:21.6448360Z adding 'torch/include/ATen/ops/neg_ops.h' 2025-01-24T02:56:21.6449630Z adding 'torch/include/ATen/ops/negative.h' 2025-01-24T02:56:21.6451050Z adding 'torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6452170Z adding 'torch/include/ATen/ops/negative_native.h' 2025-01-24T02:56:21.6453510Z adding 'torch/include/ATen/ops/negative_ops.h' 2025-01-24T02:56:21.6454830Z adding 'torch/include/ATen/ops/nested_to_padded_tensor.h' 2025-01-24T02:56:21.6456240Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6457370Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_native.h' 2025-01-24T02:56:21.6458710Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_ops.h' 2025-01-24T02:56:21.6460190Z adding 'torch/include/ATen/ops/new_empty.h' 2025-01-24T02:56:21.6461790Z adding 'torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6462910Z adding 'torch/include/ATen/ops/new_empty_native.h' 2025-01-24T02:56:21.6464330Z adding 'torch/include/ATen/ops/new_empty_ops.h' 2025-01-24T02:56:21.6465820Z adding 'torch/include/ATen/ops/new_empty_strided.h' 2025-01-24T02:56:21.6467270Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6468700Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6469780Z adding 'torch/include/ATen/ops/new_empty_strided_native.h' 2025-01-24T02:56:21.6471150Z adding 'torch/include/ATen/ops/new_empty_strided_ops.h' 2025-01-24T02:56:21.6472620Z adding 'torch/include/ATen/ops/new_full.h' 2025-01-24T02:56:21.6474140Z adding 'torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6475280Z adding 'torch/include/ATen/ops/new_full_native.h' 2025-01-24T02:56:21.6476670Z adding 'torch/include/ATen/ops/new_full_ops.h' 2025-01-24T02:56:21.6478120Z adding 'torch/include/ATen/ops/new_ones.h' 2025-01-24T02:56:21.6479640Z adding 'torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6480760Z adding 'torch/include/ATen/ops/new_ones_native.h' 2025-01-24T02:56:21.6482120Z adding 'torch/include/ATen/ops/new_ones_ops.h' 2025-01-24T02:56:21.6483580Z adding 'torch/include/ATen/ops/new_zeros.h' 2025-01-24T02:56:21.6485090Z adding 'torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6486260Z adding 'torch/include/ATen/ops/new_zeros_native.h' 2025-01-24T02:56:21.6487570Z adding 'torch/include/ATen/ops/new_zeros_ops.h' 2025-01-24T02:56:21.6488870Z adding 'torch/include/ATen/ops/nextafter.h' 2025-01-24T02:56:21.6490360Z adding 'torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6491470Z adding 'torch/include/ATen/ops/nextafter_cpu_dispatch.h' 2025-01-24T02:56:21.6492820Z adding 'torch/include/ATen/ops/nextafter_cuda_dispatch.h' 2025-01-24T02:56:21.6494030Z adding 'torch/include/ATen/ops/nextafter_meta.h' 2025-01-24T02:56:21.6495240Z adding 'torch/include/ATen/ops/nextafter_meta_dispatch.h' 2025-01-24T02:56:21.6496480Z adding 'torch/include/ATen/ops/nextafter_mps_dispatch.h' 2025-01-24T02:56:21.6497680Z adding 'torch/include/ATen/ops/nextafter_native.h' 2025-01-24T02:56:21.6499030Z adding 'torch/include/ATen/ops/nextafter_ops.h' 2025-01-24T02:56:21.6500510Z adding 'torch/include/ATen/ops/nll_loss.h' 2025-01-24T02:56:21.6502050Z adding 'torch/include/ATen/ops/nll_loss2d.h' 2025-01-24T02:56:21.6503600Z adding 'torch/include/ATen/ops/nll_loss2d_backward.h' 2025-01-24T02:56:21.6505030Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.6506420Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.6507610Z adding 'torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h' 2025-01-24T02:56:21.6508890Z adding 'torch/include/ATen/ops/nll_loss2d_backward_native.h' 2025-01-24T02:56:21.6510330Z adding 'torch/include/ATen/ops/nll_loss2d_backward_ops.h' 2025-01-24T02:56:21.6511770Z adding 'torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6513190Z adding 'torch/include/ATen/ops/nll_loss2d_forward.h' 2025-01-24T02:56:21.6514620Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h' 2025-01-24T02:56:21.6515920Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h' 2025-01-24T02:56:21.6517180Z adding 'torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h' 2025-01-24T02:56:21.6518470Z adding 'torch/include/ATen/ops/nll_loss2d_forward_native.h' 2025-01-24T02:56:21.6519860Z adding 'torch/include/ATen/ops/nll_loss2d_forward_ops.h' 2025-01-24T02:56:21.6521110Z adding 'torch/include/ATen/ops/nll_loss2d_native.h' 2025-01-24T02:56:21.6522470Z adding 'torch/include/ATen/ops/nll_loss2d_ops.h' 2025-01-24T02:56:21.6523980Z adding 'torch/include/ATen/ops/nll_loss_backward.h' 2025-01-24T02:56:21.6525540Z adding 'torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6526650Z adding 'torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h' 2025-01-24T02:56:21.6527940Z adding 'torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h' 2025-01-24T02:56:21.6529170Z adding 'torch/include/ATen/ops/nll_loss_backward_meta.h' 2025-01-24T02:56:21.6530510Z adding 'torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h' 2025-01-24T02:56:21.6531780Z adding 'torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h' 2025-01-24T02:56:21.6533090Z adding 'torch/include/ATen/ops/nll_loss_backward_native.h' 2025-01-24T02:56:21.6534470Z adding 'torch/include/ATen/ops/nll_loss_backward_ops.h' 2025-01-24T02:56:21.6535930Z adding 'torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6537340Z adding 'torch/include/ATen/ops/nll_loss_forward.h' 2025-01-24T02:56:21.6538850Z adding 'torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6540010Z adding 'torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h' 2025-01-24T02:56:21.6541270Z adding 'torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h' 2025-01-24T02:56:21.6542490Z adding 'torch/include/ATen/ops/nll_loss_forward_meta.h' 2025-01-24T02:56:21.6543810Z adding 'torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h' 2025-01-24T02:56:21.6545060Z adding 'torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h' 2025-01-24T02:56:21.6546390Z adding 'torch/include/ATen/ops/nll_loss_forward_native.h' 2025-01-24T02:56:21.6547780Z adding 'torch/include/ATen/ops/nll_loss_forward_ops.h' 2025-01-24T02:56:21.6549020Z adding 'torch/include/ATen/ops/nll_loss_native.h' 2025-01-24T02:56:21.6550340Z adding 'torch/include/ATen/ops/nll_loss_nd.h' 2025-01-24T02:56:21.6551800Z adding 'torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6552930Z adding 'torch/include/ATen/ops/nll_loss_nd_native.h' 2025-01-24T02:56:21.6554220Z adding 'torch/include/ATen/ops/nll_loss_nd_ops.h' 2025-01-24T02:56:21.6555580Z adding 'torch/include/ATen/ops/nll_loss_ops.h' 2025-01-24T02:56:21.6556850Z adding 'torch/include/ATen/ops/nonzero.h' 2025-01-24T02:56:21.6558150Z adding 'torch/include/ATen/ops/nonzero_cpu_dispatch.h' 2025-01-24T02:56:21.6559390Z adding 'torch/include/ATen/ops/nonzero_cuda_dispatch.h' 2025-01-24T02:56:21.6560590Z adding 'torch/include/ATen/ops/nonzero_mps_dispatch.h' 2025-01-24T02:56:21.6561800Z adding 'torch/include/ATen/ops/nonzero_native.h' 2025-01-24T02:56:21.6563000Z adding 'torch/include/ATen/ops/nonzero_numpy.h' 2025-01-24T02:56:21.6564410Z adding 'torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6565500Z adding 'torch/include/ATen/ops/nonzero_numpy_native.h' 2025-01-24T02:56:21.6566780Z adding 'torch/include/ATen/ops/nonzero_numpy_ops.h' 2025-01-24T02:56:21.6568070Z adding 'torch/include/ATen/ops/nonzero_ops.h' 2025-01-24T02:56:21.6569360Z adding 'torch/include/ATen/ops/nonzero_static.h' 2025-01-24T02:56:21.6570700Z adding 'torch/include/ATen/ops/nonzero_static_cpu_dispatch.h' 2025-01-24T02:56:21.6571990Z adding 'torch/include/ATen/ops/nonzero_static_cuda_dispatch.h' 2025-01-24T02:56:21.6573210Z adding 'torch/include/ATen/ops/nonzero_static_native.h' 2025-01-24T02:56:21.6574560Z adding 'torch/include/ATen/ops/nonzero_static_ops.h' 2025-01-24T02:56:21.6576120Z adding 'torch/include/ATen/ops/norm.h' 2025-01-24T02:56:21.6577680Z adding 'torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6579010Z adding 'torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6580230Z adding 'torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6581440Z adding 'torch/include/ATen/ops/norm_cpu_dispatch.h' 2025-01-24T02:56:21.6582650Z adding 'torch/include/ATen/ops/norm_cuda_dispatch.h' 2025-01-24T02:56:21.6583880Z adding 'torch/include/ATen/ops/norm_except_dim.h' 2025-01-24T02:56:21.6585310Z adding 'torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6586400Z adding 'torch/include/ATen/ops/norm_except_dim_native.h' 2025-01-24T02:56:21.6587700Z adding 'torch/include/ATen/ops/norm_except_dim_ops.h' 2025-01-24T02:56:21.6588930Z adding 'torch/include/ATen/ops/norm_meta.h' 2025-01-24T02:56:21.6590210Z adding 'torch/include/ATen/ops/norm_meta_dispatch.h' 2025-01-24T02:56:21.6591420Z adding 'torch/include/ATen/ops/norm_mps_dispatch.h' 2025-01-24T02:56:21.6592770Z adding 'torch/include/ATen/ops/norm_native.h' 2025-01-24T02:56:21.6594590Z adding 'torch/include/ATen/ops/norm_ops.h' 2025-01-24T02:56:21.6596500Z adding 'torch/include/ATen/ops/normal.h' 2025-01-24T02:56:21.6598090Z adding 'torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6599320Z adding 'torch/include/ATen/ops/normal_cpu_dispatch.h' 2025-01-24T02:56:21.6600610Z adding 'torch/include/ATen/ops/normal_cuda_dispatch.h' 2025-01-24T02:56:21.6601860Z adding 'torch/include/ATen/ops/normal_meta_dispatch.h' 2025-01-24T02:56:21.6603120Z adding 'torch/include/ATen/ops/normal_mps_dispatch.h' 2025-01-24T02:56:21.6604550Z adding 'torch/include/ATen/ops/normal_native.h' 2025-01-24T02:56:21.6606290Z adding 'torch/include/ATen/ops/normal_ops.h' 2025-01-24T02:56:21.6607710Z adding 'torch/include/ATen/ops/not_equal.h' 2025-01-24T02:56:21.6609120Z adding 'torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6613550Z adding 'torch/include/ATen/ops/not_equal_native.h' 2025-01-24T02:56:21.6613840Z adding 'torch/include/ATen/ops/not_equal_ops.h' 2025-01-24T02:56:21.6613980Z adding 'torch/include/ATen/ops/nuclear_norm.h' 2025-01-24T02:56:21.6614260Z adding 'torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6615610Z adding 'torch/include/ATen/ops/nuclear_norm_native.h' 2025-01-24T02:56:21.6617010Z adding 'torch/include/ATen/ops/nuclear_norm_ops.h' 2025-01-24T02:56:21.6618210Z adding 'torch/include/ATen/ops/numpy_T.h' 2025-01-24T02:56:21.6619590Z adding 'torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6620720Z adding 'torch/include/ATen/ops/numpy_T_native.h' 2025-01-24T02:56:21.6622020Z adding 'torch/include/ATen/ops/numpy_T_ops.h' 2025-01-24T02:56:21.6623270Z adding 'torch/include/ATen/ops/one_hot.h' 2025-01-24T02:56:21.6624710Z adding 'torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6625880Z adding 'torch/include/ATen/ops/one_hot_native.h' 2025-01-24T02:56:21.6627120Z adding 'torch/include/ATen/ops/one_hot_ops.h' 2025-01-24T02:56:21.6628730Z adding 'torch/include/ATen/ops/ones.h' 2025-01-24T02:56:21.6630230Z adding 'torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6631500Z adding 'torch/include/ATen/ops/ones_like.h' 2025-01-24T02:56:21.6632940Z adding 'torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6634080Z adding 'torch/include/ATen/ops/ones_like_native.h' 2025-01-24T02:56:21.6635430Z adding 'torch/include/ATen/ops/ones_like_ops.h' 2025-01-24T02:56:21.6636690Z adding 'torch/include/ATen/ops/ones_native.h' 2025-01-24T02:56:21.6638140Z adding 'torch/include/ATen/ops/ones_ops.h' 2025-01-24T02:56:21.6639390Z adding 'torch/include/ATen/ops/or.h' 2025-01-24T02:56:21.6640810Z adding 'torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6641950Z adding 'torch/include/ATen/ops/or_native.h' 2025-01-24T02:56:21.6643290Z adding 'torch/include/ATen/ops/or_ops.h' 2025-01-24T02:56:21.6644560Z adding 'torch/include/ATen/ops/orgqr.h' 2025-01-24T02:56:21.6645970Z adding 'torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6647190Z adding 'torch/include/ATen/ops/orgqr_native.h' 2025-01-24T02:56:21.6648470Z adding 'torch/include/ATen/ops/orgqr_ops.h' 2025-01-24T02:56:21.6649780Z adding 'torch/include/ATen/ops/ormqr.h' 2025-01-24T02:56:21.6651100Z adding 'torch/include/ATen/ops/ormqr_cpu_dispatch.h' 2025-01-24T02:56:21.6652370Z adding 'torch/include/ATen/ops/ormqr_cuda_dispatch.h' 2025-01-24T02:56:21.6653560Z adding 'torch/include/ATen/ops/ormqr_native.h' 2025-01-24T02:56:21.6654900Z adding 'torch/include/ATen/ops/ormqr_ops.h' 2025-01-24T02:56:21.6656180Z adding 'torch/include/ATen/ops/outer.h' 2025-01-24T02:56:21.6657600Z adding 'torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6658720Z adding 'torch/include/ATen/ops/outer_native.h' 2025-01-24T02:56:21.6659780Z adding 'torch/include/ATen/ops/outer_ops.h' 2025-01-24T02:56:21.6661240Z adding 'torch/include/ATen/ops/output_nr.h' 2025-01-24T02:56:21.6662630Z adding 'torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6663740Z adding 'torch/include/ATen/ops/output_nr_native.h' 2025-01-24T02:56:21.6665000Z adding 'torch/include/ATen/ops/output_nr_ops.h' 2025-01-24T02:56:21.6666260Z adding 'torch/include/ATen/ops/pad.h' 2025-01-24T02:56:21.6667670Z adding 'torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6668780Z adding 'torch/include/ATen/ops/pad_native.h' 2025-01-24T02:56:21.6670030Z adding 'torch/include/ATen/ops/pad_ops.h' 2025-01-24T02:56:21.6671290Z adding 'torch/include/ATen/ops/pad_sequence.h' 2025-01-24T02:56:21.6672700Z adding 'torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6673800Z adding 'torch/include/ATen/ops/pad_sequence_native.h' 2025-01-24T02:56:21.6675070Z adding 'torch/include/ATen/ops/pad_sequence_ops.h' 2025-01-24T02:56:21.6676320Z adding 'torch/include/ATen/ops/pairwise_distance.h' 2025-01-24T02:56:21.6677720Z adding 'torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6678820Z adding 'torch/include/ATen/ops/pairwise_distance_native.h' 2025-01-24T02:56:21.6680090Z adding 'torch/include/ATen/ops/pairwise_distance_ops.h' 2025-01-24T02:56:21.6681270Z adding 'torch/include/ATen/ops/pdist.h' 2025-01-24T02:56:21.6682650Z adding 'torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6683740Z adding 'torch/include/ATen/ops/pdist_native.h' 2025-01-24T02:56:21.6684990Z adding 'torch/include/ATen/ops/pdist_ops.h' 2025-01-24T02:56:21.6686200Z adding 'torch/include/ATen/ops/permute.h' 2025-01-24T02:56:21.6687640Z adding 'torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6688770Z adding 'torch/include/ATen/ops/permute_copy.h' 2025-01-24T02:56:21.6690180Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6691480Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6692560Z adding 'torch/include/ATen/ops/permute_copy_native.h' 2025-01-24T02:56:21.6693800Z adding 'torch/include/ATen/ops/permute_copy_ops.h' 2025-01-24T02:56:21.6695060Z adding 'torch/include/ATen/ops/permute_mps_dispatch.h' 2025-01-24T02:56:21.6696250Z adding 'torch/include/ATen/ops/permute_native.h' 2025-01-24T02:56:21.6697570Z adding 'torch/include/ATen/ops/permute_ops.h' 2025-01-24T02:56:21.6698810Z adding 'torch/include/ATen/ops/pin_memory.h' 2025-01-24T02:56:21.6700200Z adding 'torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6701330Z adding 'torch/include/ATen/ops/pin_memory_native.h' 2025-01-24T02:56:21.6702610Z adding 'torch/include/ATen/ops/pin_memory_ops.h' 2025-01-24T02:56:21.6703810Z adding 'torch/include/ATen/ops/pinverse.h' 2025-01-24T02:56:21.6705190Z adding 'torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6706410Z adding 'torch/include/ATen/ops/pinverse_native.h' 2025-01-24T02:56:21.6707600Z adding 'torch/include/ATen/ops/pinverse_ops.h' 2025-01-24T02:56:21.6708830Z adding 'torch/include/ATen/ops/pixel_shuffle.h' 2025-01-24T02:56:21.6710190Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6711520Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6712610Z adding 'torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h' 2025-01-24T02:56:21.6713820Z adding 'torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h' 2025-01-24T02:56:21.6714980Z adding 'torch/include/ATen/ops/pixel_shuffle_native.h' 2025-01-24T02:56:21.6716300Z adding 'torch/include/ATen/ops/pixel_shuffle_ops.h' 2025-01-24T02:56:21.6717550Z adding 'torch/include/ATen/ops/pixel_unshuffle.h' 2025-01-24T02:56:21.6718960Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6720260Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6721350Z adding 'torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h' 2025-01-24T02:56:21.6722550Z adding 'torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h' 2025-01-24T02:56:21.6723750Z adding 'torch/include/ATen/ops/pixel_unshuffle_native.h' 2025-01-24T02:56:21.6725070Z adding 'torch/include/ATen/ops/pixel_unshuffle_ops.h' 2025-01-24T02:56:21.6726310Z adding 'torch/include/ATen/ops/poisson.h' 2025-01-24T02:56:21.6727710Z adding 'torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6728850Z adding 'torch/include/ATen/ops/poisson_cpu_dispatch.h' 2025-01-24T02:56:21.6730070Z adding 'torch/include/ATen/ops/poisson_cuda_dispatch.h' 2025-01-24T02:56:21.6731260Z adding 'torch/include/ATen/ops/poisson_native.h' 2025-01-24T02:56:21.6732510Z adding 'torch/include/ATen/ops/poisson_nll_loss.h' 2025-01-24T02:56:21.6733900Z adding 'torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6735050Z adding 'torch/include/ATen/ops/poisson_nll_loss_native.h' 2025-01-24T02:56:21.6736350Z adding 'torch/include/ATen/ops/poisson_nll_loss_ops.h' 2025-01-24T02:56:21.6737660Z adding 'torch/include/ATen/ops/poisson_ops.h' 2025-01-24T02:56:21.6738910Z adding 'torch/include/ATen/ops/polar.h' 2025-01-24T02:56:21.6740300Z adding 'torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6741470Z adding 'torch/include/ATen/ops/polar_cpu_dispatch.h' 2025-01-24T02:56:21.6742740Z adding 'torch/include/ATen/ops/polar_cuda_dispatch.h' 2025-01-24T02:56:21.6743950Z adding 'torch/include/ATen/ops/polar_mps_dispatch.h' 2025-01-24T02:56:21.6745110Z adding 'torch/include/ATen/ops/polar_native.h' 2025-01-24T02:56:21.6746720Z adding 'torch/include/ATen/ops/polar_ops.h' 2025-01-24T02:56:21.6748040Z adding 'torch/include/ATen/ops/polygamma.h' 2025-01-24T02:56:21.6774450Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6774800Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6774980Z adding 'torch/include/ATen/ops/polygamma_cpu_dispatch.h' 2025-01-24T02:56:21.6775160Z adding 'torch/include/ATen/ops/polygamma_cuda_dispatch.h' 2025-01-24T02:56:21.6775300Z adding 'torch/include/ATen/ops/polygamma_meta.h' 2025-01-24T02:56:21.6775480Z adding 'torch/include/ATen/ops/polygamma_meta_dispatch.h' 2025-01-24T02:56:21.6775650Z adding 'torch/include/ATen/ops/polygamma_mps_dispatch.h' 2025-01-24T02:56:21.6775850Z adding 'torch/include/ATen/ops/polygamma_native.h' 2025-01-24T02:56:21.6775990Z adding 'torch/include/ATen/ops/polygamma_ops.h' 2025-01-24T02:56:21.6776120Z adding 'torch/include/ATen/ops/positive.h' 2025-01-24T02:56:21.6776390Z adding 'torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6776540Z adding 'torch/include/ATen/ops/positive_native.h' 2025-01-24T02:56:21.6776690Z adding 'torch/include/ATen/ops/positive_ops.h' 2025-01-24T02:56:21.6776800Z adding 'torch/include/ATen/ops/pow.h' 2025-01-24T02:56:21.6777120Z adding 'torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6777270Z adding 'torch/include/ATen/ops/pow_cpu_dispatch.h' 2025-01-24T02:56:21.6777420Z adding 'torch/include/ATen/ops/pow_cuda_dispatch.h' 2025-01-24T02:56:21.6777550Z adding 'torch/include/ATen/ops/pow_meta.h' 2025-01-24T02:56:21.6777730Z adding 'torch/include/ATen/ops/pow_meta_dispatch.h' 2025-01-24T02:56:21.6777880Z adding 'torch/include/ATen/ops/pow_mps_dispatch.h' 2025-01-24T02:56:21.6778010Z adding 'torch/include/ATen/ops/pow_native.h' 2025-01-24T02:56:21.6778130Z adding 'torch/include/ATen/ops/pow_ops.h' 2025-01-24T02:56:21.6778250Z adding 'torch/include/ATen/ops/prelu.h' 2025-01-24T02:56:21.6778510Z adding 'torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6779590Z adding 'torch/include/ATen/ops/prelu_native.h' 2025-01-24T02:56:21.6780440Z adding 'torch/include/ATen/ops/prelu_ops.h' 2025-01-24T02:56:21.6781700Z adding 'torch/include/ATen/ops/prod.h' 2025-01-24T02:56:21.6783020Z adding 'torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6783760Z adding 'torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6785020Z adding 'torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6786180Z adding 'torch/include/ATen/ops/prod_cpu_dispatch.h' 2025-01-24T02:56:21.6786700Z adding 'torch/include/ATen/ops/prod_cuda_dispatch.h' 2025-01-24T02:56:21.6788010Z adding 'torch/include/ATen/ops/prod_meta.h' 2025-01-24T02:56:21.6788890Z adding 'torch/include/ATen/ops/prod_meta_dispatch.h' 2025-01-24T02:56:21.6790130Z adding 'torch/include/ATen/ops/prod_mps_dispatch.h' 2025-01-24T02:56:21.6791240Z adding 'torch/include/ATen/ops/prod_native.h' 2025-01-24T02:56:21.6792560Z adding 'torch/include/ATen/ops/prod_ops.h' 2025-01-24T02:56:21.6793780Z adding 'torch/include/ATen/ops/promote_types.h' 2025-01-24T02:56:21.6794960Z adding 'torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6795460Z adding 'torch/include/ATen/ops/promote_types_native.h' 2025-01-24T02:56:21.6796800Z adding 'torch/include/ATen/ops/promote_types_ops.h' 2025-01-24T02:56:21.6797990Z adding 'torch/include/ATen/ops/put.h' 2025-01-24T02:56:21.6799160Z adding 'torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6799670Z adding 'torch/include/ATen/ops/put_cpu_dispatch.h' 2025-01-24T02:56:21.6801010Z adding 'torch/include/ATen/ops/put_cuda_dispatch.h' 2025-01-24T02:56:21.6801600Z adding 'torch/include/ATen/ops/put_meta_dispatch.h' 2025-01-24T02:56:21.6802870Z adding 'torch/include/ATen/ops/put_native.h' 2025-01-24T02:56:21.6804140Z adding 'torch/include/ATen/ops/put_ops.h' 2025-01-24T02:56:21.6805160Z adding 'torch/include/ATen/ops/q_per_channel_axis.h' 2025-01-24T02:56:21.6805900Z adding 'torch/include/ATen/ops/q_per_channel_axis_native.h' 2025-01-24T02:56:21.6807340Z adding 'torch/include/ATen/ops/q_per_channel_axis_ops.h' 2025-01-24T02:56:21.6808450Z adding 'torch/include/ATen/ops/q_per_channel_scales.h' 2025-01-24T02:56:21.6809580Z adding 'torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6813930Z adding 'torch/include/ATen/ops/q_per_channel_scales_native.h' 2025-01-24T02:56:21.6814250Z adding 'torch/include/ATen/ops/q_per_channel_scales_ops.h' 2025-01-24T02:56:21.6814440Z adding 'torch/include/ATen/ops/q_per_channel_zero_points.h' 2025-01-24T02:56:21.6814810Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6815020Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_native.h' 2025-01-24T02:56:21.6815390Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_ops.h' 2025-01-24T02:56:21.6816630Z adding 'torch/include/ATen/ops/q_scale.h' 2025-01-24T02:56:21.6817490Z adding 'torch/include/ATen/ops/q_scale_native.h' 2025-01-24T02:56:21.6818780Z adding 'torch/include/ATen/ops/q_scale_ops.h' 2025-01-24T02:56:21.6819810Z adding 'torch/include/ATen/ops/q_zero_point.h' 2025-01-24T02:56:21.6820380Z adding 'torch/include/ATen/ops/q_zero_point_native.h' 2025-01-24T02:56:21.6821670Z adding 'torch/include/ATen/ops/q_zero_point_ops.h' 2025-01-24T02:56:21.6822700Z adding 'torch/include/ATen/ops/qr.h' 2025-01-24T02:56:21.6823810Z adding 'torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6824860Z adding 'torch/include/ATen/ops/qr_native.h' 2025-01-24T02:56:21.6825710Z adding 'torch/include/ATen/ops/qr_ops.h' 2025-01-24T02:56:21.6826890Z adding 'torch/include/ATen/ops/qscheme.h' 2025-01-24T02:56:21.6827750Z adding 'torch/include/ATen/ops/qscheme_native.h' 2025-01-24T02:56:21.6828870Z adding 'torch/include/ATen/ops/qscheme_ops.h' 2025-01-24T02:56:21.6830030Z adding 'torch/include/ATen/ops/quantile.h' 2025-01-24T02:56:21.6831360Z adding 'torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6832090Z adding 'torch/include/ATen/ops/quantile_native.h' 2025-01-24T02:56:21.6833440Z adding 'torch/include/ATen/ops/quantile_ops.h' 2025-01-24T02:56:21.6834670Z adding 'torch/include/ATen/ops/quantize_per_channel.h' 2025-01-24T02:56:21.6835680Z adding 'torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6836830Z adding 'torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h' 2025-01-24T02:56:21.6837440Z adding 'torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h' 2025-01-24T02:56:21.6838730Z adding 'torch/include/ATen/ops/quantize_per_channel_native.h' 2025-01-24T02:56:21.6839980Z adding 'torch/include/ATen/ops/quantize_per_channel_ops.h' 2025-01-24T02:56:21.6841160Z adding 'torch/include/ATen/ops/quantize_per_tensor.h' 2025-01-24T02:56:21.6842530Z adding 'torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6843100Z adding 'torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h' 2025-01-24T02:56:21.6844420Z adding 'torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h' 2025-01-24T02:56:21.6845600Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic.h' 2025-01-24T02:56:21.6846620Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6847750Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h' 2025-01-24T02:56:21.6848440Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h' 2025-01-24T02:56:21.6849700Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h' 2025-01-24T02:56:21.6850950Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h' 2025-01-24T02:56:21.6851800Z adding 'torch/include/ATen/ops/quantize_per_tensor_native.h' 2025-01-24T02:56:21.6853280Z adding 'torch/include/ATen/ops/quantize_per_tensor_ops.h' 2025-01-24T02:56:21.6854560Z adding 'torch/include/ATen/ops/quantized_batch_norm.h' 2025-01-24T02:56:21.6855400Z adding 'torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6856550Z adding 'torch/include/ATen/ops/quantized_batch_norm_native.h' 2025-01-24T02:56:21.6857750Z adding 'torch/include/ATen/ops/quantized_batch_norm_ops.h' 2025-01-24T02:56:21.6858940Z adding 'torch/include/ATen/ops/quantized_gru_cell.h' 2025-01-24T02:56:21.6860130Z adding 'torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6860600Z adding 'torch/include/ATen/ops/quantized_gru_cell_native.h' 2025-01-24T02:56:21.6862050Z adding 'torch/include/ATen/ops/quantized_gru_cell_ops.h' 2025-01-24T02:56:21.6863330Z adding 'torch/include/ATen/ops/quantized_lstm_cell.h' 2025-01-24T02:56:21.6864360Z adding 'torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6865130Z adding 'torch/include/ATen/ops/quantized_lstm_cell_native.h' 2025-01-24T02:56:21.6866450Z adding 'torch/include/ATen/ops/quantized_lstm_cell_ops.h' 2025-01-24T02:56:21.6867660Z adding 'torch/include/ATen/ops/quantized_max_pool1d.h' 2025-01-24T02:56:21.6868670Z adding 'torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6869820Z adding 'torch/include/ATen/ops/quantized_max_pool1d_native.h' 2025-01-24T02:56:21.6870790Z adding 'torch/include/ATen/ops/quantized_max_pool1d_ops.h' 2025-01-24T02:56:21.6872060Z adding 'torch/include/ATen/ops/quantized_max_pool2d.h' 2025-01-24T02:56:21.6872910Z adding 'torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6874120Z adding 'torch/include/ATen/ops/quantized_max_pool2d_native.h' 2025-01-24T02:56:21.6875010Z adding 'torch/include/ATen/ops/quantized_max_pool2d_ops.h' 2025-01-24T02:56:21.6876260Z adding 'torch/include/ATen/ops/quantized_max_pool3d.h' 2025-01-24T02:56:21.6877630Z adding 'torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6878120Z adding 'torch/include/ATen/ops/quantized_max_pool3d_native.h' 2025-01-24T02:56:21.6879570Z adding 'torch/include/ATen/ops/quantized_max_pool3d_ops.h' 2025-01-24T02:56:21.6880770Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell.h' 2025-01-24T02:56:21.6881790Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6882880Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_native.h' 2025-01-24T02:56:21.6883730Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h' 2025-01-24T02:56:21.6884930Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell.h' 2025-01-24T02:56:21.6885970Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6887070Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h' 2025-01-24T02:56:21.6887970Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h' 2025-01-24T02:56:21.6889160Z adding 'torch/include/ATen/ops/rad2deg.h' 2025-01-24T02:56:21.6890170Z adding 'torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6891260Z adding 'torch/include/ATen/ops/rad2deg_native.h' 2025-01-24T02:56:21.6892290Z adding 'torch/include/ATen/ops/rad2deg_ops.h' 2025-01-24T02:56:21.6894520Z adding 'torch/include/ATen/ops/rand.h' 2025-01-24T02:56:21.6896040Z adding 'torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6897280Z adding 'torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6898370Z adding 'torch/include/ATen/ops/rand_like.h' 2025-01-24T02:56:21.6899370Z adding 'torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6900480Z adding 'torch/include/ATen/ops/rand_like_native.h' 2025-01-24T02:56:21.6901760Z adding 'torch/include/ATen/ops/rand_like_ops.h' 2025-01-24T02:56:21.6902960Z adding 'torch/include/ATen/ops/rand_native.h' 2025-01-24T02:56:21.6904300Z adding 'torch/include/ATen/ops/rand_ops.h' 2025-01-24T02:56:21.6906480Z adding 'torch/include/ATen/ops/randint.h' 2025-01-24T02:56:21.6907880Z adding 'torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6910440Z adding 'torch/include/ATen/ops/randint_like.h' 2025-01-24T02:56:21.6912060Z adding 'torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6913120Z adding 'torch/include/ATen/ops/randint_like_native.h' 2025-01-24T02:56:21.6914590Z adding 'torch/include/ATen/ops/randint_like_ops.h' 2025-01-24T02:56:21.6915700Z adding 'torch/include/ATen/ops/randint_native.h' 2025-01-24T02:56:21.6917120Z adding 'torch/include/ATen/ops/randint_ops.h' 2025-01-24T02:56:21.6919260Z adding 'torch/include/ATen/ops/randn.h' 2025-01-24T02:56:21.6920730Z adding 'torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6921950Z adding 'torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6922980Z adding 'torch/include/ATen/ops/randn_like.h' 2025-01-24T02:56:21.6924230Z adding 'torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6925490Z adding 'torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-01-24T02:56:21.6925940Z adding 'torch/include/ATen/ops/randn_like_native.h' 2025-01-24T02:56:21.6927470Z adding 'torch/include/ATen/ops/randn_like_ops.h' 2025-01-24T02:56:21.6928540Z adding 'torch/include/ATen/ops/randn_native.h' 2025-01-24T02:56:21.6929980Z adding 'torch/include/ATen/ops/randn_ops.h' 2025-01-24T02:56:21.6931110Z adding 'torch/include/ATen/ops/random.h' 2025-01-24T02:56:21.6932440Z adding 'torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6933030Z adding 'torch/include/ATen/ops/random_cpu_dispatch.h' 2025-01-24T02:56:21.6934340Z adding 'torch/include/ATen/ops/random_cuda_dispatch.h' 2025-01-24T02:56:21.6935170Z adding 'torch/include/ATen/ops/random_meta_dispatch.h' 2025-01-24T02:56:21.6936380Z adding 'torch/include/ATen/ops/random_mps_dispatch.h' 2025-01-24T02:56:21.6937230Z adding 'torch/include/ATen/ops/random_native.h' 2025-01-24T02:56:21.6938700Z adding 'torch/include/ATen/ops/random_ops.h' 2025-01-24T02:56:21.6940250Z adding 'torch/include/ATen/ops/randperm.h' 2025-01-24T02:56:21.6941580Z adding 'torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6942340Z adding 'torch/include/ATen/ops/randperm_cpu_dispatch.h' 2025-01-24T02:56:21.6943560Z adding 'torch/include/ATen/ops/randperm_cuda_dispatch.h' 2025-01-24T02:56:21.6944430Z adding 'torch/include/ATen/ops/randperm_mps_dispatch.h' 2025-01-24T02:56:21.6945620Z adding 'torch/include/ATen/ops/randperm_native.h' 2025-01-24T02:56:21.6946690Z adding 'torch/include/ATen/ops/randperm_ops.h' 2025-01-24T02:56:21.6947900Z adding 'torch/include/ATen/ops/range.h' 2025-01-24T02:56:21.6950000Z adding 'torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.6951370Z adding 'torch/include/ATen/ops/range_cpu_dispatch.h' 2025-01-24T02:56:21.6952720Z adding 'torch/include/ATen/ops/range_cuda_dispatch.h' 2025-01-24T02:56:21.6954090Z adding 'torch/include/ATen/ops/range_meta_dispatch.h' 2025-01-24T02:56:21.6955340Z adding 'torch/include/ATen/ops/range_mps_dispatch.h' 2025-01-24T02:56:21.6956650Z adding 'torch/include/ATen/ops/range_native.h' 2025-01-24T02:56:21.6958320Z adding 'torch/include/ATen/ops/range_ops.h' 2025-01-24T02:56:21.6959620Z adding 'torch/include/ATen/ops/ravel.h' 2025-01-24T02:56:21.6961060Z adding 'torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6962190Z adding 'torch/include/ATen/ops/ravel_native.h' 2025-01-24T02:56:21.6963510Z adding 'torch/include/ATen/ops/ravel_ops.h' 2025-01-24T02:56:21.6964750Z adding 'torch/include/ATen/ops/real.h' 2025-01-24T02:56:21.6966150Z adding 'torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6967260Z adding 'torch/include/ATen/ops/real_native.h' 2025-01-24T02:56:21.6968570Z adding 'torch/include/ATen/ops/real_ops.h' 2025-01-24T02:56:21.6969860Z adding 'torch/include/ATen/ops/reciprocal.h' 2025-01-24T02:56:21.6971350Z adding 'torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6972460Z adding 'torch/include/ATen/ops/reciprocal_cpu_dispatch.h' 2025-01-24T02:56:21.6973700Z adding 'torch/include/ATen/ops/reciprocal_cuda_dispatch.h' 2025-01-24T02:56:21.6974930Z adding 'torch/include/ATen/ops/reciprocal_meta.h' 2025-01-24T02:56:21.6976200Z adding 'torch/include/ATen/ops/reciprocal_meta_dispatch.h' 2025-01-24T02:56:21.6977470Z adding 'torch/include/ATen/ops/reciprocal_mps_dispatch.h' 2025-01-24T02:56:21.6978710Z adding 'torch/include/ATen/ops/reciprocal_native.h' 2025-01-24T02:56:21.6980080Z adding 'torch/include/ATen/ops/reciprocal_ops.h' 2025-01-24T02:56:21.6981350Z adding 'torch/include/ATen/ops/record_stream.h' 2025-01-24T02:56:21.6982660Z adding 'torch/include/ATen/ops/record_stream_cuda_dispatch.h' 2025-01-24T02:56:21.6983860Z adding 'torch/include/ATen/ops/record_stream_native.h' 2025-01-24T02:56:21.6985160Z adding 'torch/include/ATen/ops/record_stream_ops.h' 2025-01-24T02:56:21.6986350Z adding 'torch/include/ATen/ops/refine_names.h' 2025-01-24T02:56:21.6987770Z adding 'torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.6988890Z adding 'torch/include/ATen/ops/refine_names_native.h' 2025-01-24T02:56:21.6990190Z adding 'torch/include/ATen/ops/refine_names_ops.h' 2025-01-24T02:56:21.6991680Z adding 'torch/include/ATen/ops/reflection_pad1d.h' 2025-01-24T02:56:21.6993170Z adding 'torch/include/ATen/ops/reflection_pad1d_backward.h' 2025-01-24T02:56:21.6994740Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.6995920Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.6997220Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.6998470Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta.h' 2025-01-24T02:56:21.6999820Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h' 2025-01-24T02:56:21.7001060Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h' 2025-01-24T02:56:21.7002360Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_native.h' 2025-01-24T02:56:21.7003730Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_ops.h' 2025-01-24T02:56:21.7005190Z adding 'torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7006420Z adding 'torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h' 2025-01-24T02:56:21.7007610Z adding 'torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h' 2025-01-24T02:56:21.7012290Z adding 'torch/include/ATen/ops/reflection_pad1d_meta.h' 2025-01-24T02:56:21.7012670Z adding 'torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h' 2025-01-24T02:56:21.7012870Z adding 'torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h' 2025-01-24T02:56:21.7013050Z adding 'torch/include/ATen/ops/reflection_pad1d_native.h' 2025-01-24T02:56:21.7013640Z adding 'torch/include/ATen/ops/reflection_pad1d_ops.h' 2025-01-24T02:56:21.7015330Z adding 'torch/include/ATen/ops/reflection_pad2d.h' 2025-01-24T02:56:21.7016870Z adding 'torch/include/ATen/ops/reflection_pad2d_backward.h' 2025-01-24T02:56:21.7018270Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.7019540Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.7021160Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h' 2025-01-24T02:56:21.7022440Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_native.h' 2025-01-24T02:56:21.7023820Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_ops.h' 2025-01-24T02:56:21.7025110Z adding 'torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h' 2025-01-24T02:56:21.7026400Z adding 'torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h' 2025-01-24T02:56:21.7027640Z adding 'torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h' 2025-01-24T02:56:21.7028890Z adding 'torch/include/ATen/ops/reflection_pad2d_native.h' 2025-01-24T02:56:21.7030240Z adding 'torch/include/ATen/ops/reflection_pad2d_ops.h' 2025-01-24T02:56:21.7031670Z adding 'torch/include/ATen/ops/reflection_pad3d.h' 2025-01-24T02:56:21.7033190Z adding 'torch/include/ATen/ops/reflection_pad3d_backward.h' 2025-01-24T02:56:21.7034720Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7035940Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.7037180Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.7038390Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta.h' 2025-01-24T02:56:21.7039630Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h' 2025-01-24T02:56:21.7040850Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h' 2025-01-24T02:56:21.7042180Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_native.h' 2025-01-24T02:56:21.7043440Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_ops.h' 2025-01-24T02:56:21.7044940Z adding 'torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7046170Z adding 'torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h' 2025-01-24T02:56:21.7047440Z adding 'torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h' 2025-01-24T02:56:21.7048590Z adding 'torch/include/ATen/ops/reflection_pad3d_meta.h' 2025-01-24T02:56:21.7049830Z adding 'torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h' 2025-01-24T02:56:21.7051230Z adding 'torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h' 2025-01-24T02:56:21.7052560Z adding 'torch/include/ATen/ops/reflection_pad3d_native.h' 2025-01-24T02:56:21.7053830Z adding 'torch/include/ATen/ops/reflection_pad3d_ops.h' 2025-01-24T02:56:21.7054990Z adding 'torch/include/ATen/ops/relu.h' 2025-01-24T02:56:21.7056170Z adding 'torch/include/ATen/ops/relu6.h' 2025-01-24T02:56:21.7057160Z adding 'torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7058250Z adding 'torch/include/ATen/ops/relu6_native.h' 2025-01-24T02:56:21.7059450Z adding 'torch/include/ATen/ops/relu6_ops.h' 2025-01-24T02:56:21.7060430Z adding 'torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7061550Z adding 'torch/include/ATen/ops/relu_cpu_dispatch.h' 2025-01-24T02:56:21.7062460Z adding 'torch/include/ATen/ops/relu_cuda_dispatch.h' 2025-01-24T02:56:21.7063530Z adding 'torch/include/ATen/ops/relu_meta_dispatch.h' 2025-01-24T02:56:21.7064440Z adding 'torch/include/ATen/ops/relu_mps_dispatch.h' 2025-01-24T02:56:21.7065530Z adding 'torch/include/ATen/ops/relu_native.h' 2025-01-24T02:56:21.7066720Z adding 'torch/include/ATen/ops/relu_ops.h' 2025-01-24T02:56:21.7067940Z adding 'torch/include/ATen/ops/remainder.h' 2025-01-24T02:56:21.7068940Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7070230Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7070850Z adding 'torch/include/ATen/ops/remainder_cpu_dispatch.h' 2025-01-24T02:56:21.7072110Z adding 'torch/include/ATen/ops/remainder_cuda_dispatch.h' 2025-01-24T02:56:21.7072950Z adding 'torch/include/ATen/ops/remainder_meta.h' 2025-01-24T02:56:21.7074150Z adding 'torch/include/ATen/ops/remainder_meta_dispatch.h' 2025-01-24T02:56:21.7075010Z adding 'torch/include/ATen/ops/remainder_mps_dispatch.h' 2025-01-24T02:56:21.7076230Z adding 'torch/include/ATen/ops/remainder_native.h' 2025-01-24T02:56:21.7077560Z adding 'torch/include/ATen/ops/remainder_ops.h' 2025-01-24T02:56:21.7078410Z adding 'torch/include/ATen/ops/rename.h' 2025-01-24T02:56:21.7079820Z adding 'torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7080650Z adding 'torch/include/ATen/ops/rename_native.h' 2025-01-24T02:56:21.7081840Z adding 'torch/include/ATen/ops/rename_ops.h' 2025-01-24T02:56:21.7083020Z adding 'torch/include/ATen/ops/renorm.h' 2025-01-24T02:56:21.7084060Z adding 'torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7085120Z adding 'torch/include/ATen/ops/renorm_cpu_dispatch.h' 2025-01-24T02:56:21.7085770Z adding 'torch/include/ATen/ops/renorm_cuda_dispatch.h' 2025-01-24T02:56:21.7087060Z adding 'torch/include/ATen/ops/renorm_meta.h' 2025-01-24T02:56:21.7088010Z adding 'torch/include/ATen/ops/renorm_meta_dispatch.h' 2025-01-24T02:56:21.7088730Z adding 'torch/include/ATen/ops/renorm_mps_dispatch.h' 2025-01-24T02:56:21.7089990Z adding 'torch/include/ATen/ops/renorm_native.h' 2025-01-24T02:56:21.7091200Z adding 'torch/include/ATen/ops/renorm_ops.h' 2025-01-24T02:56:21.7092380Z adding 'torch/include/ATen/ops/repeat.h' 2025-01-24T02:56:21.7093240Z adding 'torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7094810Z adding 'torch/include/ATen/ops/repeat_interleave.h' 2025-01-24T02:56:21.7096040Z adding 'torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7097250Z adding 'torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7097780Z adding 'torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h' 2025-01-24T02:56:21.7099140Z adding 'torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h' 2025-01-24T02:56:21.7099820Z adding 'torch/include/ATen/ops/repeat_interleave_mps_dispatch.h' 2025-01-24T02:56:21.7101090Z adding 'torch/include/ATen/ops/repeat_interleave_native.h' 2025-01-24T02:56:21.7102320Z adding 'torch/include/ATen/ops/repeat_interleave_ops.h' 2025-01-24T02:56:21.7103190Z adding 'torch/include/ATen/ops/repeat_mps_dispatch.h' 2025-01-24T02:56:21.7104380Z adding 'torch/include/ATen/ops/repeat_native.h' 2025-01-24T02:56:21.7105410Z adding 'torch/include/ATen/ops/repeat_ops.h' 2025-01-24T02:56:21.7106640Z adding 'torch/include/ATen/ops/replication_pad1d.h' 2025-01-24T02:56:21.7107920Z adding 'torch/include/ATen/ops/replication_pad1d_backward.h' 2025-01-24T02:56:21.7109340Z adding 'torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7109850Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.7111130Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.7112020Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta.h' 2025-01-24T02:56:21.7113250Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h' 2025-01-24T02:56:21.7113820Z adding 'torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h' 2025-01-24T02:56:21.7115120Z adding 'torch/include/ATen/ops/replication_pad1d_backward_native.h' 2025-01-24T02:56:21.7116320Z adding 'torch/include/ATen/ops/replication_pad1d_backward_ops.h' 2025-01-24T02:56:21.7117340Z adding 'torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7118440Z adding 'torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h' 2025-01-24T02:56:21.7119080Z adding 'torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h' 2025-01-24T02:56:21.7120280Z adding 'torch/include/ATen/ops/replication_pad1d_meta.h' 2025-01-24T02:56:21.7121250Z adding 'torch/include/ATen/ops/replication_pad1d_meta_dispatch.h' 2025-01-24T02:56:21.7122450Z adding 'torch/include/ATen/ops/replication_pad1d_mps_dispatch.h' 2025-01-24T02:56:21.7123090Z adding 'torch/include/ATen/ops/replication_pad1d_native.h' 2025-01-24T02:56:21.7124430Z adding 'torch/include/ATen/ops/replication_pad1d_ops.h' 2025-01-24T02:56:21.7125690Z adding 'torch/include/ATen/ops/replication_pad2d.h' 2025-01-24T02:56:21.7126870Z adding 'torch/include/ATen/ops/replication_pad2d_backward.h' 2025-01-24T02:56:21.7128180Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.7128700Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.7129980Z adding 'torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h' 2025-01-24T02:56:21.7130820Z adding 'torch/include/ATen/ops/replication_pad2d_backward_native.h' 2025-01-24T02:56:21.7132070Z adding 'torch/include/ATen/ops/replication_pad2d_backward_ops.h' 2025-01-24T02:56:21.7133120Z adding 'torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7134210Z adding 'torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h' 2025-01-24T02:56:21.7134840Z adding 'torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h' 2025-01-24T02:56:21.7136130Z adding 'torch/include/ATen/ops/replication_pad2d_meta.h' 2025-01-24T02:56:21.7137030Z adding 'torch/include/ATen/ops/replication_pad2d_meta_dispatch.h' 2025-01-24T02:56:21.7137890Z adding 'torch/include/ATen/ops/replication_pad2d_mps_dispatch.h' 2025-01-24T02:56:21.7139090Z adding 'torch/include/ATen/ops/replication_pad2d_native.h' 2025-01-24T02:56:21.7140270Z adding 'torch/include/ATen/ops/replication_pad2d_ops.h' 2025-01-24T02:56:21.7141480Z adding 'torch/include/ATen/ops/replication_pad3d.h' 2025-01-24T02:56:21.7142720Z adding 'torch/include/ATen/ops/replication_pad3d_backward.h' 2025-01-24T02:56:21.7143640Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.7144850Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.7145550Z adding 'torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h' 2025-01-24T02:56:21.7146800Z adding 'torch/include/ATen/ops/replication_pad3d_backward_native.h' 2025-01-24T02:56:21.7147990Z adding 'torch/include/ATen/ops/replication_pad3d_backward_ops.h' 2025-01-24T02:56:21.7149030Z adding 'torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7149660Z adding 'torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h' 2025-01-24T02:56:21.7150920Z adding 'torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h' 2025-01-24T02:56:21.7151740Z adding 'torch/include/ATen/ops/replication_pad3d_meta.h' 2025-01-24T02:56:21.7152990Z adding 'torch/include/ATen/ops/replication_pad3d_meta_dispatch.h' 2025-01-24T02:56:21.7153850Z adding 'torch/include/ATen/ops/replication_pad3d_mps_dispatch.h' 2025-01-24T02:56:21.7155040Z adding 'torch/include/ATen/ops/replication_pad3d_native.h' 2025-01-24T02:56:21.7155900Z adding 'torch/include/ATen/ops/replication_pad3d_ops.h' 2025-01-24T02:56:21.7157080Z adding 'torch/include/ATen/ops/requires_grad.h' 2025-01-24T02:56:21.7158100Z adding 'torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7158840Z adding 'torch/include/ATen/ops/requires_grad_native.h' 2025-01-24T02:56:21.7160040Z adding 'torch/include/ATen/ops/requires_grad_ops.h' 2025-01-24T02:56:21.7161070Z adding 'torch/include/ATen/ops/reshape.h' 2025-01-24T02:56:21.7161980Z adding 'torch/include/ATen/ops/reshape_as.h' 2025-01-24T02:56:21.7163320Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7164000Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h' 2025-01-24T02:56:21.7165190Z adding 'torch/include/ATen/ops/reshape_as_native.h' 2025-01-24T02:56:21.7166210Z adding 'torch/include/ATen/ops/reshape_as_ops.h' 2025-01-24T02:56:21.7167210Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7168470Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h' 2025-01-24T02:56:21.7168850Z adding 'torch/include/ATen/ops/reshape_native.h' 2025-01-24T02:56:21.7170170Z adding 'torch/include/ATen/ops/reshape_ops.h' 2025-01-24T02:56:21.7171430Z adding 'torch/include/ATen/ops/resize.h' 2025-01-24T02:56:21.7172620Z adding 'torch/include/ATen/ops/resize_as.h' 2025-01-24T02:56:21.7173990Z adding 'torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7174420Z adding 'torch/include/ATen/ops/resize_as_native.h' 2025-01-24T02:56:21.7175840Z adding 'torch/include/ATen/ops/resize_as_ops.h' 2025-01-24T02:56:21.7177070Z adding 'torch/include/ATen/ops/resize_as_sparse.h' 2025-01-24T02:56:21.7178260Z adding 'torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7178810Z adding 'torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h' 2025-01-24T02:56:21.7180130Z adding 'torch/include/ATen/ops/resize_as_sparse_native.h' 2025-01-24T02:56:21.7181320Z adding 'torch/include/ATen/ops/resize_as_sparse_ops.h' 2025-01-24T02:56:21.7182290Z adding 'torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7183400Z adding 'torch/include/ATen/ops/resize_cpu_dispatch.h' 2025-01-24T02:56:21.7184280Z adding 'torch/include/ATen/ops/resize_cuda_dispatch.h' 2025-01-24T02:56:21.7185140Z adding 'torch/include/ATen/ops/resize_meta_dispatch.h' 2025-01-24T02:56:21.7186360Z adding 'torch/include/ATen/ops/resize_mps_dispatch.h' 2025-01-24T02:56:21.7187200Z adding 'torch/include/ATen/ops/resize_native.h' 2025-01-24T02:56:21.7188440Z adding 'torch/include/ATen/ops/resize_ops.h' 2025-01-24T02:56:21.7189640Z adding 'torch/include/ATen/ops/resolve_conj.h' 2025-01-24T02:56:21.7194030Z adding 'torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7194340Z adding 'torch/include/ATen/ops/resolve_conj_native.h' 2025-01-24T02:56:21.7194540Z adding 'torch/include/ATen/ops/resolve_conj_ops.h' 2025-01-24T02:56:21.7194680Z adding 'torch/include/ATen/ops/resolve_neg.h' 2025-01-24T02:56:21.7194960Z adding 'torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7195120Z adding 'torch/include/ATen/ops/resolve_neg_native.h' 2025-01-24T02:56:21.7196900Z adding 'torch/include/ATen/ops/resolve_neg_ops.h' 2025-01-24T02:56:21.7197330Z adding 'torch/include/ATen/ops/result_type.h' 2025-01-24T02:56:21.7198740Z adding 'torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7199360Z adding 'torch/include/ATen/ops/result_type_native.h' 2025-01-24T02:56:21.7200810Z adding 'torch/include/ATen/ops/result_type_ops.h' 2025-01-24T02:56:21.7201840Z adding 'torch/include/ATen/ops/retain_grad.h' 2025-01-24T02:56:21.7202840Z adding 'torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7203620Z adding 'torch/include/ATen/ops/retain_grad_native.h' 2025-01-24T02:56:21.7204830Z adding 'torch/include/ATen/ops/retain_grad_ops.h' 2025-01-24T02:56:21.7205960Z adding 'torch/include/ATen/ops/retains_grad.h' 2025-01-24T02:56:21.7206620Z adding 'torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7207770Z adding 'torch/include/ATen/ops/retains_grad_native.h' 2025-01-24T02:56:21.7208630Z adding 'torch/include/ATen/ops/retains_grad_ops.h' 2025-01-24T02:56:21.7209850Z adding 'torch/include/ATen/ops/rms_norm.h' 2025-01-24T02:56:21.7211210Z adding 'torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7211620Z adding 'torch/include/ATen/ops/rms_norm_native.h' 2025-01-24T02:56:21.7212990Z adding 'torch/include/ATen/ops/rms_norm_ops.h' 2025-01-24T02:56:21.7214200Z adding 'torch/include/ATen/ops/rnn_relu.h' 2025-01-24T02:56:21.7214870Z adding 'torch/include/ATen/ops/rnn_relu_cell.h' 2025-01-24T02:56:21.7216300Z adding 'torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7216880Z adding 'torch/include/ATen/ops/rnn_relu_cell_native.h' 2025-01-24T02:56:21.7218200Z adding 'torch/include/ATen/ops/rnn_relu_cell_ops.h' 2025-01-24T02:56:21.7219380Z adding 'torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7220140Z adding 'torch/include/ATen/ops/rnn_relu_native.h' 2025-01-24T02:56:21.7221430Z adding 'torch/include/ATen/ops/rnn_relu_ops.h' 2025-01-24T02:56:21.7222650Z adding 'torch/include/ATen/ops/rnn_tanh.h' 2025-01-24T02:56:21.7223600Z adding 'torch/include/ATen/ops/rnn_tanh_cell.h' 2025-01-24T02:56:21.7224640Z adding 'torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7225730Z adding 'torch/include/ATen/ops/rnn_tanh_cell_native.h' 2025-01-24T02:56:21.7226620Z adding 'torch/include/ATen/ops/rnn_tanh_cell_ops.h' 2025-01-24T02:56:21.7227800Z adding 'torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7228550Z adding 'torch/include/ATen/ops/rnn_tanh_native.h' 2025-01-24T02:56:21.7229880Z adding 'torch/include/ATen/ops/rnn_tanh_ops.h' 2025-01-24T02:56:21.7231060Z adding 'torch/include/ATen/ops/roll.h' 2025-01-24T02:56:21.7232250Z adding 'torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7233030Z adding 'torch/include/ATen/ops/roll_cpu_dispatch.h' 2025-01-24T02:56:21.7234210Z adding 'torch/include/ATen/ops/roll_cuda_dispatch.h' 2025-01-24T02:56:21.7235260Z adding 'torch/include/ATen/ops/roll_mps_dispatch.h' 2025-01-24T02:56:21.7235840Z adding 'torch/include/ATen/ops/roll_native.h' 2025-01-24T02:56:21.7237180Z adding 'torch/include/ATen/ops/roll_ops.h' 2025-01-24T02:56:21.7238360Z adding 'torch/include/ATen/ops/rot90.h' 2025-01-24T02:56:21.7239330Z adding 'torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7240430Z adding 'torch/include/ATen/ops/rot90_native.h' 2025-01-24T02:56:21.7241280Z adding 'torch/include/ATen/ops/rot90_ops.h' 2025-01-24T02:56:21.7242470Z adding 'torch/include/ATen/ops/round.h' 2025-01-24T02:56:21.7243880Z adding 'torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7244370Z adding 'torch/include/ATen/ops/round_cpu_dispatch.h' 2025-01-24T02:56:21.7245660Z adding 'torch/include/ATen/ops/round_cuda_dispatch.h' 2025-01-24T02:56:21.7246510Z adding 'torch/include/ATen/ops/round_meta.h' 2025-01-24T02:56:21.7247740Z adding 'torch/include/ATen/ops/round_meta_dispatch.h' 2025-01-24T02:56:21.7248620Z adding 'torch/include/ATen/ops/round_mps_dispatch.h' 2025-01-24T02:56:21.7249700Z adding 'torch/include/ATen/ops/round_native.h' 2025-01-24T02:56:21.7250910Z adding 'torch/include/ATen/ops/round_ops.h' 2025-01-24T02:56:21.7251760Z adding 'torch/include/ATen/ops/row_indices.h' 2025-01-24T02:56:21.7253150Z adding 'torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7253900Z adding 'torch/include/ATen/ops/row_indices_copy.h' 2025-01-24T02:56:21.7255250Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7256050Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7257150Z adding 'torch/include/ATen/ops/row_indices_copy_native.h' 2025-01-24T02:56:21.7258350Z adding 'torch/include/ATen/ops/row_indices_copy_ops.h' 2025-01-24T02:56:21.7258900Z adding 'torch/include/ATen/ops/row_indices_native.h' 2025-01-24T02:56:21.7260150Z adding 'torch/include/ATen/ops/row_indices_ops.h' 2025-01-24T02:56:21.7261180Z adding 'torch/include/ATen/ops/row_stack.h' 2025-01-24T02:56:21.7262170Z adding 'torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7263270Z adding 'torch/include/ATen/ops/row_stack_native.h' 2025-01-24T02:56:21.7264300Z adding 'torch/include/ATen/ops/row_stack_ops.h' 2025-01-24T02:56:21.7265490Z adding 'torch/include/ATen/ops/rrelu.h' 2025-01-24T02:56:21.7266460Z adding 'torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7267550Z adding 'torch/include/ATen/ops/rrelu_native.h' 2025-01-24T02:56:21.7268890Z adding 'torch/include/ATen/ops/rrelu_ops.h' 2025-01-24T02:56:21.7270170Z adding 'torch/include/ATen/ops/rrelu_with_noise.h' 2025-01-24T02:56:21.7271210Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward.h' 2025-01-24T02:56:21.7272600Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7273230Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_native.h' 2025-01-24T02:56:21.7274570Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_ops.h' 2025-01-24T02:56:21.7275880Z adding 'torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7276420Z adding 'torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h' 2025-01-24T02:56:21.7277710Z adding 'torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h' 2025-01-24T02:56:21.7278570Z adding 'torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h' 2025-01-24T02:56:21.7279780Z adding 'torch/include/ATen/ops/rrelu_with_noise_native.h' 2025-01-24T02:56:21.7281050Z adding 'torch/include/ATen/ops/rrelu_with_noise_ops.h' 2025-01-24T02:56:21.7282220Z adding 'torch/include/ATen/ops/rshift.h' 2025-01-24T02:56:21.7283200Z adding 'torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7284320Z adding 'torch/include/ATen/ops/rshift_cpu_dispatch.h' 2025-01-24T02:56:21.7285190Z adding 'torch/include/ATen/ops/rshift_cuda_dispatch.h' 2025-01-24T02:56:21.7286410Z adding 'torch/include/ATen/ops/rshift_meta_dispatch.h' 2025-01-24T02:56:21.7286960Z adding 'torch/include/ATen/ops/rshift_mps_dispatch.h' 2025-01-24T02:56:21.7288210Z adding 'torch/include/ATen/ops/rshift_native.h' 2025-01-24T02:56:21.7289460Z adding 'torch/include/ATen/ops/rshift_ops.h' 2025-01-24T02:56:21.7290640Z adding 'torch/include/ATen/ops/rsqrt.h' 2025-01-24T02:56:21.7291480Z adding 'torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7292640Z adding 'torch/include/ATen/ops/rsqrt_cpu_dispatch.h' 2025-01-24T02:56:21.7293460Z adding 'torch/include/ATen/ops/rsqrt_cuda_dispatch.h' 2025-01-24T02:56:21.7294640Z adding 'torch/include/ATen/ops/rsqrt_meta.h' 2025-01-24T02:56:21.7295270Z adding 'torch/include/ATen/ops/rsqrt_meta_dispatch.h' 2025-01-24T02:56:21.7296610Z adding 'torch/include/ATen/ops/rsqrt_mps_dispatch.h' 2025-01-24T02:56:21.7297460Z adding 'torch/include/ATen/ops/rsqrt_native.h' 2025-01-24T02:56:21.7298650Z adding 'torch/include/ATen/ops/rsqrt_ops.h' 2025-01-24T02:56:21.7299820Z adding 'torch/include/ATen/ops/rsub.h' 2025-01-24T02:56:21.7300800Z adding 'torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7301910Z adding 'torch/include/ATen/ops/rsub_cpu_dispatch.h' 2025-01-24T02:56:21.7302430Z adding 'torch/include/ATen/ops/rsub_cuda_dispatch.h' 2025-01-24T02:56:21.7303670Z adding 'torch/include/ATen/ops/rsub_native.h' 2025-01-24T02:56:21.7304860Z adding 'torch/include/ATen/ops/rsub_ops.h' 2025-01-24T02:56:21.7306240Z adding 'torch/include/ATen/ops/scalar_tensor.h' 2025-01-24T02:56:21.7306920Z adding 'torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7308060Z adding 'torch/include/ATen/ops/scalar_tensor_native.h' 2025-01-24T02:56:21.7309250Z adding 'torch/include/ATen/ops/scalar_tensor_ops.h' 2025-01-24T02:56:21.7310340Z adding 'torch/include/ATen/ops/scaled_dot_product_attention.h' 2025-01-24T02:56:21.7311370Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7312550Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_native.h' 2025-01-24T02:56:21.7313400Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_ops.h' 2025-01-24T02:56:21.7314720Z adding 'torch/include/ATen/ops/scatter.h' 2025-01-24T02:56:21.7315920Z adding 'torch/include/ATen/ops/scatter_add.h' 2025-01-24T02:56:21.7317000Z adding 'torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7317750Z adding 'torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7318940Z adding 'torch/include/ATen/ops/scatter_add_cpu_dispatch.h' 2025-01-24T02:56:21.7319810Z adding 'torch/include/ATen/ops/scatter_add_cuda_dispatch.h' 2025-01-24T02:56:21.7320990Z adding 'torch/include/ATen/ops/scatter_add_meta.h' 2025-01-24T02:56:21.7322060Z adding 'torch/include/ATen/ops/scatter_add_meta_dispatch.h' 2025-01-24T02:56:21.7322730Z adding 'torch/include/ATen/ops/scatter_add_mps_dispatch.h' 2025-01-24T02:56:21.7324010Z adding 'torch/include/ATen/ops/scatter_add_native.h' 2025-01-24T02:56:21.7325160Z adding 'torch/include/ATen/ops/scatter_add_ops.h' 2025-01-24T02:56:21.7326400Z adding 'torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7327090Z adding 'torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7328360Z adding 'torch/include/ATen/ops/scatter_cpu_dispatch.h' 2025-01-24T02:56:21.7329570Z adding 'torch/include/ATen/ops/scatter_cuda_dispatch.h' 2025-01-24T02:56:21.7330420Z adding 'torch/include/ATen/ops/scatter_meta.h' 2025-01-24T02:56:21.7331650Z adding 'torch/include/ATen/ops/scatter_meta_dispatch.h' 2025-01-24T02:56:21.7332520Z adding 'torch/include/ATen/ops/scatter_mps_dispatch.h' 2025-01-24T02:56:21.7333740Z adding 'torch/include/ATen/ops/scatter_native.h' 2025-01-24T02:56:21.7335380Z adding 'torch/include/ATen/ops/scatter_ops.h' 2025-01-24T02:56:21.7336590Z adding 'torch/include/ATen/ops/scatter_reduce.h' 2025-01-24T02:56:21.7337840Z adding 'torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7338390Z adding 'torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h' 2025-01-24T02:56:21.7339680Z adding 'torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h' 2025-01-24T02:56:21.7340510Z adding 'torch/include/ATen/ops/scatter_reduce_meta.h' 2025-01-24T02:56:21.7341710Z adding 'torch/include/ATen/ops/scatter_reduce_meta_dispatch.h' 2025-01-24T02:56:21.7342680Z adding 'torch/include/ATen/ops/scatter_reduce_mps_dispatch.h' 2025-01-24T02:56:21.7343840Z adding 'torch/include/ATen/ops/scatter_reduce_native.h' 2025-01-24T02:56:21.7345040Z adding 'torch/include/ATen/ops/scatter_reduce_ops.h' 2025-01-24T02:56:21.7346070Z adding 'torch/include/ATen/ops/searchsorted.h' 2025-01-24T02:56:21.7347330Z adding 'torch/include/ATen/ops/searchsorted_cpu_dispatch.h' 2025-01-24T02:56:21.7348200Z adding 'torch/include/ATen/ops/searchsorted_cuda_dispatch.h' 2025-01-24T02:56:21.7349400Z adding 'torch/include/ATen/ops/searchsorted_mps_dispatch.h' 2025-01-24T02:56:21.7350580Z adding 'torch/include/ATen/ops/searchsorted_native.h' 2025-01-24T02:56:21.7351790Z adding 'torch/include/ATen/ops/searchsorted_ops.h' 2025-01-24T02:56:21.7353550Z adding 'torch/include/ATen/ops/segment_reduce.h' 2025-01-24T02:56:21.7355160Z adding 'torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7356360Z adding 'torch/include/ATen/ops/segment_reduce_cpu_dispatch.h' 2025-01-24T02:56:21.7357570Z adding 'torch/include/ATen/ops/segment_reduce_cuda_dispatch.h' 2025-01-24T02:56:21.7358760Z adding 'torch/include/ATen/ops/segment_reduce_native.h' 2025-01-24T02:56:21.7360050Z adding 'torch/include/ATen/ops/segment_reduce_ops.h' 2025-01-24T02:56:21.7361230Z adding 'torch/include/ATen/ops/select.h' 2025-01-24T02:56:21.7362620Z adding 'torch/include/ATen/ops/select_backward.h' 2025-01-24T02:56:21.7364010Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7365270Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7366330Z adding 'torch/include/ATen/ops/select_backward_native.h' 2025-01-24T02:56:21.7367530Z adding 'torch/include/ATen/ops/select_backward_ops.h' 2025-01-24T02:56:21.7372300Z adding 'torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7372700Z adding 'torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7372840Z adding 'torch/include/ATen/ops/select_copy.h' 2025-01-24T02:56:21.7374240Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7374580Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7374740Z adding 'torch/include/ATen/ops/select_copy_native.h' 2025-01-24T02:56:21.7375310Z adding 'torch/include/ATen/ops/select_copy_ops.h' 2025-01-24T02:56:21.7376700Z adding 'torch/include/ATen/ops/select_native.h' 2025-01-24T02:56:21.7377890Z adding 'torch/include/ATen/ops/select_ops.h' 2025-01-24T02:56:21.7379230Z adding 'torch/include/ATen/ops/select_scatter.h' 2025-01-24T02:56:21.7380520Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7381800Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7382390Z adding 'torch/include/ATen/ops/select_scatter_native.h' 2025-01-24T02:56:21.7383790Z adding 'torch/include/ATen/ops/select_scatter_ops.h' 2025-01-24T02:56:21.7384690Z adding 'torch/include/ATen/ops/selu.h' 2025-01-24T02:56:21.7386170Z adding 'torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7387270Z adding 'torch/include/ATen/ops/selu_native.h' 2025-01-24T02:56:21.7388110Z adding 'torch/include/ATen/ops/selu_ops.h' 2025-01-24T02:56:21.7389840Z adding 'torch/include/ATen/ops/set.h' 2025-01-24T02:56:21.7391230Z adding 'torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7392430Z adding 'torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7393220Z adding 'torch/include/ATen/ops/set_cpu_dispatch.h' 2025-01-24T02:56:21.7394400Z adding 'torch/include/ATen/ops/set_cuda_dispatch.h' 2025-01-24T02:56:21.7395410Z adding 'torch/include/ATen/ops/set_data.h' 2025-01-24T02:56:21.7396730Z adding 'torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7397340Z adding 'torch/include/ATen/ops/set_data_native.h' 2025-01-24T02:56:21.7398670Z adding 'torch/include/ATen/ops/set_data_ops.h' 2025-01-24T02:56:21.7399880Z adding 'torch/include/ATen/ops/set_meta_dispatch.h' 2025-01-24T02:56:21.7400920Z adding 'torch/include/ATen/ops/set_mps_dispatch.h' 2025-01-24T02:56:21.7401940Z adding 'torch/include/ATen/ops/set_native.h' 2025-01-24T02:56:21.7403550Z adding 'torch/include/ATen/ops/set_ops.h' 2025-01-24T02:56:21.7404740Z adding 'torch/include/ATen/ops/sgn.h' 2025-01-24T02:56:21.7406260Z adding 'torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7406720Z adding 'torch/include/ATen/ops/sgn_cpu_dispatch.h' 2025-01-24T02:56:21.7407960Z adding 'torch/include/ATen/ops/sgn_cuda_dispatch.h' 2025-01-24T02:56:21.7409150Z adding 'torch/include/ATen/ops/sgn_meta.h' 2025-01-24T02:56:21.7410010Z adding 'torch/include/ATen/ops/sgn_meta_dispatch.h' 2025-01-24T02:56:21.7411160Z adding 'torch/include/ATen/ops/sgn_mps_dispatch.h' 2025-01-24T02:56:21.7412440Z adding 'torch/include/ATen/ops/sgn_native.h' 2025-01-24T02:56:21.7413280Z adding 'torch/include/ATen/ops/sgn_ops.h' 2025-01-24T02:56:21.7414510Z adding 'torch/include/ATen/ops/sigmoid.h' 2025-01-24T02:56:21.7415720Z adding 'torch/include/ATen/ops/sigmoid_backward.h' 2025-01-24T02:56:21.7417030Z adding 'torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7418120Z adding 'torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h' 2025-01-24T02:56:21.7419010Z adding 'torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h' 2025-01-24T02:56:21.7420180Z adding 'torch/include/ATen/ops/sigmoid_backward_meta.h' 2025-01-24T02:56:21.7421090Z adding 'torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h' 2025-01-24T02:56:21.7422390Z adding 'torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h' 2025-01-24T02:56:21.7423580Z adding 'torch/include/ATen/ops/sigmoid_backward_native.h' 2025-01-24T02:56:21.7424780Z adding 'torch/include/ATen/ops/sigmoid_backward_ops.h' 2025-01-24T02:56:21.7425850Z adding 'torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7426900Z adding 'torch/include/ATen/ops/sigmoid_cpu_dispatch.h' 2025-01-24T02:56:21.7427770Z adding 'torch/include/ATen/ops/sigmoid_cuda_dispatch.h' 2025-01-24T02:56:21.7428980Z adding 'torch/include/ATen/ops/sigmoid_meta.h' 2025-01-24T02:56:21.7429670Z adding 'torch/include/ATen/ops/sigmoid_meta_dispatch.h' 2025-01-24T02:56:21.7431020Z adding 'torch/include/ATen/ops/sigmoid_mps_dispatch.h' 2025-01-24T02:56:21.7431840Z adding 'torch/include/ATen/ops/sigmoid_native.h' 2025-01-24T02:56:21.7433180Z adding 'torch/include/ATen/ops/sigmoid_ops.h' 2025-01-24T02:56:21.7434350Z adding 'torch/include/ATen/ops/sign.h' 2025-01-24T02:56:21.7435380Z adding 'torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7436430Z adding 'torch/include/ATen/ops/sign_cpu_dispatch.h' 2025-01-24T02:56:21.7437480Z adding 'torch/include/ATen/ops/sign_cuda_dispatch.h' 2025-01-24T02:56:21.7438310Z adding 'torch/include/ATen/ops/sign_meta.h' 2025-01-24T02:56:21.7439550Z adding 'torch/include/ATen/ops/sign_meta_dispatch.h' 2025-01-24T02:56:21.7440580Z adding 'torch/include/ATen/ops/sign_mps_dispatch.h' 2025-01-24T02:56:21.7441680Z adding 'torch/include/ATen/ops/sign_native.h' 2025-01-24T02:56:21.7442870Z adding 'torch/include/ATen/ops/sign_ops.h' 2025-01-24T02:56:21.7444050Z adding 'torch/include/ATen/ops/signbit.h' 2025-01-24T02:56:21.7445080Z adding 'torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7446140Z adding 'torch/include/ATen/ops/signbit_cpu_dispatch.h' 2025-01-24T02:56:21.7447010Z adding 'torch/include/ATen/ops/signbit_cuda_dispatch.h' 2025-01-24T02:56:21.7448200Z adding 'torch/include/ATen/ops/signbit_meta.h' 2025-01-24T02:56:21.7449080Z adding 'torch/include/ATen/ops/signbit_meta_dispatch.h' 2025-01-24T02:56:21.7450320Z adding 'torch/include/ATen/ops/signbit_mps_dispatch.h' 2025-01-24T02:56:21.7451480Z adding 'torch/include/ATen/ops/signbit_native.h' 2025-01-24T02:56:21.7452340Z adding 'torch/include/ATen/ops/signbit_ops.h' 2025-01-24T02:56:21.7453570Z adding 'torch/include/ATen/ops/silu.h' 2025-01-24T02:56:21.7454790Z adding 'torch/include/ATen/ops/silu_backward.h' 2025-01-24T02:56:21.7455880Z adding 'torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7457080Z adding 'torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7458230Z adding 'torch/include/ATen/ops/silu_backward_cpu_dispatch.h' 2025-01-24T02:56:21.7459310Z adding 'torch/include/ATen/ops/silu_backward_cuda_dispatch.h' 2025-01-24T02:56:21.7460370Z adding 'torch/include/ATen/ops/silu_backward_meta.h' 2025-01-24T02:56:21.7461440Z adding 'torch/include/ATen/ops/silu_backward_meta_dispatch.h' 2025-01-24T02:56:21.7462310Z adding 'torch/include/ATen/ops/silu_backward_mps_dispatch.h' 2025-01-24T02:56:21.7463500Z adding 'torch/include/ATen/ops/silu_backward_native.h' 2025-01-24T02:56:21.7464700Z adding 'torch/include/ATen/ops/silu_backward_ops.h' 2025-01-24T02:56:21.7465890Z adding 'torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7466950Z adding 'torch/include/ATen/ops/silu_cpu_dispatch.h' 2025-01-24T02:56:21.7467530Z adding 'torch/include/ATen/ops/silu_cuda_dispatch.h' 2025-01-24T02:56:21.7468830Z adding 'torch/include/ATen/ops/silu_meta.h' 2025-01-24T02:56:21.7469710Z adding 'torch/include/ATen/ops/silu_meta_dispatch.h' 2025-01-24T02:56:21.7470870Z adding 'torch/include/ATen/ops/silu_mps_dispatch.h' 2025-01-24T02:56:21.7471920Z adding 'torch/include/ATen/ops/silu_native.h' 2025-01-24T02:56:21.7473100Z adding 'torch/include/ATen/ops/silu_ops.h' 2025-01-24T02:56:21.7474270Z adding 'torch/include/ATen/ops/sin.h' 2025-01-24T02:56:21.7475290Z adding 'torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7476360Z adding 'torch/include/ATen/ops/sin_cpu_dispatch.h' 2025-01-24T02:56:21.7477390Z adding 'torch/include/ATen/ops/sin_cuda_dispatch.h' 2025-01-24T02:56:21.7478290Z adding 'torch/include/ATen/ops/sin_meta.h' 2025-01-24T02:56:21.7479440Z adding 'torch/include/ATen/ops/sin_meta_dispatch.h' 2025-01-24T02:56:21.7480480Z adding 'torch/include/ATen/ops/sin_mps_dispatch.h' 2025-01-24T02:56:21.7481520Z adding 'torch/include/ATen/ops/sin_native.h' 2025-01-24T02:56:21.7482740Z adding 'torch/include/ATen/ops/sin_ops.h' 2025-01-24T02:56:21.7483900Z adding 'torch/include/ATen/ops/sinc.h' 2025-01-24T02:56:21.7484940Z adding 'torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7485780Z adding 'torch/include/ATen/ops/sinc_cpu_dispatch.h' 2025-01-24T02:56:21.7486970Z adding 'torch/include/ATen/ops/sinc_cuda_dispatch.h' 2025-01-24T02:56:21.7487810Z adding 'torch/include/ATen/ops/sinc_meta.h' 2025-01-24T02:56:21.7489040Z adding 'torch/include/ATen/ops/sinc_meta_dispatch.h' 2025-01-24T02:56:21.7490060Z adding 'torch/include/ATen/ops/sinc_native.h' 2025-01-24T02:56:21.7491240Z adding 'torch/include/ATen/ops/sinc_ops.h' 2025-01-24T02:56:21.7492440Z adding 'torch/include/ATen/ops/sinh.h' 2025-01-24T02:56:21.7493450Z adding 'torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7494490Z adding 'torch/include/ATen/ops/sinh_cpu_dispatch.h' 2025-01-24T02:56:21.7495340Z adding 'torch/include/ATen/ops/sinh_cuda_dispatch.h' 2025-01-24T02:56:21.7496440Z adding 'torch/include/ATen/ops/sinh_meta.h' 2025-01-24T02:56:21.7497660Z adding 'torch/include/ATen/ops/sinh_meta_dispatch.h' 2025-01-24T02:56:21.7498230Z adding 'torch/include/ATen/ops/sinh_mps_dispatch.h' 2025-01-24T02:56:21.7499540Z adding 'torch/include/ATen/ops/sinh_native.h' 2025-01-24T02:56:21.7500710Z adding 'torch/include/ATen/ops/sinh_ops.h' 2025-01-24T02:56:21.7501860Z adding 'torch/include/ATen/ops/size.h' 2025-01-24T02:56:21.7503170Z adding 'torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7503700Z adding 'torch/include/ATen/ops/size_native.h' 2025-01-24T02:56:21.7505120Z adding 'torch/include/ATen/ops/size_ops.h' 2025-01-24T02:56:21.7506380Z adding 'torch/include/ATen/ops/slice.h' 2025-01-24T02:56:21.7507730Z adding 'torch/include/ATen/ops/slice_backward.h' 2025-01-24T02:56:21.7509100Z adding 'torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7509850Z adding 'torch/include/ATen/ops/slice_backward_native.h' 2025-01-24T02:56:21.7511230Z adding 'torch/include/ATen/ops/slice_backward_ops.h' 2025-01-24T02:56:21.7512420Z adding 'torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7513650Z adding 'torch/include/ATen/ops/slice_copy.h' 2025-01-24T02:56:21.7514980Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7516260Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7517130Z adding 'torch/include/ATen/ops/slice_copy_native.h' 2025-01-24T02:56:21.7518140Z adding 'torch/include/ATen/ops/slice_copy_ops.h' 2025-01-24T02:56:21.7519470Z adding 'torch/include/ATen/ops/slice_inverse.h' 2025-01-24T02:56:21.7520830Z adding 'torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7521410Z adding 'torch/include/ATen/ops/slice_inverse_native.h' 2025-01-24T02:56:21.7523140Z adding 'torch/include/ATen/ops/slice_inverse_ops.h' 2025-01-24T02:56:21.7524200Z adding 'torch/include/ATen/ops/slice_native.h' 2025-01-24T02:56:21.7525390Z adding 'torch/include/ATen/ops/slice_ops.h' 2025-01-24T02:56:21.7526740Z adding 'torch/include/ATen/ops/slice_scatter.h' 2025-01-24T02:56:21.7528080Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7529340Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7529870Z adding 'torch/include/ATen/ops/slice_scatter_native.h' 2025-01-24T02:56:21.7531360Z adding 'torch/include/ATen/ops/slice_scatter_ops.h' 2025-01-24T02:56:21.7532450Z adding 'torch/include/ATen/ops/slogdet.h' 2025-01-24T02:56:21.7533800Z adding 'torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7534540Z adding 'torch/include/ATen/ops/slogdet_native.h' 2025-01-24T02:56:21.7535830Z adding 'torch/include/ATen/ops/slogdet_ops.h' 2025-01-24T02:56:21.7537210Z adding 'torch/include/ATen/ops/slow_conv3d.h' 2025-01-24T02:56:21.7538640Z adding 'torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7539850Z adding 'torch/include/ATen/ops/slow_conv3d_forward.h' 2025-01-24T02:56:21.7541130Z adding 'torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h' 2025-01-24T02:56:21.7541970Z adding 'torch/include/ATen/ops/slow_conv3d_forward_native.h' 2025-01-24T02:56:21.7543410Z adding 'torch/include/ATen/ops/slow_conv3d_forward_ops.h' 2025-01-24T02:56:21.7544630Z adding 'torch/include/ATen/ops/slow_conv3d_native.h' 2025-01-24T02:56:21.7545830Z adding 'torch/include/ATen/ops/slow_conv3d_ops.h' 2025-01-24T02:56:21.7547240Z adding 'torch/include/ATen/ops/slow_conv_dilated2d.h' 2025-01-24T02:56:21.7548600Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7549720Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h' 2025-01-24T02:56:21.7550590Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h' 2025-01-24T02:56:21.7551810Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_native.h' 2025-01-24T02:56:21.7553060Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_ops.h' 2025-01-24T02:56:21.7558060Z adding 'torch/include/ATen/ops/slow_conv_dilated3d.h' 2025-01-24T02:56:21.7558440Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7558660Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h' 2025-01-24T02:56:21.7558920Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h' 2025-01-24T02:56:21.7559180Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_native.h' 2025-01-24T02:56:21.7560770Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_ops.h' 2025-01-24T02:56:21.7562140Z adding 'torch/include/ATen/ops/slow_conv_transpose2d.h' 2025-01-24T02:56:21.7563520Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7564590Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h' 2025-01-24T02:56:21.7565730Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h' 2025-01-24T02:56:21.7566750Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta.h' 2025-01-24T02:56:21.7567920Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h' 2025-01-24T02:56:21.7568960Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_native.h' 2025-01-24T02:56:21.7570140Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_ops.h' 2025-01-24T02:56:21.7571700Z adding 'torch/include/ATen/ops/slow_conv_transpose3d.h' 2025-01-24T02:56:21.7572970Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h' 2025-01-24T02:56:21.7573840Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h' 2025-01-24T02:56:21.7575040Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_native.h' 2025-01-24T02:56:21.7576240Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_ops.h' 2025-01-24T02:56:21.7577040Z adding 'torch/include/ATen/ops/smm.h' 2025-01-24T02:56:21.7578380Z adding 'torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7578930Z adding 'torch/include/ATen/ops/smm_native.h' 2025-01-24T02:56:21.7580260Z adding 'torch/include/ATen/ops/smm_ops.h' 2025-01-24T02:56:21.7581460Z adding 'torch/include/ATen/ops/smooth_l1_loss.h' 2025-01-24T02:56:21.7582700Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward.h' 2025-01-24T02:56:21.7583720Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7584840Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h' 2025-01-24T02:56:21.7585470Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h' 2025-01-24T02:56:21.7586690Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h' 2025-01-24T02:56:21.7587540Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_native.h' 2025-01-24T02:56:21.7588820Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_ops.h' 2025-01-24T02:56:21.7590230Z adding 'torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7590680Z adding 'torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h' 2025-01-24T02:56:21.7591920Z adding 'torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h' 2025-01-24T02:56:21.7592750Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta.h' 2025-01-24T02:56:21.7594000Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h' 2025-01-24T02:56:21.7594630Z adding 'torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h' 2025-01-24T02:56:21.7595920Z adding 'torch/include/ATen/ops/smooth_l1_loss_native.h' 2025-01-24T02:56:21.7597120Z adding 'torch/include/ATen/ops/smooth_l1_loss_ops.h' 2025-01-24T02:56:21.7597980Z adding 'torch/include/ATen/ops/soft_margin_loss.h' 2025-01-24T02:56:21.7599220Z adding 'torch/include/ATen/ops/soft_margin_loss_backward.h' 2025-01-24T02:56:21.7600270Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7601370Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_native.h' 2025-01-24T02:56:21.7602560Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_ops.h' 2025-01-24T02:56:21.7603290Z adding 'torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7604440Z adding 'torch/include/ATen/ops/soft_margin_loss_native.h' 2025-01-24T02:56:21.7605670Z adding 'torch/include/ATen/ops/soft_margin_loss_ops.h' 2025-01-24T02:56:21.7606570Z adding 'torch/include/ATen/ops/softmax.h' 2025-01-24T02:56:21.7607890Z adding 'torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7608520Z adding 'torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7609730Z adding 'torch/include/ATen/ops/softmax_native.h' 2025-01-24T02:56:21.7610970Z adding 'torch/include/ATen/ops/softmax_ops.h' 2025-01-24T02:56:21.7611900Z adding 'torch/include/ATen/ops/softplus.h' 2025-01-24T02:56:21.7613090Z adding 'torch/include/ATen/ops/softplus_backward.h' 2025-01-24T02:56:21.7614340Z adding 'torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7614890Z adding 'torch/include/ATen/ops/softplus_backward_cpu_dispatch.h' 2025-01-24T02:56:21.7616250Z adding 'torch/include/ATen/ops/softplus_backward_cuda_dispatch.h' 2025-01-24T02:56:21.7617070Z adding 'torch/include/ATen/ops/softplus_backward_meta.h' 2025-01-24T02:56:21.7618340Z adding 'torch/include/ATen/ops/softplus_backward_meta_dispatch.h' 2025-01-24T02:56:21.7618930Z adding 'torch/include/ATen/ops/softplus_backward_mps_dispatch.h' 2025-01-24T02:56:21.7620290Z adding 'torch/include/ATen/ops/softplus_backward_native.h' 2025-01-24T02:56:21.7621520Z adding 'torch/include/ATen/ops/softplus_backward_ops.h' 2025-01-24T02:56:21.7622530Z adding 'torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7623580Z adding 'torch/include/ATen/ops/softplus_cpu_dispatch.h' 2025-01-24T02:56:21.7624460Z adding 'torch/include/ATen/ops/softplus_cuda_dispatch.h' 2025-01-24T02:56:21.7625640Z adding 'torch/include/ATen/ops/softplus_meta.h' 2025-01-24T02:56:21.7626300Z adding 'torch/include/ATen/ops/softplus_meta_dispatch.h' 2025-01-24T02:56:21.7627490Z adding 'torch/include/ATen/ops/softplus_mps_dispatch.h' 2025-01-24T02:56:21.7628350Z adding 'torch/include/ATen/ops/softplus_native.h' 2025-01-24T02:56:21.7629560Z adding 'torch/include/ATen/ops/softplus_ops.h' 2025-01-24T02:56:21.7630420Z adding 'torch/include/ATen/ops/softshrink.h' 2025-01-24T02:56:21.7631680Z adding 'torch/include/ATen/ops/softshrink_backward.h' 2025-01-24T02:56:21.7632770Z adding 'torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7633870Z adding 'torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h' 2025-01-24T02:56:21.7634740Z adding 'torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h' 2025-01-24T02:56:21.7635960Z adding 'torch/include/ATen/ops/softshrink_backward_meta.h' 2025-01-24T02:56:21.7636540Z adding 'torch/include/ATen/ops/softshrink_backward_meta_dispatch.h' 2025-01-24T02:56:21.7637820Z adding 'torch/include/ATen/ops/softshrink_backward_mps_dispatch.h' 2025-01-24T02:56:21.7638660Z adding 'torch/include/ATen/ops/softshrink_backward_native.h' 2025-01-24T02:56:21.7639880Z adding 'torch/include/ATen/ops/softshrink_backward_ops.h' 2025-01-24T02:56:21.7640910Z adding 'torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7641970Z adding 'torch/include/ATen/ops/softshrink_cpu_dispatch.h' 2025-01-24T02:56:21.7642840Z adding 'torch/include/ATen/ops/softshrink_cuda_dispatch.h' 2025-01-24T02:56:21.7644010Z adding 'torch/include/ATen/ops/softshrink_meta.h' 2025-01-24T02:56:21.7644700Z adding 'torch/include/ATen/ops/softshrink_meta_dispatch.h' 2025-01-24T02:56:21.7645880Z adding 'torch/include/ATen/ops/softshrink_mps_dispatch.h' 2025-01-24T02:56:21.7646920Z adding 'torch/include/ATen/ops/softshrink_native.h' 2025-01-24T02:56:21.7647940Z adding 'torch/include/ATen/ops/softshrink_ops.h' 2025-01-24T02:56:21.7649170Z adding 'torch/include/ATen/ops/sort.h' 2025-01-24T02:56:21.7650490Z adding 'torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7651220Z adding 'torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7652500Z adding 'torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7653650Z adding 'torch/include/ATen/ops/sort_cpu_dispatch.h' 2025-01-24T02:56:21.7654210Z adding 'torch/include/ATen/ops/sort_cuda_dispatch.h' 2025-01-24T02:56:21.7655450Z adding 'torch/include/ATen/ops/sort_meta.h' 2025-01-24T02:56:21.7656320Z adding 'torch/include/ATen/ops/sort_meta_dispatch.h' 2025-01-24T02:56:21.7657470Z adding 'torch/include/ATen/ops/sort_mps_dispatch.h' 2025-01-24T02:56:21.7658560Z adding 'torch/include/ATen/ops/sort_native.h' 2025-01-24T02:56:21.7659970Z adding 'torch/include/ATen/ops/sort_ops.h' 2025-01-24T02:56:21.7661190Z adding 'torch/include/ATen/ops/sparse_bsc_tensor.h' 2025-01-24T02:56:21.7662410Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7663480Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_native.h' 2025-01-24T02:56:21.7664670Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_ops.h' 2025-01-24T02:56:21.7665900Z adding 'torch/include/ATen/ops/sparse_bsr_tensor.h' 2025-01-24T02:56:21.7667090Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7667590Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_native.h' 2025-01-24T02:56:21.7669030Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_ops.h' 2025-01-24T02:56:21.7670400Z adding 'torch/include/ATen/ops/sparse_compressed_tensor.h' 2025-01-24T02:56:21.7671760Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7672320Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_native.h' 2025-01-24T02:56:21.7673780Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_ops.h' 2025-01-24T02:56:21.7675000Z adding 'torch/include/ATen/ops/sparse_coo_tensor.h' 2025-01-24T02:56:21.7676210Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7677420Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7677910Z adding 'torch/include/ATen/ops/sparse_coo_tensor_native.h' 2025-01-24T02:56:21.7679450Z adding 'torch/include/ATen/ops/sparse_coo_tensor_ops.h' 2025-01-24T02:56:21.7680650Z adding 'torch/include/ATen/ops/sparse_csc_tensor.h' 2025-01-24T02:56:21.7681850Z adding 'torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7682540Z adding 'torch/include/ATen/ops/sparse_csc_tensor_native.h' 2025-01-24T02:56:21.7683880Z adding 'torch/include/ATen/ops/sparse_csc_tensor_ops.h' 2025-01-24T02:56:21.7685120Z adding 'torch/include/ATen/ops/sparse_csr_tensor.h' 2025-01-24T02:56:21.7686090Z adding 'torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7687190Z adding 'torch/include/ATen/ops/sparse_csr_tensor_native.h' 2025-01-24T02:56:21.7688390Z adding 'torch/include/ATen/ops/sparse_csr_tensor_ops.h' 2025-01-24T02:56:21.7688990Z adding 'torch/include/ATen/ops/sparse_dim.h' 2025-01-24T02:56:21.7690440Z adding 'torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7690990Z adding 'torch/include/ATen/ops/sparse_dim_native.h' 2025-01-24T02:56:21.7692360Z adding 'torch/include/ATen/ops/sparse_dim_ops.h' 2025-01-24T02:56:21.7693230Z adding 'torch/include/ATen/ops/sparse_mask.h' 2025-01-24T02:56:21.7694570Z adding 'torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7695120Z adding 'torch/include/ATen/ops/sparse_mask_native.h' 2025-01-24T02:56:21.7696480Z adding 'torch/include/ATen/ops/sparse_mask_ops.h' 2025-01-24T02:56:21.7697530Z adding 'torch/include/ATen/ops/sparse_resize.h' 2025-01-24T02:56:21.7698770Z adding 'torch/include/ATen/ops/sparse_resize_and_clear.h' 2025-01-24T02:56:21.7699790Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7701020Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h' 2025-01-24T02:56:21.7701510Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_native.h' 2025-01-24T02:56:21.7703010Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_ops.h' 2025-01-24T02:56:21.7704210Z adding 'torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7704720Z adding 'torch/include/ATen/ops/sparse_resize_meta_dispatch.h' 2025-01-24T02:56:21.7706060Z adding 'torch/include/ATen/ops/sparse_resize_native.h' 2025-01-24T02:56:21.7707230Z adding 'torch/include/ATen/ops/sparse_resize_ops.h' 2025-01-24T02:56:21.7708270Z adding 'torch/include/ATen/ops/sparse_sampled_addmm.h' 2025-01-24T02:56:21.7709150Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_native.h' 2025-01-24T02:56:21.7710460Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_ops.h' 2025-01-24T02:56:21.7711300Z adding 'torch/include/ATen/ops/special_airy_ai.h' 2025-01-24T02:56:21.7712730Z adding 'torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7713280Z adding 'torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h' 2025-01-24T02:56:21.7714520Z adding 'torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h' 2025-01-24T02:56:21.7715350Z adding 'torch/include/ATen/ops/special_airy_ai_meta.h' 2025-01-24T02:56:21.7716600Z adding 'torch/include/ATen/ops/special_airy_ai_meta_dispatch.h' 2025-01-24T02:56:21.7717440Z adding 'torch/include/ATen/ops/special_airy_ai_native.h' 2025-01-24T02:56:21.7718640Z adding 'torch/include/ATen/ops/special_airy_ai_ops.h' 2025-01-24T02:56:21.7719670Z adding 'torch/include/ATen/ops/special_bessel_j0.h' 2025-01-24T02:56:21.7720920Z adding 'torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7721460Z adding 'torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h' 2025-01-24T02:56:21.7722740Z adding 'torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h' 2025-01-24T02:56:21.7723560Z adding 'torch/include/ATen/ops/special_bessel_j0_meta.h' 2025-01-24T02:56:21.7724810Z adding 'torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h' 2025-01-24T02:56:21.7725650Z adding 'torch/include/ATen/ops/special_bessel_j0_native.h' 2025-01-24T02:56:21.7726840Z adding 'torch/include/ATen/ops/special_bessel_j0_ops.h' 2025-01-24T02:56:21.7727700Z adding 'torch/include/ATen/ops/special_bessel_j1.h' 2025-01-24T02:56:21.7729020Z adding 'torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7729580Z adding 'torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h' 2025-01-24T02:56:21.7734030Z adding 'torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h' 2025-01-24T02:56:21.7734350Z adding 'torch/include/ATen/ops/special_bessel_j1_meta.h' 2025-01-24T02:56:21.7734560Z adding 'torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h' 2025-01-24T02:56:21.7734740Z adding 'torch/include/ATen/ops/special_bessel_j1_native.h' 2025-01-24T02:56:21.7735100Z adding 'torch/include/ATen/ops/special_bessel_j1_ops.h' 2025-01-24T02:56:21.7735410Z adding 'torch/include/ATen/ops/special_bessel_y0.h' 2025-01-24T02:56:21.7736940Z adding 'torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7737510Z adding 'torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h' 2025-01-24T02:56:21.7738780Z adding 'torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h' 2025-01-24T02:56:21.7739620Z adding 'torch/include/ATen/ops/special_bessel_y0_meta.h' 2025-01-24T02:56:21.7740540Z adding 'torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h' 2025-01-24T02:56:21.7741720Z adding 'torch/include/ATen/ops/special_bessel_y0_native.h' 2025-01-24T02:56:21.7742580Z adding 'torch/include/ATen/ops/special_bessel_y0_ops.h' 2025-01-24T02:56:21.7743770Z adding 'torch/include/ATen/ops/special_bessel_y1.h' 2025-01-24T02:56:21.7745010Z adding 'torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7745470Z adding 'torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h' 2025-01-24T02:56:21.7746810Z adding 'torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h' 2025-01-24T02:56:21.7747410Z adding 'torch/include/ATen/ops/special_bessel_y1_meta.h' 2025-01-24T02:56:21.7748750Z adding 'torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h' 2025-01-24T02:56:21.7749330Z adding 'torch/include/ATen/ops/special_bessel_y1_native.h' 2025-01-24T02:56:21.7750670Z adding 'torch/include/ATen/ops/special_bessel_y1_ops.h' 2025-01-24T02:56:21.7751940Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t.h' 2025-01-24T02:56:21.7752960Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7754250Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7754800Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h' 2025-01-24T02:56:21.7756090Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h' 2025-01-24T02:56:21.7756760Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h' 2025-01-24T02:56:21.7758080Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h' 2025-01-24T02:56:21.7758910Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h' 2025-01-24T02:56:21.7760310Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h' 2025-01-24T02:56:21.7761500Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u.h' 2025-01-24T02:56:21.7762510Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7764060Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7764470Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h' 2025-01-24T02:56:21.7765770Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h' 2025-01-24T02:56:21.7766630Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h' 2025-01-24T02:56:21.7767880Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h' 2025-01-24T02:56:21.7768460Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h' 2025-01-24T02:56:21.7769940Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h' 2025-01-24T02:56:21.7771490Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v.h' 2025-01-24T02:56:21.7772900Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7773510Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7774710Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h' 2025-01-24T02:56:21.7775310Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h' 2025-01-24T02:56:21.7776630Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h' 2025-01-24T02:56:21.7777270Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h' 2025-01-24T02:56:21.7778520Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h' 2025-01-24T02:56:21.7779740Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h' 2025-01-24T02:56:21.7780930Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w.h' 2025-01-24T02:56:21.7781940Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7783230Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7783710Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h' 2025-01-24T02:56:21.7785030Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h' 2025-01-24T02:56:21.7785700Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h' 2025-01-24T02:56:21.7787040Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h' 2025-01-24T02:56:21.7787760Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h' 2025-01-24T02:56:21.7789230Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h' 2025-01-24T02:56:21.7790370Z adding 'torch/include/ATen/ops/special_digamma.h' 2025-01-24T02:56:21.7791590Z adding 'torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7792230Z adding 'torch/include/ATen/ops/special_digamma_native.h' 2025-01-24T02:56:21.7793560Z adding 'torch/include/ATen/ops/special_digamma_ops.h' 2025-01-24T02:56:21.7794740Z adding 'torch/include/ATen/ops/special_entr.h' 2025-01-24T02:56:21.7795610Z adding 'torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7796690Z adding 'torch/include/ATen/ops/special_entr_cpu_dispatch.h' 2025-01-24T02:56:21.7797560Z adding 'torch/include/ATen/ops/special_entr_cuda_dispatch.h' 2025-01-24T02:56:21.7798730Z adding 'torch/include/ATen/ops/special_entr_meta.h' 2025-01-24T02:56:21.7799800Z adding 'torch/include/ATen/ops/special_entr_meta_dispatch.h' 2025-01-24T02:56:21.7800320Z adding 'torch/include/ATen/ops/special_entr_native.h' 2025-01-24T02:56:21.7801640Z adding 'torch/include/ATen/ops/special_entr_ops.h' 2025-01-24T02:56:21.7802670Z adding 'torch/include/ATen/ops/special_erf.h' 2025-01-24T02:56:21.7803670Z adding 'torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7804760Z adding 'torch/include/ATen/ops/special_erf_native.h' 2025-01-24T02:56:21.7805860Z adding 'torch/include/ATen/ops/special_erf_ops.h' 2025-01-24T02:56:21.7806810Z adding 'torch/include/ATen/ops/special_erfc.h' 2025-01-24T02:56:21.7808120Z adding 'torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7808630Z adding 'torch/include/ATen/ops/special_erfc_native.h' 2025-01-24T02:56:21.7809970Z adding 'torch/include/ATen/ops/special_erfc_ops.h' 2025-01-24T02:56:21.7810830Z adding 'torch/include/ATen/ops/special_erfcx.h' 2025-01-24T02:56:21.7812400Z adding 'torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7812890Z adding 'torch/include/ATen/ops/special_erfcx_cpu_dispatch.h' 2025-01-24T02:56:21.7814120Z adding 'torch/include/ATen/ops/special_erfcx_cuda_dispatch.h' 2025-01-24T02:56:21.7814950Z adding 'torch/include/ATen/ops/special_erfcx_meta.h' 2025-01-24T02:56:21.7816200Z adding 'torch/include/ATen/ops/special_erfcx_meta_dispatch.h' 2025-01-24T02:56:21.7817060Z adding 'torch/include/ATen/ops/special_erfcx_native.h' 2025-01-24T02:56:21.7818240Z adding 'torch/include/ATen/ops/special_erfcx_ops.h' 2025-01-24T02:56:21.7819290Z adding 'torch/include/ATen/ops/special_erfinv.h' 2025-01-24T02:56:21.7820110Z adding 'torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7821300Z adding 'torch/include/ATen/ops/special_erfinv_native.h' 2025-01-24T02:56:21.7822160Z adding 'torch/include/ATen/ops/special_erfinv_ops.h' 2025-01-24T02:56:21.7823350Z adding 'torch/include/ATen/ops/special_exp2.h' 2025-01-24T02:56:21.7824360Z adding 'torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7825100Z adding 'torch/include/ATen/ops/special_exp2_native.h' 2025-01-24T02:56:21.7826360Z adding 'torch/include/ATen/ops/special_exp2_ops.h' 2025-01-24T02:56:21.7827420Z adding 'torch/include/ATen/ops/special_expit.h' 2025-01-24T02:56:21.7828430Z adding 'torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7829520Z adding 'torch/include/ATen/ops/special_expit_native.h' 2025-01-24T02:56:21.7830380Z adding 'torch/include/ATen/ops/special_expit_ops.h' 2025-01-24T02:56:21.7831480Z adding 'torch/include/ATen/ops/special_expm1.h' 2025-01-24T02:56:21.7832490Z adding 'torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7833690Z adding 'torch/include/ATen/ops/special_expm1_native.h' 2025-01-24T02:56:21.7834260Z adding 'torch/include/ATen/ops/special_expm1_ops.h' 2025-01-24T02:56:21.7835590Z adding 'torch/include/ATen/ops/special_gammainc.h' 2025-01-24T02:56:21.7836770Z adding 'torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7837340Z adding 'torch/include/ATen/ops/special_gammainc_native.h' 2025-01-24T02:56:21.7838690Z adding 'torch/include/ATen/ops/special_gammainc_ops.h' 2025-01-24T02:56:21.7839550Z adding 'torch/include/ATen/ops/special_gammaincc.h' 2025-01-24T02:56:21.7840860Z adding 'torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7841470Z adding 'torch/include/ATen/ops/special_gammaincc_native.h' 2025-01-24T02:56:21.7842790Z adding 'torch/include/ATen/ops/special_gammaincc_ops.h' 2025-01-24T02:56:21.7843650Z adding 'torch/include/ATen/ops/special_gammaln.h' 2025-01-24T02:56:21.7845010Z adding 'torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7845530Z adding 'torch/include/ATen/ops/special_gammaln_native.h' 2025-01-24T02:56:21.7846860Z adding 'torch/include/ATen/ops/special_gammaln_ops.h' 2025-01-24T02:56:21.7848110Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h.h' 2025-01-24T02:56:21.7849460Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7850140Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7851260Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h' 2025-01-24T02:56:21.7852130Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h' 2025-01-24T02:56:21.7853310Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta.h' 2025-01-24T02:56:21.7853950Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h' 2025-01-24T02:56:21.7855270Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_native.h' 2025-01-24T02:56:21.7856540Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_ops.h' 2025-01-24T02:56:21.7857810Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he.h' 2025-01-24T02:56:21.7858820Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7860110Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7860570Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h' 2025-01-24T02:56:21.7861830Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h' 2025-01-24T02:56:21.7862480Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta.h' 2025-01-24T02:56:21.7864430Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h' 2025-01-24T02:56:21.7865640Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_native.h' 2025-01-24T02:56:21.7866950Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_ops.h' 2025-01-24T02:56:21.7868070Z adding 'torch/include/ATen/ops/special_i0.h' 2025-01-24T02:56:21.7869440Z adding 'torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7870030Z adding 'torch/include/ATen/ops/special_i0_native.h' 2025-01-24T02:56:21.7871480Z adding 'torch/include/ATen/ops/special_i0_ops.h' 2025-01-24T02:56:21.7872690Z adding 'torch/include/ATen/ops/special_i0e.h' 2025-01-24T02:56:21.7873750Z adding 'torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7874860Z adding 'torch/include/ATen/ops/special_i0e_cpu_dispatch.h' 2025-01-24T02:56:21.7875730Z adding 'torch/include/ATen/ops/special_i0e_cuda_dispatch.h' 2025-01-24T02:56:21.7876930Z adding 'torch/include/ATen/ops/special_i0e_meta.h' 2025-01-24T02:56:21.7878010Z adding 'torch/include/ATen/ops/special_i0e_meta_dispatch.h' 2025-01-24T02:56:21.7878850Z adding 'torch/include/ATen/ops/special_i0e_native.h' 2025-01-24T02:56:21.7880210Z adding 'torch/include/ATen/ops/special_i0e_ops.h' 2025-01-24T02:56:21.7881290Z adding 'torch/include/ATen/ops/special_i1.h' 2025-01-24T02:56:21.7882710Z adding 'torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7883240Z adding 'torch/include/ATen/ops/special_i1_cpu_dispatch.h' 2025-01-24T02:56:21.7884600Z adding 'torch/include/ATen/ops/special_i1_cuda_dispatch.h' 2025-01-24T02:56:21.7885790Z adding 'torch/include/ATen/ops/special_i1_meta.h' 2025-01-24T02:56:21.7886400Z adding 'torch/include/ATen/ops/special_i1_meta_dispatch.h' 2025-01-24T02:56:21.7887680Z adding 'torch/include/ATen/ops/special_i1_mps_dispatch.h' 2025-01-24T02:56:21.7888540Z adding 'torch/include/ATen/ops/special_i1_native.h' 2025-01-24T02:56:21.7889820Z adding 'torch/include/ATen/ops/special_i1_ops.h' 2025-01-24T02:56:21.7891020Z adding 'torch/include/ATen/ops/special_i1e.h' 2025-01-24T02:56:21.7892070Z adding 'torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7893140Z adding 'torch/include/ATen/ops/special_i1e_cpu_dispatch.h' 2025-01-24T02:56:21.7894010Z adding 'torch/include/ATen/ops/special_i1e_cuda_dispatch.h' 2025-01-24T02:56:21.7895190Z adding 'torch/include/ATen/ops/special_i1e_meta.h' 2025-01-24T02:56:21.7896260Z adding 'torch/include/ATen/ops/special_i1e_meta_dispatch.h' 2025-01-24T02:56:21.7897100Z adding 'torch/include/ATen/ops/special_i1e_native.h' 2025-01-24T02:56:21.7898330Z adding 'torch/include/ATen/ops/special_i1e_ops.h' 2025-01-24T02:56:21.7899620Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l.h' 2025-01-24T02:56:21.7900980Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7901780Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7906440Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h' 2025-01-24T02:56:21.7906870Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h' 2025-01-24T02:56:21.7907090Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h' 2025-01-24T02:56:21.7907350Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h' 2025-01-24T02:56:21.7907580Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_native.h' 2025-01-24T02:56:21.7908130Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h' 2025-01-24T02:56:21.7909590Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p.h' 2025-01-24T02:56:21.7911010Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.7911710Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7912960Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h' 2025-01-24T02:56:21.7913800Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h' 2025-01-24T02:56:21.7914980Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta.h' 2025-01-24T02:56:21.7915880Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h' 2025-01-24T02:56:21.7917160Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_native.h' 2025-01-24T02:56:21.7918460Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_ops.h' 2025-01-24T02:56:21.7919600Z adding 'torch/include/ATen/ops/special_log1p.h' 2025-01-24T02:56:21.7920780Z adding 'torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7921380Z adding 'torch/include/ATen/ops/special_log1p_native.h' 2025-01-24T02:56:21.7922800Z adding 'torch/include/ATen/ops/special_log1p_ops.h' 2025-01-24T02:56:21.7923880Z adding 'torch/include/ATen/ops/special_log_ndtr.h' 2025-01-24T02:56:21.7925160Z adding 'torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7926250Z adding 'torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h' 2025-01-24T02:56:21.7927180Z adding 'torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h' 2025-01-24T02:56:21.7928130Z adding 'torch/include/ATen/ops/special_log_ndtr_meta.h' 2025-01-24T02:56:21.7929370Z adding 'torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h' 2025-01-24T02:56:21.7930220Z adding 'torch/include/ATen/ops/special_log_ndtr_native.h' 2025-01-24T02:56:21.7931440Z adding 'torch/include/ATen/ops/special_log_ndtr_ops.h' 2025-01-24T02:56:21.7932650Z adding 'torch/include/ATen/ops/special_log_softmax.h' 2025-01-24T02:56:21.7933850Z adding 'torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7934440Z adding 'torch/include/ATen/ops/special_log_softmax_native.h' 2025-01-24T02:56:21.7935860Z adding 'torch/include/ATen/ops/special_log_softmax_ops.h' 2025-01-24T02:56:21.7937030Z adding 'torch/include/ATen/ops/special_logit.h' 2025-01-24T02:56:21.7938040Z adding 'torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7939130Z adding 'torch/include/ATen/ops/special_logit_native.h' 2025-01-24T02:56:21.7940370Z adding 'torch/include/ATen/ops/special_logit_ops.h' 2025-01-24T02:56:21.7941410Z adding 'torch/include/ATen/ops/special_logsumexp.h' 2025-01-24T02:56:21.7942610Z adding 'torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7943240Z adding 'torch/include/ATen/ops/special_logsumexp_native.h' 2025-01-24T02:56:21.7944630Z adding 'torch/include/ATen/ops/special_logsumexp_ops.h' 2025-01-24T02:56:21.7945870Z adding 'torch/include/ATen/ops/special_modified_bessel_i0.h' 2025-01-24T02:56:21.7946990Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7947660Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h' 2025-01-24T02:56:21.7948930Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h' 2025-01-24T02:56:21.7950100Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta.h' 2025-01-24T02:56:21.7950690Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h' 2025-01-24T02:56:21.7951990Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_native.h' 2025-01-24T02:56:21.7953290Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_ops.h' 2025-01-24T02:56:21.7953970Z adding 'torch/include/ATen/ops/special_modified_bessel_i1.h' 2025-01-24T02:56:21.7955590Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7956210Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h' 2025-01-24T02:56:21.7957570Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h' 2025-01-24T02:56:21.7958770Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta.h' 2025-01-24T02:56:21.7959690Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h' 2025-01-24T02:56:21.7960890Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_native.h' 2025-01-24T02:56:21.7962100Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_ops.h' 2025-01-24T02:56:21.7962940Z adding 'torch/include/ATen/ops/special_modified_bessel_k0.h' 2025-01-24T02:56:21.7964360Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7965500Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h' 2025-01-24T02:56:21.7966150Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h' 2025-01-24T02:56:21.7967440Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta.h' 2025-01-24T02:56:21.7968350Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h' 2025-01-24T02:56:21.7969540Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_native.h' 2025-01-24T02:56:21.7970740Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_ops.h' 2025-01-24T02:56:21.7971600Z adding 'torch/include/ATen/ops/special_modified_bessel_k1.h' 2025-01-24T02:56:21.7973150Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7973740Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h' 2025-01-24T02:56:21.7975030Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h' 2025-01-24T02:56:21.7976220Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta.h' 2025-01-24T02:56:21.7976830Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h' 2025-01-24T02:56:21.7978120Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_native.h' 2025-01-24T02:56:21.7979320Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_ops.h' 2025-01-24T02:56:21.7980160Z adding 'torch/include/ATen/ops/special_multigammaln.h' 2025-01-24T02:56:21.7981540Z adding 'torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7982630Z adding 'torch/include/ATen/ops/special_multigammaln_native.h' 2025-01-24T02:56:21.7983500Z adding 'torch/include/ATen/ops/special_multigammaln_ops.h' 2025-01-24T02:56:21.7984670Z adding 'torch/include/ATen/ops/special_ndtr.h' 2025-01-24T02:56:21.7986020Z adding 'torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.7986570Z adding 'torch/include/ATen/ops/special_ndtr_native.h' 2025-01-24T02:56:21.7987990Z adding 'torch/include/ATen/ops/special_ndtr_ops.h' 2025-01-24T02:56:21.7989080Z adding 'torch/include/ATen/ops/special_ndtri.h' 2025-01-24T02:56:21.7990540Z adding 'torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.7991060Z adding 'torch/include/ATen/ops/special_ndtri_cpu_dispatch.h' 2025-01-24T02:56:21.7992380Z adding 'torch/include/ATen/ops/special_ndtri_cuda_dispatch.h' 2025-01-24T02:56:21.7993560Z adding 'torch/include/ATen/ops/special_ndtri_meta.h' 2025-01-24T02:56:21.7994460Z adding 'torch/include/ATen/ops/special_ndtri_meta_dispatch.h' 2025-01-24T02:56:21.7995650Z adding 'torch/include/ATen/ops/special_ndtri_native.h' 2025-01-24T02:56:21.7996510Z adding 'torch/include/ATen/ops/special_ndtri_ops.h' 2025-01-24T02:56:21.7997760Z adding 'torch/include/ATen/ops/special_polygamma.h' 2025-01-24T02:56:21.7999020Z adding 'torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8000110Z adding 'torch/include/ATen/ops/special_polygamma_native.h' 2025-01-24T02:56:21.8000960Z adding 'torch/include/ATen/ops/special_polygamma_ops.h' 2025-01-24T02:56:21.8002190Z adding 'torch/include/ATen/ops/special_psi.h' 2025-01-24T02:56:21.8003510Z adding 'torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8004100Z adding 'torch/include/ATen/ops/special_psi_native.h' 2025-01-24T02:56:21.8005480Z adding 'torch/include/ATen/ops/special_psi_ops.h' 2025-01-24T02:56:21.8006690Z adding 'torch/include/ATen/ops/special_round.h' 2025-01-24T02:56:21.8007920Z adding 'torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8008680Z adding 'torch/include/ATen/ops/special_round_native.h' 2025-01-24T02:56:21.8009970Z adding 'torch/include/ATen/ops/special_round_ops.h' 2025-01-24T02:56:21.8011150Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0.h' 2025-01-24T02:56:21.8012600Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8013130Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h' 2025-01-24T02:56:21.8014460Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h' 2025-01-24T02:56:21.8015650Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h' 2025-01-24T02:56:21.8016290Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h' 2025-01-24T02:56:21.8018000Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h' 2025-01-24T02:56:21.8019280Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h' 2025-01-24T02:56:21.8020460Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1.h' 2025-01-24T02:56:21.8021560Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8022720Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h' 2025-01-24T02:56:21.8023950Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h' 2025-01-24T02:56:21.8024570Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h' 2025-01-24T02:56:21.8025990Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h' 2025-01-24T02:56:21.8027180Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h' 2025-01-24T02:56:21.8028330Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h' 2025-01-24T02:56:21.8029540Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h' 2025-01-24T02:56:21.8030900Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8031710Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8032940Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h' 2025-01-24T02:56:21.8034160Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h' 2025-01-24T02:56:21.8034810Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h' 2025-01-24T02:56:21.8036260Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h' 2025-01-24T02:56:21.8036980Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h' 2025-01-24T02:56:21.8038610Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h' 2025-01-24T02:56:21.8039850Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h' 2025-01-24T02:56:21.8041200Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8042000Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8043230Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h' 2025-01-24T02:56:21.8044500Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h' 2025-01-24T02:56:21.8045060Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h' 2025-01-24T02:56:21.8046420Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h' 2025-01-24T02:56:21.8047640Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h' 2025-01-24T02:56:21.8048840Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h' 2025-01-24T02:56:21.8050050Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h' 2025-01-24T02:56:21.8051400Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8052220Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8053390Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h' 2025-01-24T02:56:21.8054270Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h' 2025-01-24T02:56:21.8055510Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h' 2025-01-24T02:56:21.8056440Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h' 2025-01-24T02:56:21.8057700Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h' 2025-01-24T02:56:21.8059090Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h' 2025-01-24T02:56:21.8060370Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h' 2025-01-24T02:56:21.8061730Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8062560Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8063820Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h' 2025-01-24T02:56:21.8064690Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h' 2025-01-24T02:56:21.8065940Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h' 2025-01-24T02:56:21.8067180Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h' 2025-01-24T02:56:21.8068050Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h' 2025-01-24T02:56:21.8069520Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h' 2025-01-24T02:56:21.8070610Z adding 'torch/include/ATen/ops/special_sinc.h' 2025-01-24T02:56:21.8071630Z adding 'torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8072720Z adding 'torch/include/ATen/ops/special_sinc_native.h' 2025-01-24T02:56:21.8073930Z adding 'torch/include/ATen/ops/special_sinc_ops.h' 2025-01-24T02:56:21.8075030Z adding 'torch/include/ATen/ops/special_softmax.h' 2025-01-24T02:56:21.8076080Z adding 'torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8077230Z adding 'torch/include/ATen/ops/special_softmax_native.h' 2025-01-24T02:56:21.8078440Z adding 'torch/include/ATen/ops/special_softmax_ops.h' 2025-01-24T02:56:21.8079570Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0.h' 2025-01-24T02:56:21.8081020Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8081560Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h' 2025-01-24T02:56:21.8082870Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h' 2025-01-24T02:56:21.8084020Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta.h' 2025-01-24T02:56:21.8088250Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h' 2025-01-24T02:56:21.8088650Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_native.h' 2025-01-24T02:56:21.8088910Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_ops.h' 2025-01-24T02:56:21.8089170Z adding 'torch/include/ATen/ops/special_xlog1py.h' 2025-01-24T02:56:21.8089470Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8090700Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8091580Z adding 'torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h' 2025-01-24T02:56:21.8092610Z adding 'torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h' 2025-01-24T02:56:21.8093680Z adding 'torch/include/ATen/ops/special_xlog1py_meta.h' 2025-01-24T02:56:21.8094780Z adding 'torch/include/ATen/ops/special_xlog1py_meta_dispatch.h' 2025-01-24T02:56:21.8095850Z adding 'torch/include/ATen/ops/special_xlog1py_native.h' 2025-01-24T02:56:21.8097190Z adding 'torch/include/ATen/ops/special_xlog1py_ops.h' 2025-01-24T02:56:21.8098410Z adding 'torch/include/ATen/ops/special_xlogy.h' 2025-01-24T02:56:21.8099720Z adding 'torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8100690Z adding 'torch/include/ATen/ops/special_xlogy_native.h' 2025-01-24T02:56:21.8102050Z adding 'torch/include/ATen/ops/special_xlogy_ops.h' 2025-01-24T02:56:21.8103270Z adding 'torch/include/ATen/ops/special_zeta.h' 2025-01-24T02:56:21.8104560Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8105770Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8106710Z adding 'torch/include/ATen/ops/special_zeta_cpu_dispatch.h' 2025-01-24T02:56:21.8107720Z adding 'torch/include/ATen/ops/special_zeta_cuda_dispatch.h' 2025-01-24T02:56:21.8108760Z adding 'torch/include/ATen/ops/special_zeta_meta.h' 2025-01-24T02:56:21.8109840Z adding 'torch/include/ATen/ops/special_zeta_meta_dispatch.h' 2025-01-24T02:56:21.8111090Z adding 'torch/include/ATen/ops/special_zeta_native.h' 2025-01-24T02:56:21.8112430Z adding 'torch/include/ATen/ops/special_zeta_ops.h' 2025-01-24T02:56:21.8113730Z adding 'torch/include/ATen/ops/split.h' 2025-01-24T02:56:21.8115070Z adding 'torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8115930Z adding 'torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8117210Z adding 'torch/include/ATen/ops/split_copy.h' 2025-01-24T02:56:21.8118510Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8119830Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8120310Z adding 'torch/include/ATen/ops/split_copy_native.h' 2025-01-24T02:56:21.8121770Z adding 'torch/include/ATen/ops/split_copy_ops.h' 2025-01-24T02:56:21.8122830Z adding 'torch/include/ATen/ops/split_native.h' 2025-01-24T02:56:21.8124050Z adding 'torch/include/ATen/ops/split_ops.h' 2025-01-24T02:56:21.8125270Z adding 'torch/include/ATen/ops/split_with_sizes.h' 2025-01-24T02:56:21.8126560Z adding 'torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8127700Z adding 'torch/include/ATen/ops/split_with_sizes_copy.h' 2025-01-24T02:56:21.8129100Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8130360Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8131450Z adding 'torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h' 2025-01-24T02:56:21.8132290Z adding 'torch/include/ATen/ops/split_with_sizes_copy_native.h' 2025-01-24T02:56:21.8133570Z adding 'torch/include/ATen/ops/split_with_sizes_copy_ops.h' 2025-01-24T02:56:21.8134740Z adding 'torch/include/ATen/ops/split_with_sizes_native.h' 2025-01-24T02:56:21.8135900Z adding 'torch/include/ATen/ops/split_with_sizes_ops.h' 2025-01-24T02:56:21.8136730Z adding 'torch/include/ATen/ops/sqrt.h' 2025-01-24T02:56:21.8138190Z adding 'torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8138850Z adding 'torch/include/ATen/ops/sqrt_cpu_dispatch.h' 2025-01-24T02:56:21.8140170Z adding 'torch/include/ATen/ops/sqrt_cuda_dispatch.h' 2025-01-24T02:56:21.8141260Z adding 'torch/include/ATen/ops/sqrt_meta.h' 2025-01-24T02:56:21.8142420Z adding 'torch/include/ATen/ops/sqrt_meta_dispatch.h' 2025-01-24T02:56:21.8143440Z adding 'torch/include/ATen/ops/sqrt_mps_dispatch.h' 2025-01-24T02:56:21.8144480Z adding 'torch/include/ATen/ops/sqrt_native.h' 2025-01-24T02:56:21.8145660Z adding 'torch/include/ATen/ops/sqrt_ops.h' 2025-01-24T02:56:21.8146800Z adding 'torch/include/ATen/ops/square.h' 2025-01-24T02:56:21.8148150Z adding 'torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8148890Z adding 'torch/include/ATen/ops/square_native.h' 2025-01-24T02:56:21.8150190Z adding 'torch/include/ATen/ops/square_ops.h' 2025-01-24T02:56:21.8151350Z adding 'torch/include/ATen/ops/squeeze.h' 2025-01-24T02:56:21.8152690Z adding 'torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8153560Z adding 'torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8154820Z adding 'torch/include/ATen/ops/squeeze_copy.h' 2025-01-24T02:56:21.8156080Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8157330Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8157990Z adding 'torch/include/ATen/ops/squeeze_copy_native.h' 2025-01-24T02:56:21.8159550Z adding 'torch/include/ATen/ops/squeeze_copy_ops.h' 2025-01-24T02:56:21.8160730Z adding 'torch/include/ATen/ops/squeeze_native.h' 2025-01-24T02:56:21.8162090Z adding 'torch/include/ATen/ops/squeeze_ops.h' 2025-01-24T02:56:21.8163380Z adding 'torch/include/ATen/ops/sspaddmm.h' 2025-01-24T02:56:21.8164700Z adding 'torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8165780Z adding 'torch/include/ATen/ops/sspaddmm_cpu_dispatch.h' 2025-01-24T02:56:21.8166950Z adding 'torch/include/ATen/ops/sspaddmm_cuda_dispatch.h' 2025-01-24T02:56:21.8168130Z adding 'torch/include/ATen/ops/sspaddmm_native.h' 2025-01-24T02:56:21.8169330Z adding 'torch/include/ATen/ops/sspaddmm_ops.h' 2025-01-24T02:56:21.8170500Z adding 'torch/include/ATen/ops/stack.h' 2025-01-24T02:56:21.8171820Z adding 'torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8172930Z adding 'torch/include/ATen/ops/stack_native.h' 2025-01-24T02:56:21.8174120Z adding 'torch/include/ATen/ops/stack_ops.h' 2025-01-24T02:56:21.8175410Z adding 'torch/include/ATen/ops/std.h' 2025-01-24T02:56:21.8176730Z adding 'torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8177870Z adding 'torch/include/ATen/ops/std_cpu_dispatch.h' 2025-01-24T02:56:21.8178920Z adding 'torch/include/ATen/ops/std_cuda_dispatch.h' 2025-01-24T02:56:21.8180000Z adding 'torch/include/ATen/ops/std_mean.h' 2025-01-24T02:56:21.8181370Z adding 'torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8182090Z adding 'torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8183430Z adding 'torch/include/ATen/ops/std_mean_cpu_dispatch.h' 2025-01-24T02:56:21.8184660Z adding 'torch/include/ATen/ops/std_mean_cuda_dispatch.h' 2025-01-24T02:56:21.8185270Z adding 'torch/include/ATen/ops/std_mean_mps_dispatch.h' 2025-01-24T02:56:21.8186700Z adding 'torch/include/ATen/ops/std_mean_native.h' 2025-01-24T02:56:21.8188070Z adding 'torch/include/ATen/ops/std_mean_ops.h' 2025-01-24T02:56:21.8189150Z adding 'torch/include/ATen/ops/std_mps_dispatch.h' 2025-01-24T02:56:21.8190290Z adding 'torch/include/ATen/ops/std_native.h' 2025-01-24T02:56:21.8191710Z adding 'torch/include/ATen/ops/std_ops.h' 2025-01-24T02:56:21.8192940Z adding 'torch/include/ATen/ops/stft.h' 2025-01-24T02:56:21.8193920Z adding 'torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8195060Z adding 'torch/include/ATen/ops/stft_native.h' 2025-01-24T02:56:21.8196260Z adding 'torch/include/ATen/ops/stft_ops.h' 2025-01-24T02:56:21.8197100Z adding 'torch/include/ATen/ops/stride.h' 2025-01-24T02:56:21.8198470Z adding 'torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8199230Z adding 'torch/include/ATen/ops/stride_native.h' 2025-01-24T02:56:21.8200470Z adding 'torch/include/ATen/ops/stride_ops.h' 2025-01-24T02:56:21.8201820Z adding 'torch/include/ATen/ops/sub.h' 2025-01-24T02:56:21.8203200Z adding 'torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8203890Z adding 'torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8205070Z adding 'torch/include/ATen/ops/sub_cpu_dispatch.h' 2025-01-24T02:56:21.8206010Z adding 'torch/include/ATen/ops/sub_cuda_dispatch.h' 2025-01-24T02:56:21.8207040Z adding 'torch/include/ATen/ops/sub_meta.h' 2025-01-24T02:56:21.8207900Z adding 'torch/include/ATen/ops/sub_meta_dispatch.h' 2025-01-24T02:56:21.8209110Z adding 'torch/include/ATen/ops/sub_mps_dispatch.h' 2025-01-24T02:56:21.8210140Z adding 'torch/include/ATen/ops/sub_native.h' 2025-01-24T02:56:21.8211400Z adding 'torch/include/ATen/ops/sub_ops.h' 2025-01-24T02:56:21.8212320Z adding 'torch/include/ATen/ops/subtract.h' 2025-01-24T02:56:21.8213710Z adding 'torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8214450Z adding 'torch/include/ATen/ops/subtract_native.h' 2025-01-24T02:56:21.8215850Z adding 'torch/include/ATen/ops/subtract_ops.h' 2025-01-24T02:56:21.8217000Z adding 'torch/include/ATen/ops/sum.h' 2025-01-24T02:56:21.8218320Z adding 'torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8218990Z adding 'torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8220230Z adding 'torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8221040Z adding 'torch/include/ATen/ops/sum_cpu_dispatch.h' 2025-01-24T02:56:21.8222180Z adding 'torch/include/ATen/ops/sum_cuda_dispatch.h' 2025-01-24T02:56:21.8223210Z adding 'torch/include/ATen/ops/sum_meta.h' 2025-01-24T02:56:21.8224100Z adding 'torch/include/ATen/ops/sum_meta_dispatch.h' 2025-01-24T02:56:21.8225240Z adding 'torch/include/ATen/ops/sum_mps_dispatch.h' 2025-01-24T02:56:21.8226330Z adding 'torch/include/ATen/ops/sum_native.h' 2025-01-24T02:56:21.8227630Z adding 'torch/include/ATen/ops/sum_ops.h' 2025-01-24T02:56:21.8228570Z adding 'torch/include/ATen/ops/sum_to_size.h' 2025-01-24T02:56:21.8229860Z adding 'torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8230470Z adding 'torch/include/ATen/ops/sum_to_size_native.h' 2025-01-24T02:56:21.8231810Z adding 'torch/include/ATen/ops/sum_to_size_ops.h' 2025-01-24T02:56:21.8232880Z adding 'torch/include/ATen/ops/svd.h' 2025-01-24T02:56:21.8234230Z adding 'torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8234720Z adding 'torch/include/ATen/ops/svd_native.h' 2025-01-24T02:56:21.8236160Z adding 'torch/include/ATen/ops/svd_ops.h' 2025-01-24T02:56:21.8237030Z adding 'torch/include/ATen/ops/swapaxes.h' 2025-01-24T02:56:21.8238470Z adding 'torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8239020Z adding 'torch/include/ATen/ops/swapaxes_native.h' 2025-01-24T02:56:21.8240440Z adding 'torch/include/ATen/ops/swapaxes_ops.h' 2025-01-24T02:56:21.8241480Z adding 'torch/include/ATen/ops/swapdims.h' 2025-01-24T02:56:21.8242670Z adding 'torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8243270Z adding 'torch/include/ATen/ops/swapdims_native.h' 2025-01-24T02:56:21.8244660Z adding 'torch/include/ATen/ops/swapdims_ops.h' 2025-01-24T02:56:21.8245790Z adding 'torch/include/ATen/ops/sym_constrain_range.h' 2025-01-24T02:56:21.8247110Z adding 'torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8247610Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size.h' 2025-01-24T02:56:21.8249030Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8249640Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_native.h' 2025-01-24T02:56:21.8251020Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_ops.h' 2025-01-24T02:56:21.8251710Z adding 'torch/include/ATen/ops/sym_constrain_range_native.h' 2025-01-24T02:56:21.8253080Z adding 'torch/include/ATen/ops/sym_constrain_range_ops.h' 2025-01-24T02:56:21.8253920Z adding 'torch/include/ATen/ops/sym_numel.h' 2025-01-24T02:56:21.8255320Z adding 'torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8255880Z adding 'torch/include/ATen/ops/sym_numel_native.h' 2025-01-24T02:56:21.8257250Z adding 'torch/include/ATen/ops/sym_numel_ops.h' 2025-01-24T02:56:21.8258340Z adding 'torch/include/ATen/ops/sym_size.h' 2025-01-24T02:56:21.8259180Z adding 'torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8260240Z adding 'torch/include/ATen/ops/sym_size_native.h' 2025-01-24T02:56:21.8261340Z adding 'torch/include/ATen/ops/sym_size_ops.h' 2025-01-24T02:56:21.8262460Z adding 'torch/include/ATen/ops/sym_storage_offset.h' 2025-01-24T02:56:21.8263470Z adding 'torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8264120Z adding 'torch/include/ATen/ops/sym_storage_offset_native.h' 2025-01-24T02:56:21.8265450Z adding 'torch/include/ATen/ops/sym_storage_offset_ops.h' 2025-01-24T02:56:21.8266240Z adding 'torch/include/ATen/ops/sym_stride.h' 2025-01-24T02:56:21.8267650Z adding 'torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8272050Z adding 'torch/include/ATen/ops/sym_stride_native.h' 2025-01-24T02:56:21.8272360Z adding 'torch/include/ATen/ops/sym_stride_ops.h' 2025-01-24T02:56:21.8272470Z adding 'torch/include/ATen/ops/t.h' 2025-01-24T02:56:21.8272710Z adding 'torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8272830Z adding 'torch/include/ATen/ops/t_copy.h' 2025-01-24T02:56:21.8273830Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8275620Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8276190Z adding 'torch/include/ATen/ops/t_copy_native.h' 2025-01-24T02:56:21.8277570Z adding 'torch/include/ATen/ops/t_copy_ops.h' 2025-01-24T02:56:21.8278420Z adding 'torch/include/ATen/ops/t_native.h' 2025-01-24T02:56:21.8279660Z adding 'torch/include/ATen/ops/t_ops.h' 2025-01-24T02:56:21.8280870Z adding 'torch/include/ATen/ops/take.h' 2025-01-24T02:56:21.8281760Z adding 'torch/include/ATen/ops/take_along_dim.h' 2025-01-24T02:56:21.8283090Z adding 'torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8283850Z adding 'torch/include/ATen/ops/take_along_dim_native.h' 2025-01-24T02:56:21.8285170Z adding 'torch/include/ATen/ops/take_along_dim_ops.h' 2025-01-24T02:56:21.8286040Z adding 'torch/include/ATen/ops/take_cpu_dispatch.h' 2025-01-24T02:56:21.8287290Z adding 'torch/include/ATen/ops/take_cuda_dispatch.h' 2025-01-24T02:56:21.8288130Z adding 'torch/include/ATen/ops/take_native.h' 2025-01-24T02:56:21.8289340Z adding 'torch/include/ATen/ops/take_ops.h' 2025-01-24T02:56:21.8290190Z adding 'torch/include/ATen/ops/tan.h' 2025-01-24T02:56:21.8291570Z adding 'torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8292140Z adding 'torch/include/ATen/ops/tan_cpu_dispatch.h' 2025-01-24T02:56:21.8293380Z adding 'torch/include/ATen/ops/tan_cuda_dispatch.h' 2025-01-24T02:56:21.8294390Z adding 'torch/include/ATen/ops/tan_meta.h' 2025-01-24T02:56:21.8295250Z adding 'torch/include/ATen/ops/tan_meta_dispatch.h' 2025-01-24T02:56:21.8296290Z adding 'torch/include/ATen/ops/tan_mps_dispatch.h' 2025-01-24T02:56:21.8297310Z adding 'torch/include/ATen/ops/tan_native.h' 2025-01-24T02:56:21.8298550Z adding 'torch/include/ATen/ops/tan_ops.h' 2025-01-24T02:56:21.8299140Z adding 'torch/include/ATen/ops/tanh.h' 2025-01-24T02:56:21.8300500Z adding 'torch/include/ATen/ops/tanh_backward.h' 2025-01-24T02:56:21.8301570Z adding 'torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8302660Z adding 'torch/include/ATen/ops/tanh_backward_cpu_dispatch.h' 2025-01-24T02:56:21.8303550Z adding 'torch/include/ATen/ops/tanh_backward_cuda_dispatch.h' 2025-01-24T02:56:21.8304740Z adding 'torch/include/ATen/ops/tanh_backward_meta.h' 2025-01-24T02:56:21.8305650Z adding 'torch/include/ATen/ops/tanh_backward_meta_dispatch.h' 2025-01-24T02:56:21.8306910Z adding 'torch/include/ATen/ops/tanh_backward_mps_dispatch.h' 2025-01-24T02:56:21.8307800Z adding 'torch/include/ATen/ops/tanh_backward_native.h' 2025-01-24T02:56:21.8309030Z adding 'torch/include/ATen/ops/tanh_backward_ops.h' 2025-01-24T02:56:21.8310060Z adding 'torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8311150Z adding 'torch/include/ATen/ops/tanh_cpu_dispatch.h' 2025-01-24T02:56:21.8311730Z adding 'torch/include/ATen/ops/tanh_cuda_dispatch.h' 2025-01-24T02:56:21.8313000Z adding 'torch/include/ATen/ops/tanh_meta.h' 2025-01-24T02:56:21.8313900Z adding 'torch/include/ATen/ops/tanh_meta_dispatch.h' 2025-01-24T02:56:21.8315000Z adding 'torch/include/ATen/ops/tanh_mps_dispatch.h' 2025-01-24T02:56:21.8316040Z adding 'torch/include/ATen/ops/tanh_native.h' 2025-01-24T02:56:21.8317270Z adding 'torch/include/ATen/ops/tanh_ops.h' 2025-01-24T02:56:21.8318440Z adding 'torch/include/ATen/ops/tensor.h' 2025-01-24T02:56:21.8319650Z adding 'torch/include/ATen/ops/tensor_split.h' 2025-01-24T02:56:21.8320660Z adding 'torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8321760Z adding 'torch/include/ATen/ops/tensor_split_native.h' 2025-01-24T02:56:21.8322960Z adding 'torch/include/ATen/ops/tensor_split_ops.h' 2025-01-24T02:56:21.8324010Z adding 'torch/include/ATen/ops/tensordot.h' 2025-01-24T02:56:21.8325350Z adding 'torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8325840Z adding 'torch/include/ATen/ops/tensordot_native.h' 2025-01-24T02:56:21.8327270Z adding 'torch/include/ATen/ops/tensordot_ops.h' 2025-01-24T02:56:21.8328610Z adding 'torch/include/ATen/ops/thnn_conv2d.h' 2025-01-24T02:56:21.8329970Z adding 'torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8330560Z adding 'torch/include/ATen/ops/thnn_conv2d_native.h' 2025-01-24T02:56:21.8331990Z adding 'torch/include/ATen/ops/thnn_conv2d_ops.h' 2025-01-24T02:56:21.8333030Z adding 'torch/include/ATen/ops/threshold.h' 2025-01-24T02:56:21.8334270Z adding 'torch/include/ATen/ops/threshold_backward.h' 2025-01-24T02:56:21.8335370Z adding 'torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8336470Z adding 'torch/include/ATen/ops/threshold_backward_cpu_dispatch.h' 2025-01-24T02:56:21.8337390Z adding 'torch/include/ATen/ops/threshold_backward_cuda_dispatch.h' 2025-01-24T02:56:21.8338540Z adding 'torch/include/ATen/ops/threshold_backward_meta.h' 2025-01-24T02:56:21.8339440Z adding 'torch/include/ATen/ops/threshold_backward_meta_dispatch.h' 2025-01-24T02:56:21.8340640Z adding 'torch/include/ATen/ops/threshold_backward_mps_dispatch.h' 2025-01-24T02:56:21.8341260Z adding 'torch/include/ATen/ops/threshold_backward_native.h' 2025-01-24T02:56:21.8342660Z adding 'torch/include/ATen/ops/threshold_backward_ops.h' 2025-01-24T02:56:21.8343690Z adding 'torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8344740Z adding 'torch/include/ATen/ops/threshold_cpu_dispatch.h' 2025-01-24T02:56:21.8345650Z adding 'torch/include/ATen/ops/threshold_cuda_dispatch.h' 2025-01-24T02:56:21.8346840Z adding 'torch/include/ATen/ops/threshold_meta.h' 2025-01-24T02:56:21.8347740Z adding 'torch/include/ATen/ops/threshold_meta_dispatch.h' 2025-01-24T02:56:21.8348650Z adding 'torch/include/ATen/ops/threshold_mps_dispatch.h' 2025-01-24T02:56:21.8349800Z adding 'torch/include/ATen/ops/threshold_native.h' 2025-01-24T02:56:21.8350900Z adding 'torch/include/ATen/ops/threshold_ops.h' 2025-01-24T02:56:21.8351910Z adding 'torch/include/ATen/ops/tile.h' 2025-01-24T02:56:21.8352890Z adding 'torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8353980Z adding 'torch/include/ATen/ops/tile_native.h' 2025-01-24T02:56:21.8355170Z adding 'torch/include/ATen/ops/tile_ops.h' 2025-01-24T02:56:21.8356000Z adding 'torch/include/ATen/ops/to.h' 2025-01-24T02:56:21.8357300Z adding 'torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8358060Z adding 'torch/include/ATen/ops/to_dense.h' 2025-01-24T02:56:21.8359320Z adding 'torch/include/ATen/ops/to_dense_backward.h' 2025-01-24T02:56:21.8360550Z adding 'torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8361090Z adding 'torch/include/ATen/ops/to_dense_backward_native.h' 2025-01-24T02:56:21.8362460Z adding 'torch/include/ATen/ops/to_dense_backward_ops.h' 2025-01-24T02:56:21.8363790Z adding 'torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8364280Z adding 'torch/include/ATen/ops/to_dense_native.h' 2025-01-24T02:56:21.8365600Z adding 'torch/include/ATen/ops/to_dense_ops.h' 2025-01-24T02:56:21.8366480Z adding 'torch/include/ATen/ops/to_mkldnn.h' 2025-01-24T02:56:21.8369420Z adding 'torch/include/ATen/ops/to_mkldnn_backward.h' 2025-01-24T02:56:21.8371090Z adding 'torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8372360Z adding 'torch/include/ATen/ops/to_mkldnn_backward_native.h' 2025-01-24T02:56:21.8373650Z adding 'torch/include/ATen/ops/to_mkldnn_backward_ops.h' 2025-01-24T02:56:21.8375300Z adding 'torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8376540Z adding 'torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h' 2025-01-24T02:56:21.8377850Z adding 'torch/include/ATen/ops/to_mkldnn_native.h' 2025-01-24T02:56:21.8379280Z adding 'torch/include/ATen/ops/to_mkldnn_ops.h' 2025-01-24T02:56:21.8380590Z adding 'torch/include/ATen/ops/to_native.h' 2025-01-24T02:56:21.8382160Z adding 'torch/include/ATen/ops/to_ops.h' 2025-01-24T02:56:21.8383750Z adding 'torch/include/ATen/ops/to_padded_tensor.h' 2025-01-24T02:56:21.8385360Z adding 'torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8386560Z adding 'torch/include/ATen/ops/to_padded_tensor_native.h' 2025-01-24T02:56:21.8388030Z adding 'torch/include/ATen/ops/to_padded_tensor_ops.h' 2025-01-24T02:56:21.8389310Z adding 'torch/include/ATen/ops/to_sparse.h' 2025-01-24T02:56:21.8390600Z adding 'torch/include/ATen/ops/to_sparse_bsc.h' 2025-01-24T02:56:21.8392010Z adding 'torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8393180Z adding 'torch/include/ATen/ops/to_sparse_bsc_native.h' 2025-01-24T02:56:21.8394540Z adding 'torch/include/ATen/ops/to_sparse_bsc_ops.h' 2025-01-24T02:56:21.8395770Z adding 'torch/include/ATen/ops/to_sparse_bsr.h' 2025-01-24T02:56:21.8397190Z adding 'torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8398330Z adding 'torch/include/ATen/ops/to_sparse_bsr_native.h' 2025-01-24T02:56:21.8399690Z adding 'torch/include/ATen/ops/to_sparse_bsr_ops.h' 2025-01-24T02:56:21.8401130Z adding 'torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8402250Z adding 'torch/include/ATen/ops/to_sparse_csc.h' 2025-01-24T02:56:21.8403680Z adding 'torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8404840Z adding 'torch/include/ATen/ops/to_sparse_csc_native.h' 2025-01-24T02:56:21.8406270Z adding 'torch/include/ATen/ops/to_sparse_csc_ops.h' 2025-01-24T02:56:21.8407480Z adding 'torch/include/ATen/ops/to_sparse_csr.h' 2025-01-24T02:56:21.8408920Z adding 'torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8410100Z adding 'torch/include/ATen/ops/to_sparse_csr_native.h' 2025-01-24T02:56:21.8411370Z adding 'torch/include/ATen/ops/to_sparse_csr_ops.h' 2025-01-24T02:56:21.8412680Z adding 'torch/include/ATen/ops/to_sparse_native.h' 2025-01-24T02:56:21.8414010Z adding 'torch/include/ATen/ops/to_sparse_ops.h' 2025-01-24T02:56:21.8415500Z adding 'torch/include/ATen/ops/topk.h' 2025-01-24T02:56:21.8417040Z adding 'torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8418240Z adding 'torch/include/ATen/ops/topk_cpu_dispatch.h' 2025-01-24T02:56:21.8419560Z adding 'torch/include/ATen/ops/topk_cuda_dispatch.h' 2025-01-24T02:56:21.8420840Z adding 'torch/include/ATen/ops/topk_meta.h' 2025-01-24T02:56:21.8422170Z adding 'torch/include/ATen/ops/topk_meta_dispatch.h' 2025-01-24T02:56:21.8423430Z adding 'torch/include/ATen/ops/topk_mps_dispatch.h' 2025-01-24T02:56:21.8424770Z adding 'torch/include/ATen/ops/topk_native.h' 2025-01-24T02:56:21.8426240Z adding 'torch/include/ATen/ops/topk_ops.h' 2025-01-24T02:56:21.8427560Z adding 'torch/include/ATen/ops/trace.h' 2025-01-24T02:56:21.8428940Z adding 'torch/include/ATen/ops/trace_backward.h' 2025-01-24T02:56:21.8430390Z adding 'torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8431530Z adding 'torch/include/ATen/ops/trace_backward_native.h' 2025-01-24T02:56:21.8432790Z adding 'torch/include/ATen/ops/trace_backward_ops.h' 2025-01-24T02:56:21.8434220Z adding 'torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8435340Z adding 'torch/include/ATen/ops/trace_cpu_dispatch.h' 2025-01-24T02:56:21.8436570Z adding 'torch/include/ATen/ops/trace_cuda_dispatch.h' 2025-01-24T02:56:21.8437970Z adding 'torch/include/ATen/ops/trace_mps_dispatch.h' 2025-01-24T02:56:21.8439200Z adding 'torch/include/ATen/ops/trace_native.h' 2025-01-24T02:56:21.8440490Z adding 'torch/include/ATen/ops/trace_ops.h' 2025-01-24T02:56:21.8441790Z adding 'torch/include/ATen/ops/transpose.h' 2025-01-24T02:56:21.8443230Z adding 'torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8444540Z adding 'torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8445800Z adding 'torch/include/ATen/ops/transpose_copy.h' 2025-01-24T02:56:21.8447220Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8448580Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8449680Z adding 'torch/include/ATen/ops/transpose_copy_native.h' 2025-01-24T02:56:21.8451020Z adding 'torch/include/ATen/ops/transpose_copy_ops.h' 2025-01-24T02:56:21.8452230Z adding 'torch/include/ATen/ops/transpose_native.h' 2025-01-24T02:56:21.8453610Z adding 'torch/include/ATen/ops/transpose_ops.h' 2025-01-24T02:56:21.8454900Z adding 'torch/include/ATen/ops/trapezoid.h' 2025-01-24T02:56:21.8456330Z adding 'torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8457460Z adding 'torch/include/ATen/ops/trapezoid_native.h' 2025-01-24T02:56:21.8458810Z adding 'torch/include/ATen/ops/trapezoid_ops.h' 2025-01-24T02:56:21.8460070Z adding 'torch/include/ATen/ops/trapz.h' 2025-01-24T02:56:21.8461520Z adding 'torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8462670Z adding 'torch/include/ATen/ops/trapz_native.h' 2025-01-24T02:56:21.8467780Z adding 'torch/include/ATen/ops/trapz_ops.h' 2025-01-24T02:56:21.8468120Z adding 'torch/include/ATen/ops/triangular_solve.h' 2025-01-24T02:56:21.8468500Z adding 'torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8468700Z adding 'torch/include/ATen/ops/triangular_solve_cpu_dispatch.h' 2025-01-24T02:56:21.8469100Z adding 'torch/include/ATen/ops/triangular_solve_cuda_dispatch.h' 2025-01-24T02:56:21.8470660Z adding 'torch/include/ATen/ops/triangular_solve_meta.h' 2025-01-24T02:56:21.8471400Z adding 'torch/include/ATen/ops/triangular_solve_meta_dispatch.h' 2025-01-24T02:56:21.8473420Z adding 'torch/include/ATen/ops/triangular_solve_mps_dispatch.h' 2025-01-24T02:56:21.8474650Z adding 'torch/include/ATen/ops/triangular_solve_native.h' 2025-01-24T02:56:21.8475560Z adding 'torch/include/ATen/ops/triangular_solve_ops.h' 2025-01-24T02:56:21.8476750Z adding 'torch/include/ATen/ops/tril.h' 2025-01-24T02:56:21.8478180Z adding 'torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8479240Z adding 'torch/include/ATen/ops/tril_cpu_dispatch.h' 2025-01-24T02:56:21.8479810Z adding 'torch/include/ATen/ops/tril_cuda_dispatch.h' 2025-01-24T02:56:21.8481200Z adding 'torch/include/ATen/ops/tril_indices.h' 2025-01-24T02:56:21.8482390Z adding 'torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8483540Z adding 'torch/include/ATen/ops/tril_indices_cpu_dispatch.h' 2025-01-24T02:56:21.8484420Z adding 'torch/include/ATen/ops/tril_indices_cuda_dispatch.h' 2025-01-24T02:56:21.8485650Z adding 'torch/include/ATen/ops/tril_indices_mps_dispatch.h' 2025-01-24T02:56:21.8486500Z adding 'torch/include/ATen/ops/tril_indices_native.h' 2025-01-24T02:56:21.8487880Z adding 'torch/include/ATen/ops/tril_indices_ops.h' 2025-01-24T02:56:21.8488730Z adding 'torch/include/ATen/ops/tril_meta.h' 2025-01-24T02:56:21.8489970Z adding 'torch/include/ATen/ops/tril_meta_dispatch.h' 2025-01-24T02:56:21.8490880Z adding 'torch/include/ATen/ops/tril_mps_dispatch.h' 2025-01-24T02:56:21.8491900Z adding 'torch/include/ATen/ops/tril_native.h' 2025-01-24T02:56:21.8493110Z adding 'torch/include/ATen/ops/tril_ops.h' 2025-01-24T02:56:21.8494370Z adding 'torch/include/ATen/ops/triplet_margin_loss.h' 2025-01-24T02:56:21.8495230Z adding 'torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8496210Z adding 'torch/include/ATen/ops/triplet_margin_loss_native.h' 2025-01-24T02:56:21.8497590Z adding 'torch/include/ATen/ops/triplet_margin_loss_ops.h' 2025-01-24T02:56:21.8498510Z adding 'torch/include/ATen/ops/triu.h' 2025-01-24T02:56:21.8500600Z adding 'torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8501740Z adding 'torch/include/ATen/ops/triu_cpu_dispatch.h' 2025-01-24T02:56:21.8503040Z adding 'torch/include/ATen/ops/triu_cuda_dispatch.h' 2025-01-24T02:56:21.8504520Z adding 'torch/include/ATen/ops/triu_indices.h' 2025-01-24T02:56:21.8506010Z adding 'torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8507230Z adding 'torch/include/ATen/ops/triu_indices_cpu_dispatch.h' 2025-01-24T02:56:21.8508520Z adding 'torch/include/ATen/ops/triu_indices_cuda_dispatch.h' 2025-01-24T02:56:21.8509800Z adding 'torch/include/ATen/ops/triu_indices_mps_dispatch.h' 2025-01-24T02:56:21.8511110Z adding 'torch/include/ATen/ops/triu_indices_native.h' 2025-01-24T02:56:21.8512560Z adding 'torch/include/ATen/ops/triu_indices_ops.h' 2025-01-24T02:56:21.8513840Z adding 'torch/include/ATen/ops/triu_meta.h' 2025-01-24T02:56:21.8515120Z adding 'torch/include/ATen/ops/triu_meta_dispatch.h' 2025-01-24T02:56:21.8516350Z adding 'torch/include/ATen/ops/triu_mps_dispatch.h' 2025-01-24T02:56:21.8517620Z adding 'torch/include/ATen/ops/triu_native.h' 2025-01-24T02:56:21.8519020Z adding 'torch/include/ATen/ops/triu_ops.h' 2025-01-24T02:56:21.8520340Z adding 'torch/include/ATen/ops/true_divide.h' 2025-01-24T02:56:21.8521780Z adding 'torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8522900Z adding 'torch/include/ATen/ops/true_divide_native.h' 2025-01-24T02:56:21.8524360Z adding 'torch/include/ATen/ops/true_divide_ops.h' 2025-01-24T02:56:21.8525630Z adding 'torch/include/ATen/ops/trunc.h' 2025-01-24T02:56:21.8527210Z adding 'torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8528280Z adding 'torch/include/ATen/ops/trunc_cpu_dispatch.h' 2025-01-24T02:56:21.8529560Z adding 'torch/include/ATen/ops/trunc_cuda_dispatch.h' 2025-01-24T02:56:21.8530760Z adding 'torch/include/ATen/ops/trunc_meta.h' 2025-01-24T02:56:21.8532050Z adding 'torch/include/ATen/ops/trunc_meta_dispatch.h' 2025-01-24T02:56:21.8533260Z adding 'torch/include/ATen/ops/trunc_mps_dispatch.h' 2025-01-24T02:56:21.8534470Z adding 'torch/include/ATen/ops/trunc_native.h' 2025-01-24T02:56:21.8535820Z adding 'torch/include/ATen/ops/trunc_ops.h' 2025-01-24T02:56:21.8537050Z adding 'torch/include/ATen/ops/type_as.h' 2025-01-24T02:56:21.8538490Z adding 'torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8539600Z adding 'torch/include/ATen/ops/type_as_native.h' 2025-01-24T02:56:21.8540880Z adding 'torch/include/ATen/ops/type_as_ops.h' 2025-01-24T02:56:21.8542120Z adding 'torch/include/ATen/ops/unbind.h' 2025-01-24T02:56:21.8543550Z adding 'torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8544820Z adding 'torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8546010Z adding 'torch/include/ATen/ops/unbind_copy.h' 2025-01-24T02:56:21.8547420Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8548770Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8549820Z adding 'torch/include/ATen/ops/unbind_copy_native.h' 2025-01-24T02:56:21.8551180Z adding 'torch/include/ATen/ops/unbind_copy_ops.h' 2025-01-24T02:56:21.8555510Z adding 'torch/include/ATen/ops/unbind_native.h' 2025-01-24T02:56:21.8556830Z adding 'torch/include/ATen/ops/unbind_ops.h' 2025-01-24T02:56:21.8558240Z adding 'torch/include/ATen/ops/unflatten.h' 2025-01-24T02:56:21.8559710Z adding 'torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8560900Z adding 'torch/include/ATen/ops/unflatten_dense_tensors.h' 2025-01-24T02:56:21.8562360Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8563510Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_native.h' 2025-01-24T02:56:21.8564810Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_ops.h' 2025-01-24T02:56:21.8566010Z adding 'torch/include/ATen/ops/unflatten_native.h' 2025-01-24T02:56:21.8567360Z adding 'torch/include/ATen/ops/unflatten_ops.h' 2025-01-24T02:56:21.8568550Z adding 'torch/include/ATen/ops/unfold.h' 2025-01-24T02:56:21.8570280Z adding 'torch/include/ATen/ops/unfold_backward.h' 2025-01-24T02:56:21.8571760Z adding 'torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8573020Z adding 'torch/include/ATen/ops/unfold_backward_cpu_dispatch.h' 2025-01-24T02:56:21.8574300Z adding 'torch/include/ATen/ops/unfold_backward_cuda_dispatch.h' 2025-01-24T02:56:21.8575520Z adding 'torch/include/ATen/ops/unfold_backward_mps_dispatch.h' 2025-01-24T02:56:21.8576740Z adding 'torch/include/ATen/ops/unfold_backward_native.h' 2025-01-24T02:56:21.8578260Z adding 'torch/include/ATen/ops/unfold_backward_ops.h' 2025-01-24T02:56:21.8579390Z adding 'torch/include/ATen/ops/unfold_copy.h' 2025-01-24T02:56:21.8580860Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8582220Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8583280Z adding 'torch/include/ATen/ops/unfold_copy_native.h' 2025-01-24T02:56:21.8584660Z adding 'torch/include/ATen/ops/unfold_copy_ops.h' 2025-01-24T02:56:21.8585960Z adding 'torch/include/ATen/ops/unfold_cpu_dispatch.h' 2025-01-24T02:56:21.8587200Z adding 'torch/include/ATen/ops/unfold_cuda_dispatch.h' 2025-01-24T02:56:21.8588450Z adding 'torch/include/ATen/ops/unfold_meta_dispatch.h' 2025-01-24T02:56:21.8589680Z adding 'torch/include/ATen/ops/unfold_mps_dispatch.h' 2025-01-24T02:56:21.8590930Z adding 'torch/include/ATen/ops/unfold_native.h' 2025-01-24T02:56:21.8592180Z adding 'torch/include/ATen/ops/unfold_ops.h' 2025-01-24T02:56:21.8593590Z adding 'torch/include/ATen/ops/uniform.h' 2025-01-24T02:56:21.8595020Z adding 'torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8596200Z adding 'torch/include/ATen/ops/uniform_cpu_dispatch.h' 2025-01-24T02:56:21.8597420Z adding 'torch/include/ATen/ops/uniform_cuda_dispatch.h' 2025-01-24T02:56:21.8598620Z adding 'torch/include/ATen/ops/uniform_meta_dispatch.h' 2025-01-24T02:56:21.8599830Z adding 'torch/include/ATen/ops/uniform_mps_dispatch.h' 2025-01-24T02:56:21.8601040Z adding 'torch/include/ATen/ops/uniform_native.h' 2025-01-24T02:56:21.8602420Z adding 'torch/include/ATen/ops/uniform_ops.h' 2025-01-24T02:56:21.8603830Z adding 'torch/include/ATen/ops/unique_consecutive.h' 2025-01-24T02:56:21.8605270Z adding 'torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8606500Z adding 'torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h' 2025-01-24T02:56:21.8607730Z adding 'torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h' 2025-01-24T02:56:21.8608950Z adding 'torch/include/ATen/ops/unique_consecutive_mps_dispatch.h' 2025-01-24T02:56:21.8610190Z adding 'torch/include/ATen/ops/unique_consecutive_native.h' 2025-01-24T02:56:21.8611570Z adding 'torch/include/ATen/ops/unique_consecutive_ops.h' 2025-01-24T02:56:21.8612890Z adding 'torch/include/ATen/ops/unique_dim.h' 2025-01-24T02:56:21.8614340Z adding 'torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8615610Z adding 'torch/include/ATen/ops/unique_dim_consecutive.h' 2025-01-24T02:56:21.8617080Z adding 'torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8618200Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h' 2025-01-24T02:56:21.8619450Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h' 2025-01-24T02:56:21.8620710Z adding 'torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h' 2025-01-24T02:56:21.8621900Z adding 'torch/include/ATen/ops/unique_dim_consecutive_native.h' 2025-01-24T02:56:21.8623290Z adding 'torch/include/ATen/ops/unique_dim_consecutive_ops.h' 2025-01-24T02:56:21.8624740Z adding 'torch/include/ATen/ops/unique_dim_cpu_dispatch.h' 2025-01-24T02:56:21.8625830Z adding 'torch/include/ATen/ops/unique_dim_cuda_dispatch.h' 2025-01-24T02:56:21.8627050Z adding 'torch/include/ATen/ops/unique_dim_native.h' 2025-01-24T02:56:21.8628440Z adding 'torch/include/ATen/ops/unique_dim_ops.h' 2025-01-24T02:56:21.8629700Z adding 'torch/include/ATen/ops/unsafe_chunk.h' 2025-01-24T02:56:21.8631120Z adding 'torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8632240Z adding 'torch/include/ATen/ops/unsafe_chunk_native.h' 2025-01-24T02:56:21.8633570Z adding 'torch/include/ATen/ops/unsafe_chunk_ops.h' 2025-01-24T02:56:21.8634980Z adding 'torch/include/ATen/ops/unsafe_split.h' 2025-01-24T02:56:21.8636480Z adding 'torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8637610Z adding 'torch/include/ATen/ops/unsafe_split_native.h' 2025-01-24T02:56:21.8638970Z adding 'torch/include/ATen/ops/unsafe_split_ops.h' 2025-01-24T02:56:21.8640470Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes.h' 2025-01-24T02:56:21.8641940Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8643080Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_native.h' 2025-01-24T02:56:21.8644410Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_ops.h' 2025-01-24T02:56:21.8645630Z adding 'torch/include/ATen/ops/unsqueeze.h' 2025-01-24T02:56:21.8647020Z adding 'torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8648190Z adding 'torch/include/ATen/ops/unsqueeze_copy.h' 2025-01-24T02:56:21.8649600Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8650950Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8652040Z adding 'torch/include/ATen/ops/unsqueeze_copy_native.h' 2025-01-24T02:56:21.8653300Z adding 'torch/include/ATen/ops/unsqueeze_copy_ops.h' 2025-01-24T02:56:21.8654540Z adding 'torch/include/ATen/ops/unsqueeze_native.h' 2025-01-24T02:56:21.8655830Z adding 'torch/include/ATen/ops/unsqueeze_ops.h' 2025-01-24T02:56:21.8657470Z adding 'torch/include/ATen/ops/upsample_bicubic2d.h' 2025-01-24T02:56:21.8659140Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward.h' 2025-01-24T02:56:21.8660720Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8661930Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.8663230Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.8664480Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h' 2025-01-24T02:56:21.8665810Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h' 2025-01-24T02:56:21.8667090Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h' 2025-01-24T02:56:21.8668380Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_native.h' 2025-01-24T02:56:21.8669760Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h' 2025-01-24T02:56:21.8671240Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8672630Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8673810Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h' 2025-01-24T02:56:21.8675100Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h' 2025-01-24T02:56:21.8676300Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta.h' 2025-01-24T02:56:21.8681450Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h' 2025-01-24T02:56:21.8681820Z adding 'torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h' 2025-01-24T02:56:21.8682010Z adding 'torch/include/ATen/ops/upsample_bicubic2d_native.h' 2025-01-24T02:56:21.8682180Z adding 'torch/include/ATen/ops/upsample_bicubic2d_ops.h' 2025-01-24T02:56:21.8683230Z adding 'torch/include/ATen/ops/upsample_bilinear2d.h' 2025-01-24T02:56:21.8684900Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward.h' 2025-01-24T02:56:21.8686460Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8687650Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.8688930Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.8690170Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h' 2025-01-24T02:56:21.8691460Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h' 2025-01-24T02:56:21.8692740Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h' 2025-01-24T02:56:21.8694010Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_native.h' 2025-01-24T02:56:21.8695400Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h' 2025-01-24T02:56:21.8696800Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8698130Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8699370Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8700540Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h' 2025-01-24T02:56:21.8701840Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h' 2025-01-24T02:56:21.8703050Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta.h' 2025-01-24T02:56:21.8704320Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h' 2025-01-24T02:56:21.8705560Z adding 'torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h' 2025-01-24T02:56:21.8706930Z adding 'torch/include/ATen/ops/upsample_bilinear2d_native.h' 2025-01-24T02:56:21.8708390Z adding 'torch/include/ATen/ops/upsample_bilinear2d_ops.h' 2025-01-24T02:56:21.8709960Z adding 'torch/include/ATen/ops/upsample_linear1d.h' 2025-01-24T02:56:21.8711550Z adding 'torch/include/ATen/ops/upsample_linear1d_backward.h' 2025-01-24T02:56:21.8713140Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8714310Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.8715590Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.8716820Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta.h' 2025-01-24T02:56:21.8718100Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h' 2025-01-24T02:56:21.8719350Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h' 2025-01-24T02:56:21.8720620Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_native.h' 2025-01-24T02:56:21.8721990Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_ops.h' 2025-01-24T02:56:21.8723440Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8724660Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8725870Z adding 'torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h' 2025-01-24T02:56:21.8727180Z adding 'torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h' 2025-01-24T02:56:21.8728360Z adding 'torch/include/ATen/ops/upsample_linear1d_meta.h' 2025-01-24T02:56:21.8729690Z adding 'torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h' 2025-01-24T02:56:21.8730960Z adding 'torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h' 2025-01-24T02:56:21.8732220Z adding 'torch/include/ATen/ops/upsample_linear1d_native.h' 2025-01-24T02:56:21.8733620Z adding 'torch/include/ATen/ops/upsample_linear1d_ops.h' 2025-01-24T02:56:21.8735220Z adding 'torch/include/ATen/ops/upsample_nearest1d.h' 2025-01-24T02:56:21.8736810Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward.h' 2025-01-24T02:56:21.8738340Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8739490Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.8740790Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.8742000Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta.h' 2025-01-24T02:56:21.8743360Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h' 2025-01-24T02:56:21.8744610Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h' 2025-01-24T02:56:21.8745900Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_native.h' 2025-01-24T02:56:21.8747270Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_ops.h' 2025-01-24T02:56:21.8748720Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8749950Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8751150Z adding 'torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h' 2025-01-24T02:56:21.8752400Z adding 'torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h' 2025-01-24T02:56:21.8753670Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta.h' 2025-01-24T02:56:21.8754950Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h' 2025-01-24T02:56:21.8756180Z adding 'torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h' 2025-01-24T02:56:21.8757430Z adding 'torch/include/ATen/ops/upsample_nearest1d_native.h' 2025-01-24T02:56:21.8758830Z adding 'torch/include/ATen/ops/upsample_nearest1d_ops.h' 2025-01-24T02:56:21.8760610Z adding 'torch/include/ATen/ops/upsample_nearest2d.h' 2025-01-24T02:56:21.8762310Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward.h' 2025-01-24T02:56:21.8763810Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8765000Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.8766290Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.8767500Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta.h' 2025-01-24T02:56:21.8768800Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h' 2025-01-24T02:56:21.8770070Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h' 2025-01-24T02:56:21.8771340Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_native.h' 2025-01-24T02:56:21.8773260Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_ops.h' 2025-01-24T02:56:21.8774720Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8776010Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8777440Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8778560Z adding 'torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h' 2025-01-24T02:56:21.8779780Z adding 'torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h' 2025-01-24T02:56:21.8780950Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta.h' 2025-01-24T02:56:21.8781900Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h' 2025-01-24T02:56:21.8783230Z adding 'torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h' 2025-01-24T02:56:21.8784420Z adding 'torch/include/ATen/ops/upsample_nearest2d_native.h' 2025-01-24T02:56:21.8785720Z adding 'torch/include/ATen/ops/upsample_nearest2d_ops.h' 2025-01-24T02:56:21.8787240Z adding 'torch/include/ATen/ops/upsample_nearest3d.h' 2025-01-24T02:56:21.8788750Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward.h' 2025-01-24T02:56:21.8790180Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8791320Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.8792550Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.8793730Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta.h' 2025-01-24T02:56:21.8794650Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h' 2025-01-24T02:56:21.8795910Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_native.h' 2025-01-24T02:56:21.8797150Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_ops.h' 2025-01-24T02:56:21.8798550Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8799220Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8800560Z adding 'torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h' 2025-01-24T02:56:21.8801800Z adding 'torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h' 2025-01-24T02:56:21.8802640Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta.h' 2025-01-24T02:56:21.8803890Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h' 2025-01-24T02:56:21.8805110Z adding 'torch/include/ATen/ops/upsample_nearest3d_native.h' 2025-01-24T02:56:21.8806450Z adding 'torch/include/ATen/ops/upsample_nearest3d_ops.h' 2025-01-24T02:56:21.8807820Z adding 'torch/include/ATen/ops/upsample_trilinear3d.h' 2025-01-24T02:56:21.8809390Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward.h' 2025-01-24T02:56:21.8810840Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8811520Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h' 2025-01-24T02:56:21.8812950Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h' 2025-01-24T02:56:21.8814150Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h' 2025-01-24T02:56:21.8815070Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h' 2025-01-24T02:56:21.8816270Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_native.h' 2025-01-24T02:56:21.8817540Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h' 2025-01-24T02:56:21.8818910Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8819610Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8820930Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h' 2025-01-24T02:56:21.8822150Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h' 2025-01-24T02:56:21.8822980Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta.h' 2025-01-24T02:56:21.8824250Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h' 2025-01-24T02:56:21.8825450Z adding 'torch/include/ATen/ops/upsample_trilinear3d_native.h' 2025-01-24T02:56:21.8826680Z adding 'torch/include/ATen/ops/upsample_trilinear3d_ops.h' 2025-01-24T02:56:21.8827940Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward.h' 2025-01-24T02:56:21.8829310Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8829890Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_native.h' 2025-01-24T02:56:21.8831280Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_ops.h' 2025-01-24T02:56:21.8832380Z adding 'torch/include/ATen/ops/values.h' 2025-01-24T02:56:21.8833350Z adding 'torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8834460Z adding 'torch/include/ATen/ops/values_copy.h' 2025-01-24T02:56:21.8835810Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8836530Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8837690Z adding 'torch/include/ATen/ops/values_copy_native.h' 2025-01-24T02:56:21.8838810Z adding 'torch/include/ATen/ops/values_copy_ops.h' 2025-01-24T02:56:21.8839850Z adding 'torch/include/ATen/ops/values_native.h' 2025-01-24T02:56:21.8841050Z adding 'torch/include/ATen/ops/values_ops.h' 2025-01-24T02:56:21.8841890Z adding 'torch/include/ATen/ops/vander.h' 2025-01-24T02:56:21.8843260Z adding 'torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8844350Z adding 'torch/include/ATen/ops/vander_native.h' 2025-01-24T02:56:21.8845210Z adding 'torch/include/ATen/ops/vander_ops.h' 2025-01-24T02:56:21.8846730Z adding 'torch/include/ATen/ops/var.h' 2025-01-24T02:56:21.8848050Z adding 'torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8849180Z adding 'torch/include/ATen/ops/var_cpu_dispatch.h' 2025-01-24T02:56:21.8952070Z adding 'torch/include/ATen/ops/var_cuda_dispatch.h' 2025-01-24T02:56:21.8953700Z adding 'torch/include/ATen/ops/var_mean.h' 2025-01-24T02:56:21.8955360Z adding 'torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8956690Z adding 'torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8957830Z adding 'torch/include/ATen/ops/var_mean_cpu_dispatch.h' 2025-01-24T02:56:21.8959080Z adding 'torch/include/ATen/ops/var_mean_cuda_dispatch.h' 2025-01-24T02:56:21.8960290Z adding 'torch/include/ATen/ops/var_mean_mps_dispatch.h' 2025-01-24T02:56:21.8961500Z adding 'torch/include/ATen/ops/var_mean_native.h' 2025-01-24T02:56:21.8962830Z adding 'torch/include/ATen/ops/var_mean_ops.h' 2025-01-24T02:56:21.8964060Z adding 'torch/include/ATen/ops/var_mps_dispatch.h' 2025-01-24T02:56:21.8965190Z adding 'torch/include/ATen/ops/var_native.h' 2025-01-24T02:56:21.8966730Z adding 'torch/include/ATen/ops/var_ops.h' 2025-01-24T02:56:21.8967980Z adding 'torch/include/ATen/ops/vdot.h' 2025-01-24T02:56:21.8969300Z adding 'torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8970090Z adding 'torch/include/ATen/ops/vdot_cpu_dispatch.h' 2025-01-24T02:56:21.8971340Z adding 'torch/include/ATen/ops/vdot_cuda_dispatch.h' 2025-01-24T02:56:21.8972530Z adding 'torch/include/ATen/ops/vdot_native.h' 2025-01-24T02:56:21.8973750Z adding 'torch/include/ATen/ops/vdot_ops.h' 2025-01-24T02:56:21.8974930Z adding 'torch/include/ATen/ops/view.h' 2025-01-24T02:56:21.8975770Z adding 'torch/include/ATen/ops/view_as.h' 2025-01-24T02:56:21.8977030Z adding 'torch/include/ATen/ops/view_as_complex.h' 2025-01-24T02:56:21.8978260Z adding 'torch/include/ATen/ops/view_as_complex_copy.h' 2025-01-24T02:56:21.8979620Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8980400Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8981580Z adding 'torch/include/ATen/ops/view_as_complex_copy_native.h' 2025-01-24T02:56:21.8982790Z adding 'torch/include/ATen/ops/view_as_complex_copy_ops.h' 2025-01-24T02:56:21.8984010Z adding 'torch/include/ATen/ops/view_as_complex_cpu_dispatch.h' 2025-01-24T02:56:21.8984690Z adding 'torch/include/ATen/ops/view_as_complex_cuda_dispatch.h' 2025-01-24T02:56:21.8990590Z adding 'torch/include/ATen/ops/view_as_complex_meta_dispatch.h' 2025-01-24T02:56:21.8991000Z adding 'torch/include/ATen/ops/view_as_complex_mps_dispatch.h' 2025-01-24T02:56:21.8991180Z adding 'torch/include/ATen/ops/view_as_complex_native.h' 2025-01-24T02:56:21.8991340Z adding 'torch/include/ATen/ops/view_as_complex_ops.h' 2025-01-24T02:56:21.8991610Z adding 'torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.8991750Z adding 'torch/include/ATen/ops/view_as_native.h' 2025-01-24T02:56:21.8992030Z adding 'torch/include/ATen/ops/view_as_ops.h' 2025-01-24T02:56:21.8993080Z adding 'torch/include/ATen/ops/view_as_real.h' 2025-01-24T02:56:21.8994210Z adding 'torch/include/ATen/ops/view_as_real_copy.h' 2025-01-24T02:56:21.8995540Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.8996920Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.8997550Z adding 'torch/include/ATen/ops/view_as_real_copy_native.h' 2025-01-24T02:56:21.8998990Z adding 'torch/include/ATen/ops/view_as_real_copy_ops.h' 2025-01-24T02:56:21.9000220Z adding 'torch/include/ATen/ops/view_as_real_cpu_dispatch.h' 2025-01-24T02:56:21.9000830Z adding 'torch/include/ATen/ops/view_as_real_cuda_dispatch.h' 2025-01-24T02:56:21.9002170Z adding 'torch/include/ATen/ops/view_as_real_meta_dispatch.h' 2025-01-24T02:56:21.9003040Z adding 'torch/include/ATen/ops/view_as_real_mps_dispatch.h' 2025-01-24T02:56:21.9004240Z adding 'torch/include/ATen/ops/view_as_real_native.h' 2025-01-24T02:56:21.9005440Z adding 'torch/include/ATen/ops/view_as_real_ops.h' 2025-01-24T02:56:21.9006420Z adding 'torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.9007750Z adding 'torch/include/ATen/ops/view_copy.h' 2025-01-24T02:56:21.9009110Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.9010070Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.9011150Z adding 'torch/include/ATen/ops/view_copy_native.h' 2025-01-24T02:56:21.9012360Z adding 'torch/include/ATen/ops/view_copy_ops.h' 2025-01-24T02:56:21.9013490Z adding 'torch/include/ATen/ops/view_cpu_dispatch.h' 2025-01-24T02:56:21.9014700Z adding 'torch/include/ATen/ops/view_cuda_dispatch.h' 2025-01-24T02:56:21.9015350Z adding 'torch/include/ATen/ops/view_meta_dispatch.h' 2025-01-24T02:56:21.9016690Z adding 'torch/include/ATen/ops/view_mps_dispatch.h' 2025-01-24T02:56:21.9017720Z adding 'torch/include/ATen/ops/view_native.h' 2025-01-24T02:56:21.9018980Z adding 'torch/include/ATen/ops/view_ops.h' 2025-01-24T02:56:21.9020140Z adding 'torch/include/ATen/ops/vsplit.h' 2025-01-24T02:56:21.9021470Z adding 'torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.9022240Z adding 'torch/include/ATen/ops/vsplit_native.h' 2025-01-24T02:56:21.9023550Z adding 'torch/include/ATen/ops/vsplit_ops.h' 2025-01-24T02:56:21.9024760Z adding 'torch/include/ATen/ops/vstack.h' 2025-01-24T02:56:21.9026080Z adding 'torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.9026830Z adding 'torch/include/ATen/ops/vstack_native.h' 2025-01-24T02:56:21.9028130Z adding 'torch/include/ATen/ops/vstack_ops.h' 2025-01-24T02:56:21.9029370Z adding 'torch/include/ATen/ops/where.h' 2025-01-24T02:56:21.9030710Z adding 'torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.9031470Z adding 'torch/include/ATen/ops/where_cpu_dispatch.h' 2025-01-24T02:56:21.9032660Z adding 'torch/include/ATen/ops/where_cuda_dispatch.h' 2025-01-24T02:56:21.9033900Z adding 'torch/include/ATen/ops/where_mps_dispatch.h' 2025-01-24T02:56:21.9034750Z adding 'torch/include/ATen/ops/where_native.h' 2025-01-24T02:56:21.9036230Z adding 'torch/include/ATen/ops/where_ops.h' 2025-01-24T02:56:21.9037460Z adding 'torch/include/ATen/ops/xlogy.h' 2025-01-24T02:56:21.9038790Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.9039720Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-01-24T02:56:21.9040850Z adding 'torch/include/ATen/ops/xlogy_cpu_dispatch.h' 2025-01-24T02:56:21.9041710Z adding 'torch/include/ATen/ops/xlogy_cuda_dispatch.h' 2025-01-24T02:56:21.9042920Z adding 'torch/include/ATen/ops/xlogy_meta.h' 2025-01-24T02:56:21.9044150Z adding 'torch/include/ATen/ops/xlogy_meta_dispatch.h' 2025-01-24T02:56:21.9045020Z adding 'torch/include/ATen/ops/xlogy_mps_dispatch.h' 2025-01-24T02:56:21.9046150Z adding 'torch/include/ATen/ops/xlogy_native.h' 2025-01-24T02:56:21.9047520Z adding 'torch/include/ATen/ops/xlogy_ops.h' 2025-01-24T02:56:21.9048690Z adding 'torch/include/ATen/ops/xor.h' 2025-01-24T02:56:21.9050000Z adding 'torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h' 2025-01-24T02:56:21.9050600Z adding 'torch/include/ATen/ops/xor_native.h' 2025-01-24T02:56:21.9052030Z adding 'torch/include/ATen/ops/xor_ops.h' 2025-01-24T02:56:21.9053190Z adding 'torch/include/ATen/ops/zero.h' 2025-01-24T02:56:21.9054460Z adding 'torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.9055290Z adding 'torch/include/ATen/ops/zero_cpu_dispatch.h' 2025-01-24T02:56:21.9056540Z adding 'torch/include/ATen/ops/zero_cuda_dispatch.h' 2025-01-24T02:56:21.9057590Z adding 'torch/include/ATen/ops/zero_meta_dispatch.h' 2025-01-24T02:56:21.9058470Z adding 'torch/include/ATen/ops/zero_mps_dispatch.h' 2025-01-24T02:56:21.9059670Z adding 'torch/include/ATen/ops/zero_native.h' 2025-01-24T02:56:21.9060860Z adding 'torch/include/ATen/ops/zero_ops.h' 2025-01-24T02:56:21.9062240Z adding 'torch/include/ATen/ops/zeros.h' 2025-01-24T02:56:21.9063610Z adding 'torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.9064720Z adding 'torch/include/ATen/ops/zeros_like.h' 2025-01-24T02:56:21.9066030Z adding 'torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h' 2025-01-24T02:56:21.9067210Z adding 'torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-01-24T02:56:21.9068160Z adding 'torch/include/ATen/ops/zeros_like_native.h' 2025-01-24T02:56:21.9069390Z adding 'torch/include/ATen/ops/zeros_like_ops.h' 2025-01-24T02:56:21.9070490Z adding 'torch/include/ATen/ops/zeros_native.h' 2025-01-24T02:56:21.9071800Z adding 'torch/include/ATen/ops/zeros_ops.h' 2025-01-24T02:56:21.9074900Z adding 'torch/include/ATen/quantized/QTensorImpl.h' 2025-01-24T02:56:21.9077190Z adding 'torch/include/ATen/quantized/Quantizer.h' 2025-01-24T02:56:21.9078720Z adding 'torch/include/ATen/xpu/CachingHostAllocator.h' 2025-01-24T02:56:21.9079820Z adding 'torch/include/ATen/xpu/PinnedMemoryAllocator.h' 2025-01-24T02:56:21.9080830Z adding 'torch/include/ATen/xpu/XPUContext.h' 2025-01-24T02:56:21.9081890Z adding 'torch/include/ATen/xpu/XPUDevice.h' 2025-01-24T02:56:21.9083750Z adding 'torch/include/ATen/xpu/XPUEvent.h' 2025-01-24T02:56:21.9084960Z adding 'torch/include/ATen/xpu/XPUGeneratorImpl.h' 2025-01-24T02:56:21.9086340Z adding 'torch/include/ATen/xpu/detail/XPUHooks.h' 2025-01-24T02:56:21.9090440Z adding 'torch/include/c10/core/Allocator.h' 2025-01-24T02:56:21.9091750Z adding 'torch/include/c10/core/AutogradState.h' 2025-01-24T02:56:21.9093960Z adding 'torch/include/c10/core/Backend.h' 2025-01-24T02:56:21.9095460Z adding 'torch/include/c10/core/CPUAllocator.h' 2025-01-24T02:56:21.9096960Z adding 'torch/include/c10/core/CachingDeviceAllocator.h' 2025-01-24T02:56:21.9098310Z adding 'torch/include/c10/core/CompileTimeFunctionPointer.h' 2025-01-24T02:56:21.9099670Z adding 'torch/include/c10/core/ConstantSymNodeImpl.h' 2025-01-24T02:56:21.9101240Z adding 'torch/include/c10/core/Contiguity.h' 2025-01-24T02:56:21.9102480Z adding 'torch/include/c10/core/CopyBytes.h' 2025-01-24T02:56:21.9103650Z adding 'torch/include/c10/core/DefaultDtype.h' 2025-01-24T02:56:21.9104860Z adding 'torch/include/c10/core/DefaultTensorOptions.h' 2025-01-24T02:56:21.9106860Z adding 'torch/include/c10/core/Device.h' 2025-01-24T02:56:21.9108090Z adding 'torch/include/c10/core/DeviceArray.h' 2025-01-24T02:56:21.9110300Z adding 'torch/include/c10/core/DeviceGuard.h' 2025-01-24T02:56:21.9112080Z adding 'torch/include/c10/core/DeviceType.h' 2025-01-24T02:56:21.9119990Z adding 'torch/include/c10/core/DispatchKey.h' 2025-01-24T02:56:21.9129760Z adding 'torch/include/c10/core/DispatchKeySet.h' 2025-01-24T02:56:21.9131630Z adding 'torch/include/c10/core/DynamicCast.h' 2025-01-24T02:56:21.9133440Z adding 'torch/include/c10/core/Event.h' 2025-01-24T02:56:21.9135150Z adding 'torch/include/c10/core/GeneratorImpl.h' 2025-01-24T02:56:21.9136320Z adding 'torch/include/c10/core/GradMode.h' 2025-01-24T02:56:21.9137920Z adding 'torch/include/c10/core/InferenceMode.h' 2025-01-24T02:56:21.9139170Z adding 'torch/include/c10/core/Layout.h' 2025-01-24T02:56:21.9141740Z adding 'torch/include/c10/core/MemoryFormat.h' 2025-01-24T02:56:21.9142860Z adding 'torch/include/c10/core/OptionalRef.h' 2025-01-24T02:56:21.9144410Z adding 'torch/include/c10/core/PyHandleCache.h' 2025-01-24T02:56:21.9145530Z adding 'torch/include/c10/core/QEngine.h' 2025-01-24T02:56:21.9146740Z adding 'torch/include/c10/core/QScheme.h' 2025-01-24T02:56:21.9148130Z adding 'torch/include/c10/core/RefcountedDeleter.h' 2025-01-24T02:56:21.9149610Z adding 'torch/include/c10/core/SafePyObject.h' 2025-01-24T02:56:21.9153010Z adding 'torch/include/c10/core/Scalar.h' 2025-01-24T02:56:21.9157720Z adding 'torch/include/c10/core/ScalarType.h' 2025-01-24T02:56:21.9159160Z adding 'torch/include/c10/core/ScalarTypeToTypeMeta.h' 2025-01-24T02:56:21.9161150Z adding 'torch/include/c10/core/Storage.h' 2025-01-24T02:56:21.9164050Z adding 'torch/include/c10/core/StorageImpl.h' 2025-01-24T02:56:21.9166200Z adding 'torch/include/c10/core/Stream.h' 2025-01-24T02:56:21.9168240Z adding 'torch/include/c10/core/StreamGuard.h' 2025-01-24T02:56:21.9169910Z adding 'torch/include/c10/core/SymBool.h' 2025-01-24T02:56:21.9171380Z adding 'torch/include/c10/core/SymFloat.h' 2025-01-24T02:56:21.9174830Z adding 'torch/include/c10/core/SymInt.h' 2025-01-24T02:56:21.9176340Z adding 'torch/include/c10/core/SymIntArrayRef.h' 2025-01-24T02:56:21.9178020Z adding 'torch/include/c10/core/SymNodeImpl.h' 2025-01-24T02:56:21.9179950Z adding 'torch/include/c10/core/SymbolicShapeMeta.h' 2025-01-24T02:56:21.9207680Z adding 'torch/include/c10/core/TensorImpl.h' 2025-01-24T02:56:21.9214140Z adding 'torch/include/c10/core/TensorOptions.h' 2025-01-24T02:56:21.9218890Z adding 'torch/include/c10/core/UndefinedTensorImpl.h' 2025-01-24T02:56:21.9219270Z adding 'torch/include/c10/core/WrapDimMinimal.h' 2025-01-24T02:56:21.9219780Z adding 'torch/include/c10/core/alignment.h' 2025-01-24T02:56:21.9220150Z adding 'torch/include/c10/core/thread_pool.h' 2025-01-24T02:56:21.9220860Z adding 'torch/include/c10/core/impl/COW.h' 2025-01-24T02:56:21.9222440Z adding 'torch/include/c10/core/impl/COWDeleter.h' 2025-01-24T02:56:21.9225910Z adding 'torch/include/c10/core/impl/DeviceGuardImplInterface.h' 2025-01-24T02:56:21.9227380Z adding 'torch/include/c10/core/impl/FakeGuardImpl.h' 2025-01-24T02:56:21.9228560Z adding 'torch/include/c10/core/impl/GPUTrace.h' 2025-01-24T02:56:21.9230030Z adding 'torch/include/c10/core/impl/HermeticPyObjectTLS.h' 2025-01-24T02:56:21.9233680Z adding 'torch/include/c10/core/impl/InlineDeviceGuard.h' 2025-01-24T02:56:21.9235290Z adding 'torch/include/c10/core/impl/InlineEvent.h' 2025-01-24T02:56:21.9237920Z adding 'torch/include/c10/core/impl/InlineStreamGuard.h' 2025-01-24T02:56:21.9239880Z adding 'torch/include/c10/core/impl/LocalDispatchKeySet.h' 2025-01-24T02:56:21.9242820Z adding 'torch/include/c10/core/impl/PyInterpreter.h' 2025-01-24T02:56:21.9245410Z adding 'torch/include/c10/core/impl/PyObjectSlot.h' 2025-01-24T02:56:21.9246610Z adding 'torch/include/c10/core/impl/PythonDispatcherTLS.h' 2025-01-24T02:56:21.9248650Z adding 'torch/include/c10/core/impl/SizesAndStrides.h' 2025-01-24T02:56:21.9250030Z adding 'torch/include/c10/core/impl/TorchDispatchModeTLS.h' 2025-01-24T02:56:21.9251440Z adding 'torch/include/c10/core/impl/VirtualGuardImpl.h' 2025-01-24T02:56:21.9252510Z adding 'torch/include/c10/core/impl/alloc_cpu.h' 2025-01-24T02:56:21.9254130Z adding 'torch/include/c10/cuda/CUDAAlgorithm.h' 2025-01-24T02:56:21.9255790Z adding 'torch/include/c10/cuda/CUDAAllocatorConfig.h' 2025-01-24T02:56:21.9259650Z adding 'torch/include/c10/cuda/CUDACachingAllocator.h' 2025-01-24T02:56:21.9261410Z adding 'torch/include/c10/cuda/CUDADeviceAssertion.h' 2025-01-24T02:56:21.9263620Z adding 'torch/include/c10/cuda/CUDADeviceAssertionHost.h' 2025-01-24T02:56:21.9265230Z adding 'torch/include/c10/cuda/CUDAException.h' 2025-01-24T02:56:21.9266760Z adding 'torch/include/c10/cuda/CUDAFunctions.h' 2025-01-24T02:56:21.9268210Z adding 'torch/include/c10/cuda/CUDAGraphsC10Utils.h' 2025-01-24T02:56:21.9270680Z adding 'torch/include/c10/cuda/CUDAGuard.h' 2025-01-24T02:56:21.9271950Z adding 'torch/include/c10/cuda/CUDAMacros.h' 2025-01-24T02:56:21.9273320Z adding 'torch/include/c10/cuda/CUDAMathCompat.h' 2025-01-24T02:56:21.9274400Z adding 'torch/include/c10/cuda/CUDAMiscFunctions.h' 2025-01-24T02:56:21.9277230Z adding 'torch/include/c10/cuda/CUDAStream.h' 2025-01-24T02:56:21.9278620Z adding 'torch/include/c10/cuda/driver_api.h' 2025-01-24T02:56:21.9281240Z adding 'torch/include/c10/cuda/impl/CUDAGuardImpl.h' 2025-01-24T02:56:21.9282270Z adding 'torch/include/c10/cuda/impl/CUDATest.h' 2025-01-24T02:56:21.9284470Z adding 'torch/include/c10/macros/Export.h' 2025-01-24T02:56:21.9288240Z adding 'torch/include/c10/macros/Macros.h' 2025-01-24T02:56:21.9289420Z adding 'torch/include/c10/macros/cmake_macros.h' 2025-01-24T02:56:21.9292580Z adding 'torch/include/c10/metal/special_math.h' 2025-01-24T02:56:21.9293830Z adding 'torch/include/c10/metal/utils.h' 2025-01-24T02:56:21.9296230Z adding 'torch/include/c10/util/AbortHandler.h' 2025-01-24T02:56:21.9297980Z adding 'torch/include/c10/util/AlignOf.h' 2025-01-24T02:56:21.9299610Z adding 'torch/include/c10/util/ApproximateClock.h' 2025-01-24T02:56:21.9300790Z adding 'torch/include/c10/util/Array.h' 2025-01-24T02:56:21.9303250Z adding 'torch/include/c10/util/ArrayRef.h' 2025-01-24T02:56:21.9305280Z adding 'torch/include/c10/util/BFloat16-inl.h' 2025-01-24T02:56:21.9307290Z adding 'torch/include/c10/util/BFloat16-math.h' 2025-01-24T02:56:21.9308750Z adding 'torch/include/c10/util/BFloat16.h' 2025-01-24T02:56:21.9309930Z adding 'torch/include/c10/util/Backtrace.h' 2025-01-24T02:56:21.9311410Z adding 'torch/include/c10/util/Bitset.h' 2025-01-24T02:56:21.9312730Z adding 'torch/include/c10/util/C++17.h' 2025-01-24T02:56:21.9314050Z adding 'torch/include/c10/util/CallOnce.h' 2025-01-24T02:56:21.9316470Z adding 'torch/include/c10/util/ConstexprCrc.h' 2025-01-24T02:56:21.9317890Z adding 'torch/include/c10/util/DeadlockDetection.h' 2025-01-24T02:56:21.9319270Z adding 'torch/include/c10/util/Deprecated.h' 2025-01-24T02:56:21.9320210Z adding 'torch/include/c10/util/DimVector.h' 2025-01-24T02:56:21.9321430Z adding 'torch/include/c10/util/DynamicCounter.h' 2025-01-24T02:56:21.9327550Z adding 'torch/include/c10/util/Exception.h' 2025-01-24T02:56:21.9329420Z adding 'torch/include/c10/util/ExclusivelyOwned.h' 2025-01-24T02:56:21.9330860Z adding 'torch/include/c10/util/ExclusivelyOwnedTensorTraits.h' 2025-01-24T02:56:21.9332110Z adding 'torch/include/c10/util/FbcodeMaps.h' 2025-01-24T02:56:21.9334600Z adding 'torch/include/c10/util/Flags.h' 2025-01-24T02:56:21.9336450Z adding 'torch/include/c10/util/Float8_e4m3fn-inl.h' 2025-01-24T02:56:21.9338920Z adding 'torch/include/c10/util/Float8_e4m3fn.h' 2025-01-24T02:56:21.9341090Z adding 'torch/include/c10/util/Float8_e4m3fnuz-inl.h' 2025-01-24T02:56:21.9342760Z adding 'torch/include/c10/util/Float8_e4m3fnuz.h' 2025-01-24T02:56:21.9344520Z adding 'torch/include/c10/util/Float8_e5m2-inl.h' 2025-01-24T02:56:21.9346260Z adding 'torch/include/c10/util/Float8_e5m2.h' 2025-01-24T02:56:21.9348060Z adding 'torch/include/c10/util/Float8_e5m2fnuz-inl.h' 2025-01-24T02:56:21.9349710Z adding 'torch/include/c10/util/Float8_e5m2fnuz.h' 2025-01-24T02:56:21.9351110Z adding 'torch/include/c10/util/Float8_fnuz_cvt.h' 2025-01-24T02:56:21.9352410Z adding 'torch/include/c10/util/FunctionRef.h' 2025-01-24T02:56:21.9353570Z adding 'torch/include/c10/util/Gauge.h' 2025-01-24T02:56:21.9355590Z adding 'torch/include/c10/util/Half-inl.h' 2025-01-24T02:56:21.9359340Z adding 'torch/include/c10/util/Half.h' 2025-01-24T02:56:21.9360780Z adding 'torch/include/c10/util/IdWrapper.h' 2025-01-24T02:56:21.9362100Z adding 'torch/include/c10/util/Lazy.h' 2025-01-24T02:56:21.9364330Z adding 'torch/include/c10/util/LeftRight.h' 2025-01-24T02:56:21.9365470Z adding 'torch/include/c10/util/Load.h' 2025-01-24T02:56:21.9368390Z adding 'torch/include/c10/util/Logging.h' 2025-01-24T02:56:21.9369850Z adding 'torch/include/c10/util/MathConstants.h' 2025-01-24T02:56:21.9371950Z adding 'torch/include/c10/util/MaybeOwned.h' 2025-01-24T02:56:21.9373970Z adding 'torch/include/c10/util/Metaprogramming.h' 2025-01-24T02:56:21.9377930Z adding 'torch/include/c10/util/NetworkFlow.h' 2025-01-24T02:56:21.9378270Z adding 'torch/include/c10/util/Optional.h' 2025-01-24T02:56:21.9378610Z adding 'torch/include/c10/util/OptionalArrayRef.h' 2025-01-24T02:56:21.9378980Z adding 'torch/include/c10/util/ParallelGuard.h' 2025-01-24T02:56:21.9381790Z adding 'torch/include/c10/util/Registry.h' 2025-01-24T02:56:21.9383020Z adding 'torch/include/c10/util/ScopeExit.h' 2025-01-24T02:56:21.9384250Z adding 'torch/include/c10/util/SmallBuffer.h' 2025-01-24T02:56:21.9394740Z adding 'torch/include/c10/util/SmallVector.h' 2025-01-24T02:56:21.9396930Z adding 'torch/include/c10/util/StringUtil.h' 2025-01-24T02:56:21.9398280Z adding 'torch/include/c10/util/Synchronized.h' 2025-01-24T02:56:21.9399850Z adding 'torch/include/c10/util/ThreadLocal.h' 2025-01-24T02:56:21.9401420Z adding 'torch/include/c10/util/ThreadLocalDebugInfo.h' 2025-01-24T02:56:21.9402660Z adding 'torch/include/c10/util/Type.h' 2025-01-24T02:56:21.9404230Z adding 'torch/include/c10/util/TypeCast.h' 2025-01-24T02:56:21.9405990Z adding 'torch/include/c10/util/TypeIndex.h' 2025-01-24T02:56:21.9409090Z adding 'torch/include/c10/util/TypeList.h' 2025-01-24T02:56:21.9410670Z adding 'torch/include/c10/util/TypeSafeSignMath.h' 2025-01-24T02:56:21.9412220Z adding 'torch/include/c10/util/TypeTraits.h' 2025-01-24T02:56:21.9413280Z adding 'torch/include/c10/util/Unicode.h' 2025-01-24T02:56:21.9414920Z adding 'torch/include/c10/util/UniqueVoidPtr.h' 2025-01-24T02:56:21.9416020Z adding 'torch/include/c10/util/Unroll.h' 2025-01-24T02:56:21.9417410Z adding 'torch/include/c10/util/WaitCounter.h' 2025-01-24T02:56:21.9418580Z adding 'torch/include/c10/util/WaitCounterDynamicBackend.h' 2025-01-24T02:56:21.9419920Z adding 'torch/include/c10/util/accumulate.h' 2025-01-24T02:56:21.9421260Z adding 'torch/include/c10/util/bit_cast.h' 2025-01-24T02:56:21.9422190Z adding 'torch/include/c10/util/bits.h' 2025-01-24T02:56:21.9426280Z adding 'torch/include/c10/util/complex.h' 2025-01-24T02:56:21.9428580Z adding 'torch/include/c10/util/complex_math.h' 2025-01-24T02:56:21.9429840Z adding 'torch/include/c10/util/complex_utils.h' 2025-01-24T02:56:21.9431020Z adding 'torch/include/c10/util/copysign.h' 2025-01-24T02:56:21.9432000Z adding 'torch/include/c10/util/env.h' 2025-01-24T02:56:21.9433020Z adding 'torch/include/c10/util/error.h' 2025-01-24T02:56:21.9443410Z adding 'torch/include/c10/util/flat_hash_map.h' 2025-01-24T02:56:21.9444840Z adding 'torch/include/c10/util/floating_point_utils.h' 2025-01-24T02:56:21.9446320Z adding 'torch/include/c10/util/generic_math.h' 2025-01-24T02:56:21.9449190Z adding 'torch/include/c10/util/hash.h' 2025-01-24T02:56:21.9452290Z adding 'torch/include/c10/util/int128.h' 2025-01-24T02:56:21.9459910Z adding 'torch/include/c10/util/intrusive_ptr.h' 2025-01-24T02:56:21.9461600Z adding 'torch/include/c10/util/irange.h' 2025-01-24T02:56:21.9467430Z adding 'torch/include/c10/util/llvmMathExtras.h' 2025-01-24T02:56:21.9469240Z adding 'torch/include/c10/util/logging_is_google_glog.h' 2025-01-24T02:56:21.9471560Z adding 'torch/include/c10/util/logging_is_not_google_glog.h' 2025-01-24T02:56:21.9472780Z adding 'torch/include/c10/util/numa.h' 2025-01-24T02:56:21.9484710Z adding 'torch/include/c10/util/order_preserving_flat_hash_map.h' 2025-01-24T02:56:21.9486430Z adding 'torch/include/c10/util/overflows.h' 2025-01-24T02:56:21.9487580Z adding 'torch/include/c10/util/overloaded.h' 2025-01-24T02:56:21.9488590Z adding 'torch/include/c10/util/python_stub.h' 2025-01-24T02:56:21.9489600Z adding 'torch/include/c10/util/qint32.h' 2025-01-24T02:56:21.9490690Z adding 'torch/include/c10/util/qint8.h' 2025-01-24T02:56:21.9491760Z adding 'torch/include/c10/util/quint2x4.h' 2025-01-24T02:56:21.9492790Z adding 'torch/include/c10/util/quint4x2.h' 2025-01-24T02:56:21.9493840Z adding 'torch/include/c10/util/quint8.h' 2025-01-24T02:56:21.9495190Z adding 'torch/include/c10/util/safe_numerics.h' 2025-01-24T02:56:21.9496790Z adding 'torch/include/c10/util/signal_handler.h' 2025-01-24T02:56:21.9502080Z adding 'torch/include/c10/util/sparse_bitset.h' 2025-01-24T02:56:21.9503480Z adding 'torch/include/c10/util/ssize.h' 2025-01-24T02:56:21.9504700Z adding 'torch/include/c10/util/static_tracepoint.h' 2025-01-24T02:56:21.9506780Z adding 'torch/include/c10/util/static_tracepoint_elfx86.h' 2025-01-24T02:56:21.9507880Z adding 'torch/include/c10/util/strides.h' 2025-01-24T02:56:21.9508970Z adding 'torch/include/c10/util/string_utils.h' 2025-01-24T02:56:21.9512500Z adding 'torch/include/c10/util/string_view.h' 2025-01-24T02:56:21.9517710Z adding 'torch/include/c10/util/strong_type.h' 2025-01-24T02:56:21.9519200Z adding 'torch/include/c10/util/tempfile.h' 2025-01-24T02:56:21.9520250Z adding 'torch/include/c10/util/thread_name.h' 2025-01-24T02:56:21.9525500Z adding 'torch/include/c10/util/typeid.h' 2025-01-24T02:56:21.9526750Z adding 'torch/include/c10/util/win32-headers.h' 2025-01-24T02:56:21.9528270Z adding 'torch/include/c10/xpu/XPUCachingAllocator.h' 2025-01-24T02:56:21.9530620Z adding 'torch/include/c10/xpu/XPUDeviceProp.h' 2025-01-24T02:56:21.9531810Z adding 'torch/include/c10/xpu/XPUException.h' 2025-01-24T02:56:21.9533030Z adding 'torch/include/c10/xpu/XPUFunctions.h' 2025-01-24T02:56:21.9534220Z adding 'torch/include/c10/xpu/XPUMacros.h' 2025-01-24T02:56:21.9536250Z adding 'torch/include/c10/xpu/XPUStream.h' 2025-01-24T02:56:21.9538550Z adding 'torch/include/c10/xpu/impl/XPUGuardImpl.h' 2025-01-24T02:56:21.9565050Z adding 'torch/include/caffe2/serialize/crc_alt.h' 2025-01-24T02:56:21.9566730Z adding 'torch/include/caffe2/serialize/file_adapter.h' 2025-01-24T02:56:21.9567950Z adding 'torch/include/caffe2/serialize/in_memory_adapter.h' 2025-01-24T02:56:21.9570940Z adding 'torch/include/caffe2/serialize/inline_container.h' 2025-01-24T02:56:21.9572100Z adding 'torch/include/caffe2/serialize/istream_adapter.h' 2025-01-24T02:56:21.9573280Z adding 'torch/include/caffe2/serialize/read_adapter_interface.h' 2025-01-24T02:56:21.9575360Z adding 'torch/include/caffe2/serialize/versions.h' 2025-01-24T02:56:21.9577460Z adding 'torch/include/kineto/AbstractConfig.h' 2025-01-24T02:56:21.9579130Z adding 'torch/include/kineto/ActivityProfilerInterface.h' 2025-01-24T02:56:21.9580240Z adding 'torch/include/kineto/ActivityTraceInterface.h' 2025-01-24T02:56:21.9581550Z adding 'torch/include/kineto/ActivityType.h' 2025-01-24T02:56:21.9582650Z adding 'torch/include/kineto/ClientInterface.h' 2025-01-24T02:56:21.9589760Z adding 'torch/include/kineto/Config.h' 2025-01-24T02:56:21.9590260Z adding 'torch/include/kineto/GenericTraceActivity.h' 2025-01-24T02:56:21.9590710Z adding 'torch/include/kineto/IActivityProfiler.h' 2025-01-24T02:56:21.9591080Z adding 'torch/include/kineto/ILoggerObserver.h' 2025-01-24T02:56:21.9592160Z adding 'torch/include/kineto/ITraceActivity.h' 2025-01-24T02:56:21.9593200Z adding 'torch/include/kineto/LoggingAPI.h' 2025-01-24T02:56:21.9594330Z adding 'torch/include/kineto/ThreadUtil.h' 2025-01-24T02:56:21.9595450Z adding 'torch/include/kineto/TraceSpan.h' 2025-01-24T02:56:21.9596990Z adding 'torch/include/kineto/libkineto.h' 2025-01-24T02:56:21.9598310Z adding 'torch/include/kineto/output_base.h' 2025-01-24T02:56:21.9599370Z adding 'torch/include/kineto/time_since_epoch.h' 2025-01-24T02:56:21.9604560Z adding 'torch/include/pybind11/attr.h' 2025-01-24T02:56:21.9606880Z adding 'torch/include/pybind11/buffer_info.h' 2025-01-24T02:56:21.9621950Z adding 'torch/include/pybind11/cast.h' 2025-01-24T02:56:21.9624570Z adding 'torch/include/pybind11/chrono.h' 2025-01-24T02:56:21.9625670Z adding 'torch/include/pybind11/common.h' 2025-01-24T02:56:21.9627060Z adding 'torch/include/pybind11/complex.h' 2025-01-24T02:56:21.9628410Z adding 'torch/include/pybind11/eigen.h' 2025-01-24T02:56:21.9631510Z adding 'torch/include/pybind11/embed.h' 2025-01-24T02:56:21.9633190Z adding 'torch/include/pybind11/eval.h' 2025-01-24T02:56:21.9635110Z adding 'torch/include/pybind11/functional.h' 2025-01-24T02:56:21.9637180Z adding 'torch/include/pybind11/gil.h' 2025-01-24T02:56:21.9638930Z adding 'torch/include/pybind11/gil_safe_call_once.h' 2025-01-24T02:56:21.9641280Z adding 'torch/include/pybind11/iostream.h' 2025-01-24T02:56:21.9658580Z adding 'torch/include/pybind11/numpy.h' 2025-01-24T02:56:21.9661300Z adding 'torch/include/pybind11/operators.h' 2025-01-24T02:56:21.9662760Z adding 'torch/include/pybind11/options.h' 2025-01-24T02:56:21.9689180Z adding 'torch/include/pybind11/pybind11.h' 2025-01-24T02:56:21.9709130Z adding 'torch/include/pybind11/pytypes.h' 2025-01-24T02:56:21.9712810Z adding 'torch/include/pybind11/stl.h' 2025-01-24T02:56:21.9718250Z adding 'torch/include/pybind11/stl_bind.h' 2025-01-24T02:56:21.9719830Z adding 'torch/include/pybind11/type_caster_pyobject_ptr.h' 2025-01-24T02:56:21.9721550Z adding 'torch/include/pybind11/typing.h' 2025-01-24T02:56:21.9728160Z adding 'torch/include/pybind11/detail/class.h' 2025-01-24T02:56:21.9739340Z adding 'torch/include/pybind11/detail/common.h' 2025-01-24T02:56:21.9741070Z adding 'torch/include/pybind11/detail/cpp_conduit.h' 2025-01-24T02:56:21.9742910Z adding 'torch/include/pybind11/detail/descr.h' 2025-01-24T02:56:21.9744470Z adding 'torch/include/pybind11/detail/exception_translation.h' 2025-01-24T02:56:21.9748230Z adding 'torch/include/pybind11/detail/init.h' 2025-01-24T02:56:21.9754880Z adding 'torch/include/pybind11/detail/internals.h' 2025-01-24T02:56:21.9765650Z adding 'torch/include/pybind11/detail/type_caster_base.h' 2025-01-24T02:56:21.9767110Z adding 'torch/include/pybind11/detail/typeid.h' 2025-01-24T02:56:21.9768560Z adding 'torch/include/pybind11/detail/value_and_holder.h' 2025-01-24T02:56:21.9769940Z adding 'torch/include/pybind11/eigen/common.h' 2025-01-24T02:56:21.9776640Z adding 'torch/include/pybind11/eigen/matrix.h' 2025-01-24T02:56:21.9780080Z adding 'torch/include/pybind11/eigen/tensor.h' 2025-01-24T02:56:21.9784840Z adding 'torch/include/torch/custom_class.h' 2025-01-24T02:56:21.9787450Z adding 'torch/include/torch/custom_class_detail.h' 2025-01-24T02:56:21.9788530Z adding 'torch/include/torch/extension.h' 2025-01-24T02:56:21.9797690Z adding 'torch/include/torch/library.h' 2025-01-24T02:56:21.9798890Z adding 'torch/include/torch/script.h' 2025-01-24T02:56:21.9801100Z adding 'torch/include/torch/csrc/CudaIPCTypes.h' 2025-01-24T02:56:21.9802250Z adding 'torch/include/torch/csrc/DataLoader.h' 2025-01-24T02:56:21.9803310Z adding 'torch/include/torch/csrc/Device.h' 2025-01-24T02:56:21.9804410Z adding 'torch/include/torch/csrc/DeviceAccelerator.h' 2025-01-24T02:56:21.9805570Z adding 'torch/include/torch/csrc/Dtype.h' 2025-01-24T02:56:21.9806790Z adding 'torch/include/torch/csrc/DynamicTypes.h' 2025-01-24T02:56:21.9807910Z adding 'torch/include/torch/csrc/Event.h' 2025-01-24T02:56:21.9811380Z adding 'torch/include/torch/csrc/Exceptions.h' 2025-01-24T02:56:21.9812520Z adding 'torch/include/torch/csrc/Export.h' 2025-01-24T02:56:21.9813700Z adding 'torch/include/torch/csrc/Generator.h' 2025-01-24T02:56:21.9814790Z adding 'torch/include/torch/csrc/Layout.h' 2025-01-24T02:56:21.9815910Z adding 'torch/include/torch/csrc/MemoryFormat.h' 2025-01-24T02:56:21.9816940Z adding 'torch/include/torch/csrc/Module.h' 2025-01-24T02:56:21.9817970Z adding 'torch/include/torch/csrc/PyInterpreter.h' 2025-01-24T02:56:21.9819050Z adding 'torch/include/torch/csrc/QScheme.h' 2025-01-24T02:56:21.9820130Z adding 'torch/include/torch/csrc/Size.h' 2025-01-24T02:56:21.9821350Z adding 'torch/include/torch/csrc/Storage.h' 2025-01-24T02:56:21.9822440Z adding 'torch/include/torch/csrc/StorageMethods.h' 2025-01-24T02:56:21.9823230Z adding 'torch/include/torch/csrc/StorageSharing.h' 2025-01-24T02:56:21.9824470Z adding 'torch/include/torch/csrc/Stream.h' 2025-01-24T02:56:21.9825530Z adding 'torch/include/torch/csrc/THConcat.h' 2025-01-24T02:56:21.9826660Z adding 'torch/include/torch/csrc/THP.h' 2025-01-24T02:56:21.9827760Z adding 'torch/include/torch/csrc/TypeInfo.h' 2025-01-24T02:56:21.9828800Z adding 'torch/include/torch/csrc/Types.h' 2025-01-24T02:56:21.9830070Z adding 'torch/include/torch/csrc/copy_utils.h' 2025-01-24T02:56:21.9831090Z adding 'torch/include/torch/csrc/itt_wrapper.h' 2025-01-24T02:56:21.9832130Z adding 'torch/include/torch/csrc/python_dimname.h' 2025-01-24T02:56:21.9833210Z adding 'torch/include/torch/csrc/python_headers.h' 2025-01-24T02:56:21.9834300Z adding 'torch/include/torch/csrc/serialization.h' 2025-01-24T02:56:21.9836400Z adding 'torch/include/torch/csrc/utils.h' 2025-01-24T02:56:21.9838520Z adding 'torch/include/torch/csrc/api/include/torch/all.h' 2025-01-24T02:56:21.9839780Z adding 'torch/include/torch/csrc/api/include/torch/arg.h' 2025-01-24T02:56:21.9840910Z adding 'torch/include/torch/csrc/api/include/torch/autograd.h' 2025-01-24T02:56:21.9842020Z adding 'torch/include/torch/csrc/api/include/torch/cuda.h' 2025-01-24T02:56:21.9842850Z adding 'torch/include/torch/csrc/api/include/torch/data.h' 2025-01-24T02:56:21.9846940Z adding 'torch/include/torch/csrc/api/include/torch/enum.h' 2025-01-24T02:56:21.9847430Z adding 'torch/include/torch/csrc/api/include/torch/expanding_array.h' 2025-01-24T02:56:21.9848820Z adding 'torch/include/torch/csrc/api/include/torch/fft.h' 2025-01-24T02:56:21.9850180Z adding 'torch/include/torch/csrc/api/include/torch/imethod.h' 2025-01-24T02:56:21.9851360Z adding 'torch/include/torch/csrc/api/include/torch/jit.h' 2025-01-24T02:56:21.9852540Z adding 'torch/include/torch/csrc/api/include/torch/mps.h' 2025-01-24T02:56:21.9853940Z adding 'torch/include/torch/csrc/api/include/torch/nested.h' 2025-01-24T02:56:21.9854790Z adding 'torch/include/torch/csrc/api/include/torch/nn.h' 2025-01-24T02:56:21.9856000Z adding 'torch/include/torch/csrc/api/include/torch/optim.h' 2025-01-24T02:56:21.9859460Z adding 'torch/include/torch/csrc/api/include/torch/ordered_dict.h' 2025-01-24T02:56:21.9861860Z adding 'torch/include/torch/csrc/api/include/torch/python.h' 2025-01-24T02:56:21.9863540Z adding 'torch/include/torch/csrc/api/include/torch/serialize.h' 2025-01-24T02:56:21.9864370Z adding 'torch/include/torch/csrc/api/include/torch/sparse.h' 2025-01-24T02:56:21.9868340Z adding 'torch/include/torch/csrc/api/include/torch/special.h' 2025-01-24T02:56:21.9869560Z adding 'torch/include/torch/csrc/api/include/torch/torch.h' 2025-01-24T02:56:21.9870850Z adding 'torch/include/torch/csrc/api/include/torch/types.h' 2025-01-24T02:56:21.9872340Z adding 'torch/include/torch/csrc/api/include/torch/utils.h' 2025-01-24T02:56:21.9873450Z adding 'torch/include/torch/csrc/api/include/torch/version.h' 2025-01-24T02:56:21.9874560Z adding 'torch/include/torch/csrc/api/include/torch/xpu.h' 2025-01-24T02:56:21.9876300Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader.h' 2025-01-24T02:56:21.9877790Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader_options.h' 2025-01-24T02:56:21.9878620Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets.h' 2025-01-24T02:56:21.9880020Z adding 'torch/include/torch/csrc/api/include/torch/data/example.h' 2025-01-24T02:56:21.9881910Z adding 'torch/include/torch/csrc/api/include/torch/data/iterator.h' 2025-01-24T02:56:21.9882700Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers.h' 2025-01-24T02:56:21.9884070Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms.h' 2025-01-24T02:56:21.9884940Z adding 'torch/include/torch/csrc/api/include/torch/data/worker_exception.h' 2025-01-24T02:56:21.9888040Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/base.h' 2025-01-24T02:56:21.9889610Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h' 2025-01-24T02:56:21.9891190Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h' 2025-01-24T02:56:21.9893350Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/base.h' 2025-01-24T02:56:21.9898410Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h' 2025-01-24T02:56:21.9900140Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/map.h' 2025-01-24T02:56:21.9901540Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h' 2025-01-24T02:56:21.9902960Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/shared.h' 2025-01-24T02:56:21.9904410Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h' 2025-01-24T02:56:21.9905190Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h' 2025-01-24T02:56:21.9907220Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h' 2025-01-24T02:56:21.9908700Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/queue.h' 2025-01-24T02:56:21.9910430Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h' 2025-01-24T02:56:21.9911870Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/base.h' 2025-01-24T02:56:21.9913150Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h' 2025-01-24T02:56:21.9914660Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h' 2025-01-24T02:56:21.9915940Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/random.h' 2025-01-24T02:56:21.9916950Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h' 2025-01-24T02:56:21.9918310Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h' 2025-01-24T02:56:21.9919610Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/stream.h' 2025-01-24T02:56:21.9921190Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/base.h' 2025-01-24T02:56:21.9922460Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/collate.h' 2025-01-24T02:56:21.9923710Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h' 2025-01-24T02:56:21.9924780Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/stack.h' 2025-01-24T02:56:21.9926260Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h' 2025-01-24T02:56:21.9929690Z adding 'torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h' 2025-01-24T02:56:21.9931280Z adding 'torch/include/torch/csrc/api/include/torch/detail/static.h' 2025-01-24T02:56:21.9933250Z adding 'torch/include/torch/csrc/api/include/torch/nn/cloneable.h' 2025-01-24T02:56:21.9934100Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional.h' 2025-01-24T02:56:21.9935900Z adding 'torch/include/torch/csrc/api/include/torch/nn/init.h' 2025-01-24T02:56:21.9941120Z adding 'torch/include/torch/csrc/api/include/torch/nn/module.h' 2025-01-24T02:56:21.9942370Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules.h' 2025-01-24T02:56:21.9943510Z adding 'torch/include/torch/csrc/api/include/torch/nn/options.h' 2025-01-24T02:56:21.9945070Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h' 2025-01-24T02:56:21.9947220Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl.h' 2025-01-24T02:56:21.9948050Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils.h' 2025-01-24T02:56:21.9953050Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/activation.h' 2025-01-24T02:56:21.9954530Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h' 2025-01-24T02:56:21.9956170Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/conv.h' 2025-01-24T02:56:21.9957630Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/distance.h' 2025-01-24T02:56:21.9959240Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h' 2025-01-24T02:56:21.9961170Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h' 2025-01-24T02:56:21.9962630Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/fold.h' 2025-01-24T02:56:21.9963570Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h' 2025-01-24T02:56:21.9965020Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/linear.h' 2025-01-24T02:56:21.9968810Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/loss.h' 2025-01-24T02:56:21.9970690Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h' 2025-01-24T02:56:21.9971700Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/padding.h' 2025-01-24T02:56:21.9973110Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h' 2025-01-24T02:56:21.9976910Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h' 2025-01-24T02:56:21.9979290Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h' 2025-01-24T02:56:21.9980840Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/vision.h' 2025-01-24T02:56:21.9982510Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h' 2025-01-24T02:56:21.9986000Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/activation.h' 2025-01-24T02:56:21.9987740Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h' 2025-01-24T02:56:21.9989800Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h' 2025-01-24T02:56:21.9991530Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/common.h' 2025-01-24T02:56:21.9994360Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/conv.h' 2025-01-24T02:56:21.9999320Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/distance.h' 2025-01-24T02:56:21.9999880Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h' 2025-01-24T02:56:22.0000450Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h' 2025-01-24T02:56:22.0001010Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/fold.h' 2025-01-24T02:56:22.0002430Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h' 2025-01-24T02:56:22.0004090Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/linear.h' 2025-01-24T02:56:22.0008780Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/loss.h' 2025-01-24T02:56:22.0010720Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h' 2025-01-24T02:56:22.0012950Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/padding.h' 2025-01-24T02:56:22.0014460Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h' 2025-01-24T02:56:22.0017960Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h' 2025-01-24T02:56:22.0020430Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h' 2025-01-24T02:56:22.0022390Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h' 2025-01-24T02:56:22.0024120Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h' 2025-01-24T02:56:22.0026020Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h' 2025-01-24T02:56:22.0027070Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h' 2025-01-24T02:56:22.0028560Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/utils.h' 2025-01-24T02:56:22.0032230Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h' 2025-01-24T02:56:22.0034180Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h' 2025-01-24T02:56:22.0035840Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h' 2025-01-24T02:56:22.0037530Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h' 2025-01-24T02:56:22.0039840Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h' 2025-01-24T02:56:22.0042390Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h' 2025-01-24T02:56:22.0043920Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h' 2025-01-24T02:56:22.0045600Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h' 2025-01-24T02:56:22.0047420Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h' 2025-01-24T02:56:22.0050760Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h' 2025-01-24T02:56:22.0053970Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/activation.h' 2025-01-24T02:56:22.0055310Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h' 2025-01-24T02:56:22.0056660Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h' 2025-01-24T02:56:22.0058780Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/conv.h' 2025-01-24T02:56:22.0060110Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/distance.h' 2025-01-24T02:56:22.0061550Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/dropout.h' 2025-01-24T02:56:22.0063530Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/embedding.h' 2025-01-24T02:56:22.0064920Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/fold.h' 2025-01-24T02:56:22.0066350Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h' 2025-01-24T02:56:22.0067760Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/linear.h' 2025-01-24T02:56:22.0071170Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/loss.h' 2025-01-24T02:56:22.0072920Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/normalization.h' 2025-01-24T02:56:22.0074640Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/padding.h' 2025-01-24T02:56:22.0075650Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h' 2025-01-24T02:56:22.0078440Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pooling.h' 2025-01-24T02:56:22.0080250Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/rnn.h' 2025-01-24T02:56:22.0081690Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformer.h' 2025-01-24T02:56:22.0082730Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h' 2025-01-24T02:56:22.0084270Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h' 2025-01-24T02:56:22.0085860Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h' 2025-01-24T02:56:22.0086750Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/vision.h' 2025-01-24T02:56:22.0090340Z adding 'torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h' 2025-01-24T02:56:22.0092310Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h' 2025-01-24T02:56:22.0093890Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h' 2025-01-24T02:56:22.0097060Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h' 2025-01-24T02:56:22.0099050Z adding 'torch/include/torch/csrc/api/include/torch/optim/adagrad.h' 2025-01-24T02:56:22.0100510Z adding 'torch/include/torch/csrc/api/include/torch/optim/adam.h' 2025-01-24T02:56:22.0101850Z adding 'torch/include/torch/csrc/api/include/torch/optim/adamw.h' 2025-01-24T02:56:22.0103350Z adding 'torch/include/torch/csrc/api/include/torch/optim/lbfgs.h' 2025-01-24T02:56:22.0105590Z adding 'torch/include/torch/csrc/api/include/torch/optim/optimizer.h' 2025-01-24T02:56:22.0106970Z adding 'torch/include/torch/csrc/api/include/torch/optim/rmsprop.h' 2025-01-24T02:56:22.0110110Z adding 'torch/include/torch/csrc/api/include/torch/optim/serialize.h' 2025-01-24T02:56:22.0111710Z adding 'torch/include/torch/csrc/api/include/torch/optim/sgd.h' 2025-01-24T02:56:22.0113510Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h' 2025-01-24T02:56:22.0114710Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h' 2025-01-24T02:56:22.0115770Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h' 2025-01-24T02:56:22.0117200Z adding 'torch/include/torch/csrc/api/include/torch/serialize/archive.h' 2025-01-24T02:56:22.0118870Z adding 'torch/include/torch/csrc/api/include/torch/serialize/input-archive.h' 2025-01-24T02:56:22.0120420Z adding 'torch/include/torch/csrc/api/include/torch/serialize/output-archive.h' 2025-01-24T02:56:22.0121060Z adding 'torch/include/torch/csrc/api/include/torch/serialize/tensor.h' 2025-01-24T02:56:22.0126830Z adding 'torch/include/torch/csrc/autograd/FunctionsManual.h' 2025-01-24T02:56:22.0127700Z adding 'torch/include/torch/csrc/autograd/InferenceMode.h' 2025-01-24T02:56:22.0131160Z adding 'torch/include/torch/csrc/autograd/VariableTypeUtils.h' 2025-01-24T02:56:22.0132510Z adding 'torch/include/torch/csrc/autograd/anomaly_mode.h' 2025-01-24T02:56:22.0134240Z adding 'torch/include/torch/csrc/autograd/autograd.h' 2025-01-24T02:56:22.0135630Z adding 'torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h' 2025-01-24T02:56:22.0136240Z adding 'torch/include/torch/csrc/autograd/cpp_hook.h' 2025-01-24T02:56:22.0140650Z adding 'torch/include/torch/csrc/autograd/custom_function.h' 2025-01-24T02:56:22.0141940Z adding 'torch/include/torch/csrc/autograd/edge.h' 2025-01-24T02:56:22.0144770Z adding 'torch/include/torch/csrc/autograd/engine.h' 2025-01-24T02:56:22.0147500Z adding 'torch/include/torch/csrc/autograd/forward_grad.h' 2025-01-24T02:56:22.0155050Z adding 'torch/include/torch/csrc/autograd/function.h' 2025-01-24T02:56:22.0156430Z adding 'torch/include/torch/csrc/autograd/function_hook.h' 2025-01-24T02:56:22.0157140Z adding 'torch/include/torch/csrc/autograd/grad_mode.h' 2025-01-24T02:56:22.0160100Z adding 'torch/include/torch/csrc/autograd/graph_task.h' 2025-01-24T02:56:22.0161400Z adding 'torch/include/torch/csrc/autograd/input_buffer.h' 2025-01-24T02:56:22.0162720Z adding 'torch/include/torch/csrc/autograd/input_metadata.h' 2025-01-24T02:56:22.0167680Z adding 'torch/include/torch/csrc/autograd/jit_decomp_interface.h' 2025-01-24T02:56:22.0168150Z adding 'torch/include/torch/csrc/autograd/profiler.h' 2025-01-24T02:56:22.0168570Z adding 'torch/include/torch/csrc/autograd/profiler_kineto.h' 2025-01-24T02:56:22.0169900Z adding 'torch/include/torch/csrc/autograd/profiler_legacy.h' 2025-01-24T02:56:22.0170540Z adding 'torch/include/torch/csrc/autograd/profiler_python.h' 2025-01-24T02:56:22.0172060Z adding 'torch/include/torch/csrc/autograd/python_anomaly_mode.h' 2025-01-24T02:56:22.0172740Z adding 'torch/include/torch/csrc/autograd/python_autograd.h' 2025-01-24T02:56:22.0174520Z adding 'torch/include/torch/csrc/autograd/python_cpp_function.h' 2025-01-24T02:56:22.0175360Z adding 'torch/include/torch/csrc/autograd/python_engine.h' 2025-01-24T02:56:22.0176680Z adding 'torch/include/torch/csrc/autograd/python_enum_tag.h' 2025-01-24T02:56:22.0177220Z adding 'torch/include/torch/csrc/autograd/python_fft_functions.h' 2025-01-24T02:56:22.0179330Z adding 'torch/include/torch/csrc/autograd/python_function.h' 2025-01-24T02:56:22.0180220Z adding 'torch/include/torch/csrc/autograd/python_hook.h' 2025-01-24T02:56:22.0181620Z adding 'torch/include/torch/csrc/autograd/python_legacy_variable.h' 2025-01-24T02:56:22.0182160Z adding 'torch/include/torch/csrc/autograd/python_linalg_functions.h' 2025-01-24T02:56:22.0183560Z adding 'torch/include/torch/csrc/autograd/python_nested_functions.h' 2025-01-24T02:56:22.0184060Z adding 'torch/include/torch/csrc/autograd/python_nn_functions.h' 2025-01-24T02:56:22.0185500Z adding 'torch/include/torch/csrc/autograd/python_saved_variable_hooks.h' 2025-01-24T02:56:22.0186030Z adding 'torch/include/torch/csrc/autograd/python_sparse_functions.h' 2025-01-24T02:56:22.0186930Z adding 'torch/include/torch/csrc/autograd/python_special_functions.h' 2025-01-24T02:56:22.0188340Z adding 'torch/include/torch/csrc/autograd/python_torch_functions.h' 2025-01-24T02:56:22.0189700Z adding 'torch/include/torch/csrc/autograd/python_variable.h' 2025-01-24T02:56:22.0191140Z adding 'torch/include/torch/csrc/autograd/python_variable_indexing.h' 2025-01-24T02:56:22.0191900Z adding 'torch/include/torch/csrc/autograd/record_function_ops.h' 2025-01-24T02:56:22.0193880Z adding 'torch/include/torch/csrc/autograd/saved_variable.h' 2025-01-24T02:56:22.0194630Z adding 'torch/include/torch/csrc/autograd/saved_variable_hooks.h' 2025-01-24T02:56:22.0195950Z adding 'torch/include/torch/csrc/autograd/symbolic.h' 2025-01-24T02:56:22.0205230Z adding 'torch/include/torch/csrc/autograd/variable.h' 2025-01-24T02:56:22.0206540Z adding 'torch/include/torch/csrc/autograd/variable_info.h' 2025-01-24T02:56:22.0210240Z adding 'torch/include/torch/csrc/autograd/functions/accumulate_grad.h' 2025-01-24T02:56:22.0211630Z adding 'torch/include/torch/csrc/autograd/functions/basic_ops.h' 2025-01-24T02:56:22.0212470Z adding 'torch/include/torch/csrc/autograd/functions/comm.h' 2025-01-24T02:56:22.0213800Z adding 'torch/include/torch/csrc/autograd/functions/pybind.h' 2025-01-24T02:56:22.0216060Z adding 'torch/include/torch/csrc/autograd/functions/tensor.h' 2025-01-24T02:56:22.0217440Z adding 'torch/include/torch/csrc/autograd/functions/utils.h' 2025-01-24T02:56:22.0254150Z adding 'torch/include/torch/csrc/autograd/generated/Functions.h' 2025-01-24T02:56:22.0257570Z adding 'torch/include/torch/csrc/autograd/generated/VariableType.h' 2025-01-24T02:56:22.0260800Z adding 'torch/include/torch/csrc/autograd/generated/ViewFuncs.h' 2025-01-24T02:56:22.0262200Z adding 'torch/include/torch/csrc/autograd/generated/python_functions.h' 2025-01-24T02:56:22.0263090Z adding 'torch/include/torch/csrc/autograd/generated/python_return_types.h' 2025-01-24T02:56:22.0267890Z adding 'torch/include/torch/csrc/autograd/generated/variable_factories.h' 2025-01-24T02:56:22.0269470Z adding 'torch/include/torch/csrc/autograd/utils/error_messages.h' 2025-01-24T02:56:22.0270900Z adding 'torch/include/torch/csrc/autograd/utils/grad_layout_contract.h' 2025-01-24T02:56:22.0271750Z adding 'torch/include/torch/csrc/autograd/utils/lambda_post_hook.h' 2025-01-24T02:56:22.0273180Z adding 'torch/include/torch/csrc/autograd/utils/python_arg_parsing.h' 2025-01-24T02:56:22.0273890Z adding 'torch/include/torch/csrc/autograd/utils/warnings.h' 2025-01-24T02:56:22.0275630Z adding 'torch/include/torch/csrc/autograd/utils/wrap_outputs.h' 2025-01-24T02:56:22.0277820Z adding 'torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h' 2025-01-24T02:56:22.0278560Z adding 'torch/include/torch/csrc/cuda/Event.h' 2025-01-24T02:56:22.0279880Z adding 'torch/include/torch/csrc/cuda/GdsFile.h' 2025-01-24T02:56:22.0280570Z adding 'torch/include/torch/csrc/cuda/Module.h' 2025-01-24T02:56:22.0281870Z adding 'torch/include/torch/csrc/cuda/Stream.h' 2025-01-24T02:56:22.0282520Z adding 'torch/include/torch/csrc/cuda/THCP.h' 2025-01-24T02:56:22.0283960Z adding 'torch/include/torch/csrc/cuda/comm.h' 2025-01-24T02:56:22.0284710Z adding 'torch/include/torch/csrc/cuda/device_set.h' 2025-01-24T02:56:22.0286070Z adding 'torch/include/torch/csrc/cuda/memory_snapshot.h' 2025-01-24T02:56:22.0287780Z adding 'torch/include/torch/csrc/cuda/nccl.h' 2025-01-24T02:56:22.0288540Z adding 'torch/include/torch/csrc/cuda/python_comm.h' 2025-01-24T02:56:22.0289900Z adding 'torch/include/torch/csrc/cuda/python_nccl.h' 2025-01-24T02:56:22.0292830Z adding 'torch/include/torch/csrc/distributed/autograd/context/container.h' 2025-01-24T02:56:22.0294920Z adding 'torch/include/torch/csrc/distributed/autograd/context/context.h' 2025-01-24T02:56:22.0296510Z adding 'torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h' 2025-01-24T02:56:22.0297710Z adding 'torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h' 2025-01-24T02:56:22.0299090Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h' 2025-01-24T02:56:22.0300350Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h' 2025-01-24T02:56:22.0301100Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h' 2025-01-24T02:56:22.0302540Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h' 2025-01-24T02:56:22.0303760Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h' 2025-01-24T02:56:22.0304980Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h' 2025-01-24T02:56:22.0306440Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h' 2025-01-24T02:56:22.0307650Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h' 2025-01-24T02:56:22.0308370Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h' 2025-01-24T02:56:22.0309690Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h' 2025-01-24T02:56:22.0312920Z adding 'torch/include/torch/csrc/distributed/c10d/Backend.hpp' 2025-01-24T02:56:22.0313680Z adding 'torch/include/torch/csrc/distributed/c10d/Backoff.hpp' 2025-01-24T02:56:22.0316720Z adding 'torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemory-inl.h' 2025-01-24T02:56:22.0318210Z adding 'torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemory.hpp' 2025-01-24T02:56:22.0319410Z adding 'torch/include/torch/csrc/distributed/c10d/DMAConnectivity.hpp' 2025-01-24T02:56:22.0320960Z adding 'torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp' 2025-01-24T02:56:22.0322120Z adding 'torch/include/torch/csrc/distributed/c10d/FileStore.hpp' 2025-01-24T02:56:22.0324580Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp' 2025-01-24T02:56:22.0325420Z adding 'torch/include/torch/csrc/distributed/c10d/Functional.hpp' 2025-01-24T02:56:22.0326670Z adding 'torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp' 2025-01-24T02:56:22.0327510Z adding 'torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp' 2025-01-24T02:56:22.0328760Z adding 'torch/include/torch/csrc/distributed/c10d/HashStore.hpp' 2025-01-24T02:56:22.0331760Z adding 'torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp' 2025-01-24T02:56:22.0332970Z adding 'torch/include/torch/csrc/distributed/c10d/NanCheck.hpp' 2025-01-24T02:56:22.0334680Z adding 'torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp' 2025-01-24T02:56:22.0335910Z adding 'torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp' 2025-01-24T02:56:22.0340950Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp' 2025-01-24T02:56:22.0344270Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp' 2025-01-24T02:56:22.0346800Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp' 2025-01-24T02:56:22.0358420Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp' 2025-01-24T02:56:22.0360990Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp' 2025-01-24T02:56:22.0362600Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp' 2025-01-24T02:56:22.0364570Z adding 'torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp' 2025-01-24T02:56:22.0365880Z adding 'torch/include/torch/csrc/distributed/c10d/RankLocal.hpp' 2025-01-24T02:56:22.0367290Z adding 'torch/include/torch/csrc/distributed/c10d/Store.hpp' 2025-01-24T02:56:22.0369310Z adding 'torch/include/torch/csrc/distributed/c10d/SymmetricMemory.hpp' 2025-01-24T02:56:22.0370950Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStore.hpp' 2025-01-24T02:56:22.0372200Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp' 2025-01-24T02:56:22.0374700Z adding 'torch/include/torch/csrc/distributed/c10d/TraceUtils.h' 2025-01-24T02:56:22.0376380Z adding 'torch/include/torch/csrc/distributed/c10d/Types.hpp' 2025-01-24T02:56:22.0377710Z adding 'torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp' 2025-01-24T02:56:22.0379540Z adding 'torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp' 2025-01-24T02:56:22.0380780Z adding 'torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp' 2025-01-24T02:56:22.0385050Z adding 'torch/include/torch/csrc/distributed/c10d/Utils.hpp' 2025-01-24T02:56:22.0389520Z adding 'torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp' 2025-01-24T02:56:22.0389710Z adding 'torch/include/torch/csrc/distributed/c10d/Work.hpp' 2025-01-24T02:56:22.0389880Z adding 'torch/include/torch/csrc/distributed/c10d/c10d.h' 2025-01-24T02:56:22.0390440Z adding 'torch/include/torch/csrc/distributed/c10d/comm.hpp' 2025-01-24T02:56:22.0391630Z adding 'torch/include/torch/csrc/distributed/c10d/debug.h' 2025-01-24T02:56:22.0393030Z adding 'torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp' 2025-01-24T02:56:22.0394170Z adding 'torch/include/torch/csrc/distributed/c10d/error.h' 2025-01-24T02:56:22.0395050Z adding 'torch/include/torch/csrc/distributed/c10d/exception.h' 2025-01-24T02:56:22.0396510Z adding 'torch/include/torch/csrc/distributed/c10d/intra_node_comm.hpp' 2025-01-24T02:56:22.0398350Z adding 'torch/include/torch/csrc/distributed/c10d/logger.hpp' 2025-01-24T02:56:22.0399590Z adding 'torch/include/torch/csrc/distributed/c10d/logging.h' 2025-01-24T02:56:22.0400510Z adding 'torch/include/torch/csrc/distributed/c10d/python_comm_hook.h' 2025-01-24T02:56:22.0406890Z adding 'torch/include/torch/csrc/distributed/c10d/reducer.hpp' 2025-01-24T02:56:22.0408350Z adding 'torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp' 2025-01-24T02:56:22.0409580Z adding 'torch/include/torch/csrc/distributed/c10d/sequence_num.hpp' 2025-01-24T02:56:22.0410780Z adding 'torch/include/torch/csrc/distributed/c10d/socket.h' 2025-01-24T02:56:22.0411980Z adding 'torch/include/torch/csrc/distributed/c10d/socket_fmt.h' 2025-01-24T02:56:22.0413500Z adding 'torch/include/torch/csrc/distributed/rpc/agent_utils.h' 2025-01-24T02:56:22.0415580Z adding 'torch/include/torch/csrc/distributed/rpc/message.h' 2025-01-24T02:56:22.0416990Z adding 'torch/include/torch/csrc/distributed/rpc/py_rref.h' 2025-01-24T02:56:22.0418200Z adding 'torch/include/torch/csrc/distributed/rpc/python_call.h' 2025-01-24T02:56:22.0419420Z adding 'torch/include/torch/csrc/distributed/rpc/python_functions.h' 2025-01-24T02:56:22.0420660Z adding 'torch/include/torch/csrc/distributed/rpc/python_remote_call.h' 2025-01-24T02:56:22.0421260Z adding 'torch/include/torch/csrc/distributed/rpc/python_resp.h' 2025-01-24T02:56:22.0423270Z adding 'torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h' 2025-01-24T02:56:22.0424470Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback.h' 2025-01-24T02:56:22.0425750Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_impl.h' 2025-01-24T02:56:22.0426960Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h' 2025-01-24T02:56:22.0427520Z adding 'torch/include/torch/csrc/distributed/rpc/rpc.h' 2025-01-24T02:56:22.0431180Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_agent.h' 2025-01-24T02:56:22.0432430Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_command_base.h' 2025-01-24T02:56:22.0436620Z adding 'torch/include/torch/csrc/distributed/rpc/rref_context.h' 2025-01-24T02:56:22.0441020Z adding 'torch/include/torch/csrc/distributed/rpc/rref_impl.h' 2025-01-24T02:56:22.0442640Z adding 'torch/include/torch/csrc/distributed/rpc/rref_proto.h' 2025-01-24T02:56:22.0443960Z adding 'torch/include/torch/csrc/distributed/rpc/script_call.h' 2025-01-24T02:56:22.0445210Z adding 'torch/include/torch/csrc/distributed/rpc/script_remote_call.h' 2025-01-24T02:56:22.0446400Z adding 'torch/include/torch/csrc/distributed/rpc/script_resp.h' 2025-01-24T02:56:22.0450450Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h' 2025-01-24T02:56:22.0452170Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h' 2025-01-24T02:56:22.0453410Z adding 'torch/include/torch/csrc/distributed/rpc/torchscript_functions.h' 2025-01-24T02:56:22.0454580Z adding 'torch/include/torch/csrc/distributed/rpc/types.h' 2025-01-24T02:56:22.0455880Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h' 2025-01-24T02:56:22.0457160Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h' 2025-01-24T02:56:22.0458560Z adding 'torch/include/torch/csrc/distributed/rpc/utils.h' 2025-01-24T02:56:22.0460360Z adding 'torch/include/torch/csrc/dynamo/cache_entry.h' 2025-01-24T02:56:22.0466050Z adding 'torch/include/torch/csrc/dynamo/compiled_autograd.h' 2025-01-24T02:56:22.0467200Z adding 'torch/include/torch/csrc/dynamo/cpp_shim.h' 2025-01-24T02:56:22.0468250Z adding 'torch/include/torch/csrc/dynamo/cpython_defs.h' 2025-01-24T02:56:22.0469470Z adding 'torch/include/torch/csrc/dynamo/cpython_includes.h' 2025-01-24T02:56:22.0470830Z adding 'torch/include/torch/csrc/dynamo/debug_macros.h' 2025-01-24T02:56:22.0471710Z adding 'torch/include/torch/csrc/dynamo/eval_frame.h' 2025-01-24T02:56:22.0473590Z adding 'torch/include/torch/csrc/dynamo/extra_state.h' 2025-01-24T02:56:22.0475030Z adding 'torch/include/torch/csrc/dynamo/framelocals_mapping.h' 2025-01-24T02:56:22.0476350Z adding 'torch/include/torch/csrc/dynamo/guards.h' 2025-01-24T02:56:22.0477220Z adding 'torch/include/torch/csrc/dynamo/init.h' 2025-01-24T02:56:22.0478360Z adding 'torch/include/torch/csrc/dynamo/python_compiled_autograd.h' 2025-01-24T02:56:22.0479140Z adding 'torch/include/torch/csrc/dynamo/utils.h' 2025-01-24T02:56:22.0480680Z adding 'torch/include/torch/csrc/inductor/inductor_ops.h' 2025-01-24T02:56:22.0482190Z adding 'torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h' 2025-01-24T02:56:22.0482990Z adding 'torch/include/torch/csrc/inductor/aoti_package/pybind.h' 2025-01-24T02:56:22.0484980Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h' 2025-01-24T02:56:22.0485870Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h' 2025-01-24T02:56:22.0487130Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h' 2025-01-24T02:56:22.0488460Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h' 2025-01-24T02:56:22.0489480Z adding 'torch/include/torch/csrc/inductor/aoti_runner/pybind.h' 2025-01-24T02:56:22.0492360Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h' 2025-01-24T02:56:22.0493670Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h' 2025-01-24T02:56:22.0495560Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/interface.h' 2025-01-24T02:56:22.0500180Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model.h' 2025-01-24T02:56:22.0504460Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_container.h' 2025-01-24T02:56:22.0505730Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h' 2025-01-24T02:56:22.0507690Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h' 2025-01-24T02:56:22.0509090Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h' 2025-01-24T02:56:22.0510860Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils.h' 2025-01-24T02:56:22.0512070Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h' 2025-01-24T02:56:22.0513300Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h' 2025-01-24T02:56:22.0514560Z adding 'torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h' 2025-01-24T02:56:22.0515950Z adding 'torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h' 2025-01-24T02:56:22.0516800Z adding 'torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h' 2025-01-24T02:56:22.0518060Z adding 'torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h' 2025-01-24T02:56:22.0519620Z adding 'torch/include/torch/csrc/inductor/aoti_torch/utils.h' 2025-01-24T02:56:22.0524160Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim.h' 2025-01-24T02:56:22.0525890Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_mkldnn.h' 2025-01-24T02:56:22.0527090Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h' 2025-01-24T02:56:22.0530530Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h' 2025-01-24T02:56:22.0534520Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h' 2025-01-24T02:56:22.0536340Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h' 2025-01-24T02:56:22.0538480Z adding 'torch/include/torch/csrc/jit/jit_log.h' 2025-01-24T02:56:22.0539550Z adding 'torch/include/torch/csrc/jit/jit_opt_limit.h' 2025-01-24T02:56:22.0540780Z adding 'torch/include/torch/csrc/jit/resource_guard.h' 2025-01-24T02:56:22.0544130Z adding 'torch/include/torch/csrc/jit/api/compilation_unit.h' 2025-01-24T02:56:22.0546100Z adding 'torch/include/torch/csrc/jit/api/function_impl.h' 2025-01-24T02:56:22.0548350Z adding 'torch/include/torch/csrc/jit/api/method.h' 2025-01-24T02:56:22.0553810Z adding 'torch/include/torch/csrc/jit/api/module.h' 2025-01-24T02:56:22.0555940Z adding 'torch/include/torch/csrc/jit/api/object.h' 2025-01-24T02:56:22.0557940Z adding 'torch/include/torch/csrc/jit/backends/backend.h' 2025-01-24T02:56:22.0560210Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_handler.h' 2025-01-24T02:56:22.0561690Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_info.h' 2025-01-24T02:56:22.0563030Z adding 'torch/include/torch/csrc/jit/backends/backend_detail.h' 2025-01-24T02:56:22.0564430Z adding 'torch/include/torch/csrc/jit/backends/backend_exception.h' 2025-01-24T02:56:22.0565620Z adding 'torch/include/torch/csrc/jit/backends/backend_init.h' 2025-01-24T02:56:22.0566870Z adding 'torch/include/torch/csrc/jit/backends/backend_interface.h' 2025-01-24T02:56:22.0568170Z adding 'torch/include/torch/csrc/jit/backends/backend_preprocess.h' 2025-01-24T02:56:22.0569060Z adding 'torch/include/torch/csrc/jit/backends/backend_resolver.h' 2025-01-24T02:56:22.0570990Z adding 'torch/include/torch/csrc/jit/codegen/cuda/interface.h' 2025-01-24T02:56:22.0572590Z adding 'torch/include/torch/csrc/jit/frontend/builtin_functions.h' 2025-01-24T02:56:22.0573900Z adding 'torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h' 2025-01-24T02:56:22.0576360Z adding 'torch/include/torch/csrc/jit/frontend/concrete_module_type.h' 2025-01-24T02:56:22.0577580Z adding 'torch/include/torch/csrc/jit/frontend/convert_to_ssa.h' 2025-01-24T02:56:22.0578230Z adding 'torch/include/torch/csrc/jit/frontend/edit_distance.h' 2025-01-24T02:56:22.0579810Z adding 'torch/include/torch/csrc/jit/frontend/error_report.h' 2025-01-24T02:56:22.0581040Z adding 'torch/include/torch/csrc/jit/frontend/exit_transforms.h' 2025-01-24T02:56:22.0581940Z adding 'torch/include/torch/csrc/jit/frontend/function_schema_parser.h' 2025-01-24T02:56:22.0583230Z adding 'torch/include/torch/csrc/jit/frontend/inline_loop_condition.h' 2025-01-24T02:56:22.0583960Z adding 'torch/include/torch/csrc/jit/frontend/ir_emitter.h' 2025-01-24T02:56:22.0588920Z adding 'torch/include/torch/csrc/jit/frontend/lexer.h' 2025-01-24T02:56:22.0590300Z adding 'torch/include/torch/csrc/jit/frontend/mini_environment.h' 2025-01-24T02:56:22.0591500Z adding 'torch/include/torch/csrc/jit/frontend/name_mangler.h' 2025-01-24T02:56:22.0592820Z adding 'torch/include/torch/csrc/jit/frontend/parse_string_literal.h' 2025-01-24T02:56:22.0593970Z adding 'torch/include/torch/csrc/jit/frontend/parser.h' 2025-01-24T02:56:22.0594880Z adding 'torch/include/torch/csrc/jit/frontend/parser_constants.h' 2025-01-24T02:56:22.0596260Z adding 'torch/include/torch/csrc/jit/frontend/resolver.h' 2025-01-24T02:56:22.0597610Z adding 'torch/include/torch/csrc/jit/frontend/schema_matching.h' 2025-01-24T02:56:22.0598840Z adding 'torch/include/torch/csrc/jit/frontend/schema_type_parser.h' 2025-01-24T02:56:22.0600070Z adding 'torch/include/torch/csrc/jit/frontend/script_type_parser.h' 2025-01-24T02:56:22.0603310Z adding 'torch/include/torch/csrc/jit/frontend/source_range.h' 2025-01-24T02:56:22.0604680Z adding 'torch/include/torch/csrc/jit/frontend/source_ref.h' 2025-01-24T02:56:22.0605520Z adding 'torch/include/torch/csrc/jit/frontend/strtod.h' 2025-01-24T02:56:22.0611170Z adding 'torch/include/torch/csrc/jit/frontend/sugared_value.h' 2025-01-24T02:56:22.0614030Z adding 'torch/include/torch/csrc/jit/frontend/tracer.h' 2025-01-24T02:56:22.0616300Z adding 'torch/include/torch/csrc/jit/frontend/tree.h' 2025-01-24T02:56:22.0622950Z adding 'torch/include/torch/csrc/jit/frontend/tree_views.h' 2025-01-24T02:56:22.0624290Z adding 'torch/include/torch/csrc/jit/frontend/versioned_symbols.h' 2025-01-24T02:56:22.0627980Z adding 'torch/include/torch/csrc/jit/ir/alias_analysis.h' 2025-01-24T02:56:22.0629700Z adding 'torch/include/torch/csrc/jit/ir/attributes.h' 2025-01-24T02:56:22.0631150Z adding 'torch/include/torch/csrc/jit/ir/constants.h' 2025-01-24T02:56:22.0633160Z adding 'torch/include/torch/csrc/jit/ir/graph_node_list.h' 2025-01-24T02:56:22.0634060Z adding 'torch/include/torch/csrc/jit/ir/graph_utils.h' 2025-01-24T02:56:22.0646900Z adding 'torch/include/torch/csrc/jit/ir/ir.h' 2025-01-24T02:56:22.0648970Z adding 'torch/include/torch/csrc/jit/ir/ir_views.h' 2025-01-24T02:56:22.0650250Z adding 'torch/include/torch/csrc/jit/ir/irparser.h' 2025-01-24T02:56:22.0651720Z adding 'torch/include/torch/csrc/jit/ir/named_value.h' 2025-01-24T02:56:22.0652960Z adding 'torch/include/torch/csrc/jit/ir/node_hashing.h' 2025-01-24T02:56:22.0654920Z adding 'torch/include/torch/csrc/jit/ir/scope.h' 2025-01-24T02:56:22.0656620Z adding 'torch/include/torch/csrc/jit/ir/subgraph_matcher.h' 2025-01-24T02:56:22.0657820Z adding 'torch/include/torch/csrc/jit/ir/type_hashing.h' 2025-01-24T02:56:22.0659480Z adding 'torch/include/torch/csrc/jit/mobile/code.h' 2025-01-24T02:56:22.0660870Z adding 'torch/include/torch/csrc/jit/mobile/debug_info.h' 2025-01-24T02:56:22.0662970Z adding 'torch/include/torch/csrc/jit/mobile/file_format.h' 2025-01-24T02:56:22.0664790Z adding 'torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h' 2025-01-24T02:56:22.0665980Z adding 'torch/include/torch/csrc/jit/mobile/frame.h' 2025-01-24T02:56:22.0667510Z adding 'torch/include/torch/csrc/jit/mobile/function.h' 2025-01-24T02:56:22.0669060Z adding 'torch/include/torch/csrc/jit/mobile/import.h' 2025-01-24T02:56:22.0670270Z adding 'torch/include/torch/csrc/jit/mobile/import_data.h' 2025-01-24T02:56:22.0671530Z adding 'torch/include/torch/csrc/jit/mobile/import_export_common.h' 2025-01-24T02:56:22.0672390Z adding 'torch/include/torch/csrc/jit/mobile/interpreter.h' 2025-01-24T02:56:22.0673710Z adding 'torch/include/torch/csrc/jit/mobile/method.h' 2025-01-24T02:56:22.0675620Z adding 'torch/include/torch/csrc/jit/mobile/module.h' 2025-01-24T02:56:22.0677210Z adding 'torch/include/torch/csrc/jit/mobile/observer.h' 2025-01-24T02:56:22.0678450Z adding 'torch/include/torch/csrc/jit/mobile/parse_bytecode.h' 2025-01-24T02:56:22.0679750Z adding 'torch/include/torch/csrc/jit/mobile/parse_operators.h' 2025-01-24T02:56:22.0680900Z adding 'torch/include/torch/csrc/jit/mobile/prim_ops_registery.h' 2025-01-24T02:56:22.0682500Z adding 'torch/include/torch/csrc/jit/mobile/profiler_edge.h' 2025-01-24T02:56:22.0683740Z adding 'torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h' 2025-01-24T02:56:22.0687620Z adding 'torch/include/torch/csrc/jit/mobile/quantization.h' 2025-01-24T02:56:22.0687870Z adding 'torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h' 2025-01-24T02:56:22.0688060Z adding 'torch/include/torch/csrc/jit/mobile/type_parser.h' 2025-01-24T02:56:22.0688290Z adding 'torch/include/torch/csrc/jit/mobile/upgrader_mobile.h' 2025-01-24T02:56:22.0690700Z adding 'torch/include/torch/csrc/jit/passes/add_if_then_else.h' 2025-01-24T02:56:22.0691810Z adding 'torch/include/torch/csrc/jit/passes/annotate_warns.h' 2025-01-24T02:56:22.0692710Z adding 'torch/include/torch/csrc/jit/passes/autocast.h' 2025-01-24T02:56:22.0694040Z adding 'torch/include/torch/csrc/jit/passes/bailout_graph.h' 2025-01-24T02:56:22.0694880Z adding 'torch/include/torch/csrc/jit/passes/batch_mm.h' 2025-01-24T02:56:22.0696120Z adding 'torch/include/torch/csrc/jit/passes/canonicalize.h' 2025-01-24T02:56:22.0697410Z adding 'torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h' 2025-01-24T02:56:22.0697990Z adding 'torch/include/torch/csrc/jit/passes/check_strict_fusion.h' 2025-01-24T02:56:22.0699320Z adding 'torch/include/torch/csrc/jit/passes/clear_profiling.h' 2025-01-24T02:56:22.0700520Z adding 'torch/include/torch/csrc/jit/passes/clear_undefinedness.h' 2025-01-24T02:56:22.0701490Z adding 'torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h' 2025-01-24T02:56:22.0702520Z adding 'torch/include/torch/csrc/jit/passes/concat_opt.h' 2025-01-24T02:56:22.0703440Z adding 'torch/include/torch/csrc/jit/passes/constant_pooling.h' 2025-01-24T02:56:22.0704800Z adding 'torch/include/torch/csrc/jit/passes/constant_propagation.h' 2025-01-24T02:56:22.0705760Z adding 'torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h' 2025-01-24T02:56:22.0706990Z adding 'torch/include/torch/csrc/jit/passes/create_functional_graphs.h' 2025-01-24T02:56:22.0708170Z adding 'torch/include/torch/csrc/jit/passes/dead_code_elimination.h' 2025-01-24T02:56:22.0709030Z adding 'torch/include/torch/csrc/jit/passes/decompose_ops.h' 2025-01-24T02:56:22.0710260Z adding 'torch/include/torch/csrc/jit/passes/device_type_analysis.h' 2025-01-24T02:56:22.0711100Z adding 'torch/include/torch/csrc/jit/passes/dtype_analysis.h' 2025-01-24T02:56:22.0712430Z adding 'torch/include/torch/csrc/jit/passes/eliminate_no_ops.h' 2025-01-24T02:56:22.0713320Z adding 'torch/include/torch/csrc/jit/passes/erase_number_types.h' 2025-01-24T02:56:22.0714730Z adding 'torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h' 2025-01-24T02:56:22.0715870Z adding 'torch/include/torch/csrc/jit/passes/fold_conv_bn.h' 2025-01-24T02:56:22.0717080Z adding 'torch/include/torch/csrc/jit/passes/fold_linear_bn.h' 2025-01-24T02:56:22.0718270Z adding 'torch/include/torch/csrc/jit/passes/freeze_module.h' 2025-01-24T02:56:22.0719200Z adding 'torch/include/torch/csrc/jit/passes/frozen_concat_linear.h' 2025-01-24T02:56:22.0720170Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h' 2025-01-24T02:56:22.0721350Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_folding.h' 2025-01-24T02:56:22.0722570Z adding 'torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h' 2025-01-24T02:56:22.0723240Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_folding.h' 2025-01-24T02:56:22.0724530Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h' 2025-01-24T02:56:22.0725730Z adding 'torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h' 2025-01-24T02:56:22.0726360Z adding 'torch/include/torch/csrc/jit/passes/fuse_linear.h' 2025-01-24T02:56:22.0727650Z adding 'torch/include/torch/csrc/jit/passes/fuse_relu.h' 2025-01-24T02:56:22.0728880Z adding 'torch/include/torch/csrc/jit/passes/graph_fuser.h' 2025-01-24T02:56:22.0730150Z adding 'torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h' 2025-01-24T02:56:22.0731410Z adding 'torch/include/torch/csrc/jit/passes/guard_elimination.h' 2025-01-24T02:56:22.0732080Z adding 'torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h' 2025-01-24T02:56:22.0733400Z adding 'torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h' 2025-01-24T02:56:22.0734580Z adding 'torch/include/torch/csrc/jit/passes/inline_fork_wait.h' 2025-01-24T02:56:22.0735210Z adding 'torch/include/torch/csrc/jit/passes/inline_forked_closures.h' 2025-01-24T02:56:22.0736480Z adding 'torch/include/torch/csrc/jit/passes/inliner.h' 2025-01-24T02:56:22.0737430Z adding 'torch/include/torch/csrc/jit/passes/inplace_check.h' 2025-01-24T02:56:22.0738640Z adding 'torch/include/torch/csrc/jit/passes/insert_guards.h' 2025-01-24T02:56:22.0740010Z adding 'torch/include/torch/csrc/jit/passes/integer_value_refinement.h' 2025-01-24T02:56:22.0740850Z adding 'torch/include/torch/csrc/jit/passes/lift_closures.h' 2025-01-24T02:56:22.0742080Z adding 'torch/include/torch/csrc/jit/passes/liveness.h' 2025-01-24T02:56:22.0743400Z adding 'torch/include/torch/csrc/jit/passes/loop_unrolling.h' 2025-01-24T02:56:22.0744030Z adding 'torch/include/torch/csrc/jit/passes/lower_grad_of.h' 2025-01-24T02:56:22.0745420Z adding 'torch/include/torch/csrc/jit/passes/lower_graph.h' 2025-01-24T02:56:22.0746610Z adding 'torch/include/torch/csrc/jit/passes/lower_tuples.h' 2025-01-24T02:56:22.0747530Z adding 'torch/include/torch/csrc/jit/passes/metal_rewrite.h' 2025-01-24T02:56:22.0748700Z adding 'torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h' 2025-01-24T02:56:22.0749960Z adding 'torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h' 2025-01-24T02:56:22.0750590Z adding 'torch/include/torch/csrc/jit/passes/normalize_ops.h' 2025-01-24T02:56:22.0752130Z adding 'torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h' 2025-01-24T02:56:22.0753320Z adding 'torch/include/torch/csrc/jit/passes/onnx.h' 2025-01-24T02:56:22.0755050Z adding 'torch/include/torch/csrc/jit/passes/pass_manager.h' 2025-01-24T02:56:22.0756190Z adding 'torch/include/torch/csrc/jit/passes/peephole.h' 2025-01-24T02:56:22.0757150Z adding 'torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h' 2025-01-24T02:56:22.0758350Z adding 'torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h' 2025-01-24T02:56:22.0759640Z adding 'torch/include/torch/csrc/jit/passes/peephole_list_idioms.h' 2025-01-24T02:56:22.0760550Z adding 'torch/include/torch/csrc/jit/passes/peephole_non_tensor.h' 2025-01-24T02:56:22.0761780Z adding 'torch/include/torch/csrc/jit/passes/prepack_folding.h' 2025-01-24T02:56:22.0762640Z adding 'torch/include/torch/csrc/jit/passes/refine_tuple_types.h' 2025-01-24T02:56:22.0763830Z adding 'torch/include/torch/csrc/jit/passes/remove_dropout.h' 2025-01-24T02:56:22.0765040Z adding 'torch/include/torch/csrc/jit/passes/remove_exceptions.h' 2025-01-24T02:56:22.0765910Z adding 'torch/include/torch/csrc/jit/passes/remove_expands.h' 2025-01-24T02:56:22.0767120Z adding 'torch/include/torch/csrc/jit/passes/remove_inplace_ops.h' 2025-01-24T02:56:22.0768330Z adding 'torch/include/torch/csrc/jit/passes/remove_mutation.h' 2025-01-24T02:56:22.0769560Z adding 'torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h' 2025-01-24T02:56:22.0770220Z adding 'torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h' 2025-01-24T02:56:22.0771430Z adding 'torch/include/torch/csrc/jit/passes/requires_grad_analysis.h' 2025-01-24T02:56:22.0772620Z adding 'torch/include/torch/csrc/jit/passes/restore_mutation.h' 2025-01-24T02:56:22.0773810Z adding 'torch/include/torch/csrc/jit/passes/shape_analysis.h' 2025-01-24T02:56:22.0775040Z adding 'torch/include/torch/csrc/jit/passes/specialize_autogradzero.h' 2025-01-24T02:56:22.0776520Z adding 'torch/include/torch/csrc/jit/passes/subgraph_rewrite.h' 2025-01-24T02:56:22.0777860Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h' 2025-01-24T02:56:22.0779080Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h' 2025-01-24T02:56:22.0780450Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h' 2025-01-24T02:56:22.0781810Z adding 'torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h' 2025-01-24T02:56:22.0783130Z adding 'torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h' 2025-01-24T02:56:22.0784280Z adding 'torch/include/torch/csrc/jit/passes/value_refinement_utils.h' 2025-01-24T02:56:22.0785440Z adding 'torch/include/torch/csrc/jit/passes/variadic_ops.h' 2025-01-24T02:56:22.0786330Z adding 'torch/include/torch/csrc/jit/passes/vulkan_rewrite.h' 2025-01-24T02:56:22.0787540Z adding 'torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h' 2025-01-24T02:56:22.0789160Z adding 'torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h' 2025-01-24T02:56:22.0790590Z adding 'torch/include/torch/csrc/jit/passes/quantization/finalize.h' 2025-01-24T02:56:22.0791800Z adding 'torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h' 2025-01-24T02:56:22.0793760Z adding 'torch/include/torch/csrc/jit/passes/quantization/helper.h' 2025-01-24T02:56:22.0795120Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_observers.h' 2025-01-24T02:56:22.0796360Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h' 2025-01-24T02:56:22.0802610Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h' 2025-01-24T02:56:22.0803980Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_type.h' 2025-01-24T02:56:22.0805210Z adding 'torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h' 2025-01-24T02:56:22.0806550Z adding 'torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h' 2025-01-24T02:56:22.0808580Z adding 'torch/include/torch/csrc/jit/passes/utils/memory_dag.h' 2025-01-24T02:56:22.0809810Z adding 'torch/include/torch/csrc/jit/passes/utils/op_registry.h' 2025-01-24T02:56:22.0810720Z adding 'torch/include/torch/csrc/jit/passes/utils/optimization_utils.h' 2025-01-24T02:56:22.0812210Z adding 'torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h' 2025-01-24T02:56:22.0813630Z adding 'torch/include/torch/csrc/jit/python/init.h' 2025-01-24T02:56:22.0814930Z adding 'torch/include/torch/csrc/jit/python/module_python.h' 2025-01-24T02:56:22.0816980Z adding 'torch/include/torch/csrc/jit/python/pybind.h' 2025-01-24T02:56:22.0826680Z adding 'torch/include/torch/csrc/jit/python/pybind_utils.h' 2025-01-24T02:56:22.0828490Z adding 'torch/include/torch/csrc/jit/python/python_arg_flatten.h' 2025-01-24T02:56:22.0829710Z adding 'torch/include/torch/csrc/jit/python/python_custom_class.h' 2025-01-24T02:56:22.0831060Z adding 'torch/include/torch/csrc/jit/python/python_dict.h' 2025-01-24T02:56:22.0832350Z adding 'torch/include/torch/csrc/jit/python/python_ir.h' 2025-01-24T02:56:22.0834110Z adding 'torch/include/torch/csrc/jit/python/python_ivalue.h' 2025-01-24T02:56:22.0836040Z adding 'torch/include/torch/csrc/jit/python/python_list.h' 2025-01-24T02:56:22.0838440Z adding 'torch/include/torch/csrc/jit/python/python_sugared_value.h' 2025-01-24T02:56:22.0839610Z adding 'torch/include/torch/csrc/jit/python/python_tracer.h' 2025-01-24T02:56:22.0840500Z adding 'torch/include/torch/csrc/jit/python/python_tree_views.h' 2025-01-24T02:56:22.0841710Z adding 'torch/include/torch/csrc/jit/python/script_init.h' 2025-01-24T02:56:22.0842640Z adding 'torch/include/torch/csrc/jit/python/update_graph_executor_opt.h' 2025-01-24T02:56:22.0843510Z adding 'torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h' 2025-01-24T02:56:22.0848080Z adding 'torch/include/torch/csrc/jit/runtime/argument_spec.h' 2025-01-24T02:56:22.0849890Z adding 'torch/include/torch/csrc/jit/runtime/autodiff.h' 2025-01-24T02:56:22.0851360Z adding 'torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h' 2025-01-24T02:56:22.0852560Z adding 'torch/include/torch/csrc/jit/runtime/custom_operator.h' 2025-01-24T02:56:22.0853880Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry.h' 2025-01-24T02:56:22.0854600Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h' 2025-01-24T02:56:22.0855940Z adding 'torch/include/torch/csrc/jit/runtime/exception_message.h' 2025-01-24T02:56:22.0857680Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor.h' 2025-01-24T02:56:22.0859320Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor_impl.h' 2025-01-24T02:56:22.0861180Z adding 'torch/include/torch/csrc/jit/runtime/graph_iterator.h' 2025-01-24T02:56:22.0863070Z adding 'torch/include/torch/csrc/jit/runtime/instruction.h' 2025-01-24T02:56:22.0864860Z adding 'torch/include/torch/csrc/jit/runtime/interpreter.h' 2025-01-24T02:56:22.0866090Z adding 'torch/include/torch/csrc/jit/runtime/jit_exception.h' 2025-01-24T02:56:22.0866960Z adding 'torch/include/torch/csrc/jit/runtime/jit_trace.h' 2025-01-24T02:56:22.0868470Z adding 'torch/include/torch/csrc/jit/runtime/logging.h' 2025-01-24T02:56:22.0871150Z adding 'torch/include/torch/csrc/jit/runtime/operator.h' 2025-01-24T02:56:22.0872400Z adding 'torch/include/torch/csrc/jit/runtime/operator_options.h' 2025-01-24T02:56:22.0873000Z adding 'torch/include/torch/csrc/jit/runtime/print_handler.h' 2025-01-24T02:56:22.0874730Z adding 'torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h' 2025-01-24T02:56:22.0877070Z adding 'torch/include/torch/csrc/jit/runtime/profiling_record.h' 2025-01-24T02:56:22.0882730Z adding 'torch/include/torch/csrc/jit/runtime/register_ops_utils.h' 2025-01-24T02:56:22.0884310Z adding 'torch/include/torch/csrc/jit/runtime/script_profile.h' 2025-01-24T02:56:22.0885590Z adding 'torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h' 2025-01-24T02:56:22.0886160Z adding 'torch/include/torch/csrc/jit/runtime/shape_function_registry.h' 2025-01-24T02:56:22.0887560Z adding 'torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h' 2025-01-24T02:56:22.0888790Z adding 'torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h' 2025-01-24T02:56:22.0889630Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_script.h' 2025-01-24T02:56:22.0891340Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h' 2025-01-24T02:56:22.0892220Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h' 2025-01-24T02:56:22.0893390Z adding 'torch/include/torch/csrc/jit/runtime/vararg_functions.h' 2025-01-24T02:56:22.0894580Z adding 'torch/include/torch/csrc/jit/runtime/variable_tensor_list.h' 2025-01-24T02:56:22.0896410Z adding 'torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h' 2025-01-24T02:56:22.0899030Z adding 'torch/include/torch/csrc/jit/serialization/export.h' 2025-01-24T02:56:22.0900340Z adding 'torch/include/torch/csrc/jit/serialization/export_bytecode.h' 2025-01-24T02:56:22.0901840Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h' 2025-01-24T02:56:22.0902970Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h' 2025-01-24T02:56:22.0904310Z adding 'torch/include/torch/csrc/jit/serialization/import.h' 2025-01-24T02:56:22.0905560Z adding 'torch/include/torch/csrc/jit/serialization/import_export_constants.h' 2025-01-24T02:56:22.0906510Z adding 'torch/include/torch/csrc/jit/serialization/import_export_functions.h' 2025-01-24T02:56:22.0907670Z adding 'torch/include/torch/csrc/jit/serialization/import_export_helpers.h' 2025-01-24T02:56:22.0908800Z adding 'torch/include/torch/csrc/jit/serialization/import_read.h' 2025-01-24T02:56:22.0910230Z adding 'torch/include/torch/csrc/jit/serialization/import_source.h' 2025-01-24T02:56:22.0923120Z adding 'torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h' 2025-01-24T02:56:22.0927690Z adding 'torch/include/torch/csrc/jit/serialization/onnx.h' 2025-01-24T02:56:22.0928030Z adding 'torch/include/torch/csrc/jit/serialization/pickle.h' 2025-01-24T02:56:22.0929760Z adding 'torch/include/torch/csrc/jit/serialization/pickler.h' 2025-01-24T02:56:22.0931070Z adding 'torch/include/torch/csrc/jit/serialization/python_print.h' 2025-01-24T02:56:22.0932390Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization.h' 2025-01-24T02:56:22.0933540Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h' 2025-01-24T02:56:22.0934780Z adding 'torch/include/torch/csrc/jit/serialization/storage_context.h' 2025-01-24T02:56:22.0936030Z adding 'torch/include/torch/csrc/jit/serialization/type_name_uniquer.h' 2025-01-24T02:56:22.0938250Z adding 'torch/include/torch/csrc/jit/serialization/unpickler.h' 2025-01-24T02:56:22.0940960Z adding 'torch/include/torch/csrc/jit/tensorexpr/analysis.h' 2025-01-24T02:56:22.0942620Z adding 'torch/include/torch/csrc/jit/tensorexpr/block_codegen.h' 2025-01-24T02:56:22.0943940Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h' 2025-01-24T02:56:22.0945670Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h' 2025-01-24T02:56:22.0947850Z adding 'torch/include/torch/csrc/jit/tensorexpr/codegen.h' 2025-01-24T02:56:22.0949240Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h' 2025-01-24T02:56:22.0950370Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h' 2025-01-24T02:56:22.0952600Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h' 2025-01-24T02:56:22.0954070Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_random.h' 2025-01-24T02:56:22.0956520Z adding 'torch/include/torch/csrc/jit/tensorexpr/eval.h' 2025-01-24T02:56:22.0958000Z adding 'torch/include/torch/csrc/jit/tensorexpr/exceptions.h' 2025-01-24T02:56:22.0961090Z adding 'torch/include/torch/csrc/jit/tensorexpr/expr.h' 2025-01-24T02:56:22.0962610Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions.h' 2025-01-24T02:56:22.0963750Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h' 2025-01-24T02:56:22.0965170Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h' 2025-01-24T02:56:22.0966560Z adding 'torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h' 2025-01-24T02:56:22.0968240Z adding 'torch/include/torch/csrc/jit/tensorexpr/graph_opt.h' 2025-01-24T02:56:22.0970050Z adding 'torch/include/torch/csrc/jit/tensorexpr/half_support.h' 2025-01-24T02:56:22.0972230Z adding 'torch/include/torch/csrc/jit/tensorexpr/hash_provider.h' 2025-01-24T02:56:22.0973480Z adding 'torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h' 2025-01-24T02:56:22.0977670Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir.h' 2025-01-24T02:56:22.0979030Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h' 2025-01-24T02:56:22.0980280Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h' 2025-01-24T02:56:22.0981760Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_printer.h' 2025-01-24T02:56:22.0985060Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h' 2025-01-24T02:56:22.0986260Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h' 2025-01-24T02:56:22.0987450Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h' 2025-01-24T02:56:22.0990690Z adding 'torch/include/torch/csrc/jit/tensorexpr/kernel.h' 2025-01-24T02:56:22.0992200Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h' 2025-01-24T02:56:22.0993480Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h' 2025-01-24T02:56:22.0998740Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest.h' 2025-01-24T02:56:22.0999960Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h' 2025-01-24T02:56:22.1001070Z adding 'torch/include/torch/csrc/jit/tensorexpr/lowerings.h' 2025-01-24T02:56:22.1004330Z adding 'torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h' 2025-01-24T02:56:22.1006490Z adding 'torch/include/torch/csrc/jit/tensorexpr/reduction.h' 2025-01-24T02:56:22.1009760Z adding 'torch/include/torch/csrc/jit/tensorexpr/registerizer.h' 2025-01-24T02:56:22.1014410Z adding 'torch/include/torch/csrc/jit/tensorexpr/stmt.h' 2025-01-24T02:56:22.1016750Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensor.h' 2025-01-24T02:56:22.1017950Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h' 2025-01-24T02:56:22.1019570Z adding 'torch/include/torch/csrc/jit/tensorexpr/types.h' 2025-01-24T02:56:22.1020770Z adding 'torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h' 2025-01-24T02:56:22.1022020Z adding 'torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h' 2025-01-24T02:56:22.1023680Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h' 2025-01-24T02:56:22.1024780Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h' 2025-01-24T02:56:22.1026090Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/misc.h' 2025-01-24T02:56:22.1027160Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/norm.h' 2025-01-24T02:56:22.1028280Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/operators.h' 2025-01-24T02:56:22.1029440Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h' 2025-01-24T02:56:22.1030770Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h' 2025-01-24T02:56:22.1031930Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h' 2025-01-24T02:56:22.1033100Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h' 2025-01-24T02:56:22.1034570Z adding 'torch/include/torch/csrc/jit/testing/file_check.h' 2025-01-24T02:56:22.1035770Z adding 'torch/include/torch/csrc/jit/testing/hooks_for_testing.h' 2025-01-24T02:56:22.1037580Z adding 'torch/include/torch/csrc/lazy/backend/backend_data.h' 2025-01-24T02:56:22.1039100Z adding 'torch/include/torch/csrc/lazy/backend/backend_device.h' 2025-01-24T02:56:22.1040850Z adding 'torch/include/torch/csrc/lazy/backend/backend_interface.h' 2025-01-24T02:56:22.1042320Z adding 'torch/include/torch/csrc/lazy/backend/lowering_context.h' 2025-01-24T02:56:22.1044250Z adding 'torch/include/torch/csrc/lazy/core/cache.h' 2025-01-24T02:56:22.1045400Z adding 'torch/include/torch/csrc/lazy/core/config.h' 2025-01-24T02:56:22.1046590Z adding 'torch/include/torch/csrc/lazy/core/debug_util.h' 2025-01-24T02:56:22.1047850Z adding 'torch/include/torch/csrc/lazy/core/dynamic_ir.h' 2025-01-24T02:56:22.1049870Z adding 'torch/include/torch/csrc/lazy/core/hash.h' 2025-01-24T02:56:22.1051250Z adding 'torch/include/torch/csrc/lazy/core/helpers.h' 2025-01-24T02:56:22.1053590Z adding 'torch/include/torch/csrc/lazy/core/ir.h' 2025-01-24T02:56:22.1055250Z adding 'torch/include/torch/csrc/lazy/core/ir_builder.h' 2025-01-24T02:56:22.1056440Z adding 'torch/include/torch/csrc/lazy/core/ir_dump_util.h' 2025-01-24T02:56:22.1057610Z adding 'torch/include/torch/csrc/lazy/core/ir_metadata.h' 2025-01-24T02:56:22.1058760Z adding 'torch/include/torch/csrc/lazy/core/ir_util.h' 2025-01-24T02:56:22.1062040Z adding 'torch/include/torch/csrc/lazy/core/lazy_graph_executor.h' 2025-01-24T02:56:22.1064320Z adding 'torch/include/torch/csrc/lazy/core/metrics.h' 2025-01-24T02:56:22.1065660Z adding 'torch/include/torch/csrc/lazy/core/multi_wait.h' 2025-01-24T02:56:22.1066930Z adding 'torch/include/torch/csrc/lazy/core/permutation_util.h' 2025-01-24T02:56:22.1068210Z adding 'torch/include/torch/csrc/lazy/core/shape.h' 2025-01-24T02:56:22.1070530Z adding 'torch/include/torch/csrc/lazy/core/shape_inference.h' 2025-01-24T02:56:22.1073290Z adding 'torch/include/torch/csrc/lazy/core/tensor.h' 2025-01-24T02:56:22.1074610Z adding 'torch/include/torch/csrc/lazy/core/tensor_impl.h' 2025-01-24T02:56:22.1076040Z adding 'torch/include/torch/csrc/lazy/core/tensor_util.h' 2025-01-24T02:56:22.1077160Z adding 'torch/include/torch/csrc/lazy/core/thread_pool.h' 2025-01-24T02:56:22.1078510Z adding 'torch/include/torch/csrc/lazy/core/trie.h' 2025-01-24T02:56:22.1079670Z adding 'torch/include/torch/csrc/lazy/core/unique.h' 2025-01-24T02:56:22.1081180Z adding 'torch/include/torch/csrc/lazy/core/util.h' 2025-01-24T02:56:22.1082680Z adding 'torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h' 2025-01-24T02:56:22.1084050Z adding 'torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h' 2025-01-24T02:56:22.1085170Z adding 'torch/include/torch/csrc/lazy/core/ops/utils.h' 2025-01-24T02:56:22.1086510Z adding 'torch/include/torch/csrc/lazy/python/python_util.h' 2025-01-24T02:56:22.1087820Z adding 'torch/include/torch/csrc/lazy/ts_backend/config.h' 2025-01-24T02:56:22.1089170Z adding 'torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h' 2025-01-24T02:56:22.1090530Z adding 'torch/include/torch/csrc/lazy/ts_backend/ir_builder.h' 2025-01-24T02:56:22.1091550Z adding 'torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h' 2025-01-24T02:56:22.1092670Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h' 2025-01-24T02:56:22.1093830Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h' 2025-01-24T02:56:22.1094940Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h' 2025-01-24T02:56:22.1096640Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h' 2025-01-24T02:56:22.1098110Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node.h' 2025-01-24T02:56:22.1099240Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h' 2025-01-24T02:56:22.1100590Z adding 'torch/include/torch/csrc/onnx/back_compat.h' 2025-01-24T02:56:22.1101580Z adding 'torch/include/torch/csrc/onnx/init.h' 2025-01-24T02:56:22.1102660Z adding 'torch/include/torch/csrc/onnx/onnx.h' 2025-01-24T02:56:22.1104110Z adding 'torch/include/torch/csrc/profiler/api.h' 2025-01-24T02:56:22.1108580Z adding 'torch/include/torch/csrc/profiler/collection.h' 2025-01-24T02:56:22.1110070Z adding 'torch/include/torch/csrc/profiler/combined_traceback.h' 2025-01-24T02:56:22.1112050Z adding 'torch/include/torch/csrc/profiler/containers.h' 2025-01-24T02:56:22.1113660Z adding 'torch/include/torch/csrc/profiler/data_flow.h' 2025-01-24T02:56:22.1114830Z adding 'torch/include/torch/csrc/profiler/events.h' 2025-01-24T02:56:22.1115960Z adding 'torch/include/torch/csrc/profiler/kineto_client_interface.h' 2025-01-24T02:56:22.1117420Z adding 'torch/include/torch/csrc/profiler/kineto_shim.h' 2025-01-24T02:56:22.1118940Z adding 'torch/include/torch/csrc/profiler/perf-inl.h' 2025-01-24T02:56:22.1120380Z adding 'torch/include/torch/csrc/profiler/perf.h' 2025-01-24T02:56:22.1122450Z adding 'torch/include/torch/csrc/profiler/util.h' 2025-01-24T02:56:22.1124820Z adding 'torch/include/torch/csrc/profiler/orchestration/observer.h' 2025-01-24T02:56:22.1126180Z adding 'torch/include/torch/csrc/profiler/orchestration/python_tracer.h' 2025-01-24T02:56:22.1127320Z adding 'torch/include/torch/csrc/profiler/orchestration/vulkan.h' 2025-01-24T02:56:22.1128770Z adding 'torch/include/torch/csrc/profiler/python/combined_traceback.h' 2025-01-24T02:56:22.1129880Z adding 'torch/include/torch/csrc/profiler/python/init.h' 2025-01-24T02:56:22.1131090Z adding 'torch/include/torch/csrc/profiler/python/pybind.h' 2025-01-24T02:56:22.1132520Z adding 'torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h' 2025-01-24T02:56:22.1133690Z adding 'torch/include/torch/csrc/profiler/standalone/itt_observer.h' 2025-01-24T02:56:22.1134350Z adding 'torch/include/torch/csrc/profiler/standalone/nvtx_observer.h' 2025-01-24T02:56:22.1135870Z adding 'torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h' 2025-01-24T02:56:22.1137340Z adding 'torch/include/torch/csrc/profiler/stubs/base.h' 2025-01-24T02:56:22.1138940Z adding 'torch/include/torch/csrc/profiler/unwind/action.h' 2025-01-24T02:56:22.1140300Z adding 'torch/include/torch/csrc/profiler/unwind/communicate.h' 2025-01-24T02:56:22.1142590Z adding 'torch/include/torch/csrc/profiler/unwind/debug_info.h' 2025-01-24T02:56:22.1143890Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_enums.h' 2025-01-24T02:56:22.1145570Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h' 2025-01-24T02:56:22.1146990Z adding 'torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h' 2025-01-24T02:56:22.1148510Z adding 'torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h' 2025-01-24T02:56:22.1151250Z adding 'torch/include/torch/csrc/profiler/unwind/fde.h' 2025-01-24T02:56:22.1152930Z adding 'torch/include/torch/csrc/profiler/unwind/lexer.h' 2025-01-24T02:56:22.1155620Z adding 'torch/include/torch/csrc/profiler/unwind/line_number_program.h' 2025-01-24T02:56:22.1157290Z adding 'torch/include/torch/csrc/profiler/unwind/mem_file.h' 2025-01-24T02:56:22.1158710Z adding 'torch/include/torch/csrc/profiler/unwind/range_table.h' 2025-01-24T02:56:22.1160260Z adding 'torch/include/torch/csrc/profiler/unwind/sections.h' 2025-01-24T02:56:22.1161640Z adding 'torch/include/torch/csrc/profiler/unwind/unwind.h' 2025-01-24T02:56:22.1162520Z adding 'torch/include/torch/csrc/profiler/unwind/unwind_error.h' 2025-01-24T02:56:22.1164020Z adding 'torch/include/torch/csrc/profiler/unwind/unwinder.h' 2025-01-24T02:56:22.1165480Z adding 'torch/include/torch/csrc/tensor/python_tensor.h' 2025-01-24T02:56:22.1167340Z adding 'torch/include/torch/csrc/utils/byte_order.h' 2025-01-24T02:56:22.1168430Z adding 'torch/include/torch/csrc/utils/cpp_stacktraces.h' 2025-01-24T02:56:22.1169290Z adding 'torch/include/torch/csrc/utils/cuda_enabled.h' 2025-01-24T02:56:22.1170810Z adding 'torch/include/torch/csrc/utils/device_lazy_init.h' 2025-01-24T02:56:22.1172020Z adding 'torch/include/torch/csrc/utils/disable_torch_function.h' 2025-01-24T02:56:22.1180850Z adding 'torch/include/torch/csrc/utils/generated_serialization_types.h' 2025-01-24T02:56:22.1182110Z adding 'torch/include/torch/csrc/utils/init.h' 2025-01-24T02:56:22.1183210Z adding 'torch/include/torch/csrc/utils/invalid_arguments.h' 2025-01-24T02:56:22.1184220Z adding 'torch/include/torch/csrc/utils/nested.h' 2025-01-24T02:56:22.1185350Z adding 'torch/include/torch/csrc/utils/numpy_stub.h' 2025-01-24T02:56:22.1186600Z adding 'torch/include/torch/csrc/utils/object_ptr.h' 2025-01-24T02:56:22.1187650Z adding 'torch/include/torch/csrc/utils/out_types.h' 2025-01-24T02:56:22.1194230Z adding 'torch/include/torch/csrc/utils/pybind.h' 2025-01-24T02:56:22.1194590Z adding 'torch/include/torch/csrc/utils/pycfunction_helpers.h' 2025-01-24T02:56:22.1194790Z adding 'torch/include/torch/csrc/utils/pyobject_preservation.h' 2025-01-24T02:56:22.1200510Z adding 'torch/include/torch/csrc/utils/python_arg_parser.h' 2025-01-24T02:56:22.1201790Z adding 'torch/include/torch/csrc/utils/python_compat.h' 2025-01-24T02:56:22.1202910Z adding 'torch/include/torch/csrc/utils/python_dispatch.h' 2025-01-24T02:56:22.1204560Z adding 'torch/include/torch/csrc/utils/python_numbers.h' 2025-01-24T02:56:22.1205940Z adding 'torch/include/torch/csrc/utils/python_raii.h' 2025-01-24T02:56:22.1207650Z adding 'torch/include/torch/csrc/utils/python_scalars.h' 2025-01-24T02:56:22.1209310Z adding 'torch/include/torch/csrc/utils/python_strings.h' 2025-01-24T02:56:22.1210320Z adding 'torch/include/torch/csrc/utils/python_stub.h' 2025-01-24T02:56:22.1212260Z adding 'torch/include/torch/csrc/utils/python_symnode.h' 2025-01-24T02:56:22.1213500Z adding 'torch/include/torch/csrc/utils/python_torch_function_mode.h' 2025-01-24T02:56:22.1214610Z adding 'torch/include/torch/csrc/utils/python_tuples.h' 2025-01-24T02:56:22.1221920Z adding 'torch/include/torch/csrc/utils/pythoncapi_compat.h' 2025-01-24T02:56:22.1223610Z adding 'torch/include/torch/csrc/utils/schema_info.h' 2025-01-24T02:56:22.1224870Z adding 'torch/include/torch/csrc/utils/six.h' 2025-01-24T02:56:22.1225930Z adding 'torch/include/torch/csrc/utils/structseq.h' 2025-01-24T02:56:22.1226970Z adding 'torch/include/torch/csrc/utils/tensor_apply.h' 2025-01-24T02:56:22.1228010Z adding 'torch/include/torch/csrc/utils/tensor_dtypes.h' 2025-01-24T02:56:22.1229490Z adding 'torch/include/torch/csrc/utils/tensor_flatten.h' 2025-01-24T02:56:22.1230480Z adding 'torch/include/torch/csrc/utils/tensor_layouts.h' 2025-01-24T02:56:22.1231470Z adding 'torch/include/torch/csrc/utils/tensor_list.h' 2025-01-24T02:56:22.1232550Z adding 'torch/include/torch/csrc/utils/tensor_memoryformats.h' 2025-01-24T02:56:22.1234020Z adding 'torch/include/torch/csrc/utils/tensor_new.h' 2025-01-24T02:56:22.1235320Z adding 'torch/include/torch/csrc/utils/tensor_numpy.h' 2025-01-24T02:56:22.1236060Z adding 'torch/include/torch/csrc/utils/tensor_qschemes.h' 2025-01-24T02:56:22.1237400Z adding 'torch/include/torch/csrc/utils/tensor_types.h' 2025-01-24T02:56:22.1239710Z adding 'torch/include/torch/csrc/utils/throughput_benchmark-inl.h' 2025-01-24T02:56:22.1241680Z adding 'torch/include/torch/csrc/utils/throughput_benchmark.h' 2025-01-24T02:56:22.1243970Z adding 'torch/include/torch/csrc/utils/torch_dispatch_mode.h' 2025-01-24T02:56:22.1244380Z adding 'torch/include/torch/csrc/utils/variadic.h' 2025-01-24T02:56:22.1245580Z adding 'torch/include/torch/csrc/utils/verbose.h' 2025-01-24T02:56:22.1247390Z adding 'torch/include/torch/csrc/xpu/Event.h' 2025-01-24T02:56:22.1250050Z adding 'torch/include/torch/csrc/xpu/Module.h' 2025-01-24T02:56:22.1251880Z adding 'torch/include/torch/csrc/xpu/Stream.h' 2025-01-24T02:56:22.1255680Z adding 'torch/jit/__init__.py' 2025-01-24T02:56:22.1257490Z adding 'torch/jit/_async.py' 2025-01-24T02:56:22.1259000Z adding 'torch/jit/_await.py' 2025-01-24T02:56:22.1261650Z adding 'torch/jit/_builtins.py' 2025-01-24T02:56:22.1264730Z adding 'torch/jit/_check.py' 2025-01-24T02:56:22.1267330Z adding 'torch/jit/_dataclass_impls.py' 2025-01-24T02:56:22.1268390Z adding 'torch/jit/_decomposition_utils.py' 2025-01-24T02:56:22.1270600Z adding 'torch/jit/_decompositions.py' 2025-01-24T02:56:22.1273340Z adding 'torch/jit/_freeze.py' 2025-01-24T02:56:22.1275690Z adding 'torch/jit/_fuser.py' 2025-01-24T02:56:22.1277250Z adding 'torch/jit/_ir_utils.py' 2025-01-24T02:56:22.1278670Z adding 'torch/jit/_logging.py' 2025-01-24T02:56:22.1281240Z adding 'torch/jit/_monkeytype_config.py' 2025-01-24T02:56:22.1282640Z adding 'torch/jit/_pickle.py' 2025-01-24T02:56:22.1293330Z adding 'torch/jit/_recursive.py' 2025-01-24T02:56:22.1308610Z adding 'torch/jit/_script.py' 2025-01-24T02:56:22.1311480Z adding 'torch/jit/_script.pyi' 2025-01-24T02:56:22.1314470Z adding 'torch/jit/_serialization.py' 2025-01-24T02:56:22.1324060Z adding 'torch/jit/_shape_functions.py' 2025-01-24T02:56:22.1326300Z adding 'torch/jit/_state.py' 2025-01-24T02:56:22.1338720Z adding 'torch/jit/_trace.py' 2025-01-24T02:56:22.1343590Z adding 'torch/jit/annotations.py' 2025-01-24T02:56:22.1353590Z adding 'torch/jit/frontend.py' 2025-01-24T02:56:22.1355310Z adding 'torch/jit/generate_bytecode.py' 2025-01-24T02:56:22.1356760Z adding 'torch/jit/quantized.py' 2025-01-24T02:56:22.1359630Z adding 'torch/jit/supported_ops.py' 2025-01-24T02:56:22.1361220Z adding 'torch/jit/unsupported_tensor_ops.py' 2025-01-24T02:56:22.1362760Z adding 'torch/jit/_passes/__init__.py' 2025-01-24T02:56:22.1364280Z adding 'torch/jit/_passes/_property_propagation.py' 2025-01-24T02:56:22.1366700Z adding 'torch/jit/mobile/__init__.py' 2025-01-24T02:56:22.1679240Z adding 'torch/lib/libc10.dylib' 2025-01-24T02:56:22.1909040Z adding 'torch/lib/libomp.dylib' 2025-01-24T02:56:22.1922520Z adding 'torch/lib/libshm.dylib' 2025-01-24T02:56:22.1925460Z adding 'torch/lib/libtorch.dylib' 2025-01-24T02:56:25.8261140Z adding 'torch/lib/libtorch_cpu.dylib' 2025-01-24T02:56:25.9022010Z adding 'torch/lib/libtorch_global_deps.dylib' 2025-01-24T02:56:26.4306590Z adding 'torch/lib/libtorch_python.dylib' 2025-01-24T02:56:26.4427320Z adding 'torch/linalg/__init__.py' 2025-01-24T02:56:26.4429580Z adding 'torch/masked/__init__.py' 2025-01-24T02:56:26.4433820Z adding 'torch/masked/_docs.py' 2025-01-24T02:56:26.4447320Z adding 'torch/masked/_ops.py' 2025-01-24T02:56:26.4449360Z adding 'torch/masked/maskedtensor/__init__.py' 2025-01-24T02:56:26.4452690Z adding 'torch/masked/maskedtensor/_ops_refs.py' 2025-01-24T02:56:26.4454810Z adding 'torch/masked/maskedtensor/binary.py' 2025-01-24T02:56:26.4458150Z adding 'torch/masked/maskedtensor/core.py' 2025-01-24T02:56:26.4459520Z adding 'torch/masked/maskedtensor/creation.py' 2025-01-24T02:56:26.4466890Z adding 'torch/masked/maskedtensor/passthrough.py' 2025-01-24T02:56:26.4467310Z adding 'torch/masked/maskedtensor/reductions.py' 2025-01-24T02:56:26.4467660Z adding 'torch/masked/maskedtensor/unary.py' 2025-01-24T02:56:26.4467970Z adding 'torch/monitor/__init__.py' 2025-01-24T02:56:26.4469160Z adding 'torch/mps/__init__.py' 2025-01-24T02:56:26.4470670Z adding 'torch/mps/event.py' 2025-01-24T02:56:26.4472220Z adding 'torch/mps/profiler.py' 2025-01-24T02:56:26.4475700Z adding 'torch/mtia/__init__.py' 2025-01-24T02:56:26.4477210Z adding 'torch/mtia/_utils.py' 2025-01-24T02:56:26.4478560Z adding 'torch/mtia/memory.py' 2025-01-24T02:56:26.4480530Z adding 'torch/multiprocessing/__init__.py' 2025-01-24T02:56:26.4481860Z adding 'torch/multiprocessing/_atfork.py' 2025-01-24T02:56:26.4483310Z adding 'torch/multiprocessing/pool.py' 2025-01-24T02:56:26.4484710Z adding 'torch/multiprocessing/queue.py' 2025-01-24T02:56:26.4490020Z adding 'torch/multiprocessing/reductions.py' 2025-01-24T02:56:26.4493620Z adding 'torch/multiprocessing/spawn.py' 2025-01-24T02:56:26.4498840Z adding 'torch/nested/__init__.py' 2025-01-24T02:56:26.4500390Z adding 'torch/nested/_internal/__init__.py' 2025-01-24T02:56:26.4502010Z adding 'torch/nested/_internal/nested_int.py' 2025-01-24T02:56:26.4507410Z adding 'torch/nested/_internal/nested_tensor.py' 2025-01-24T02:56:26.4524790Z adding 'torch/nested/_internal/ops.py' 2025-01-24T02:56:26.4532080Z adding 'torch/nested/_internal/sdpa.py' 2025-01-24T02:56:26.4534260Z adding 'torch/nn/__init__.py' 2025-01-24T02:56:26.4535870Z adding 'torch/nn/_reduction.py' 2025-01-24T02:56:26.4537380Z adding 'torch/nn/common_types.py' 2025-01-24T02:56:26.4539020Z adding 'torch/nn/cpp.py' 2025-01-24T02:56:26.4584350Z adding 'torch/nn/functional.py' 2025-01-24T02:56:26.4588790Z adding 'torch/nn/functional.pyi' 2025-01-24T02:56:26.4590810Z adding 'torch/nn/grad.py' 2025-01-24T02:56:26.4595520Z adding 'torch/nn/init.py' 2025-01-24T02:56:26.4598450Z adding 'torch/nn/parameter.py' 2025-01-24T02:56:26.4599900Z adding 'torch/nn/parameter.pyi' 2025-01-24T02:56:26.4602400Z adding 'torch/nn/attention/__init__.py' 2025-01-24T02:56:26.4604050Z adding 'torch/nn/attention/_utils.py' 2025-01-24T02:56:26.4607210Z adding 'torch/nn/attention/bias.py' 2025-01-24T02:56:26.4619070Z adding 'torch/nn/attention/flex_attention.py' 2025-01-24T02:56:26.4620810Z adding 'torch/nn/attention/experimental/__init__.py' 2025-01-24T02:56:26.4623790Z adding 'torch/nn/attention/experimental/_paged_attention.py' 2025-01-24T02:56:26.4625140Z adding 'torch/nn/backends/__init__.py' 2025-01-24T02:56:26.4626350Z adding 'torch/nn/backends/thnn.py' 2025-01-24T02:56:26.4627910Z adding 'torch/nn/intrinsic/__init__.py' 2025-01-24T02:56:26.4629470Z adding 'torch/nn/intrinsic/modules/__init__.py' 2025-01-24T02:56:26.4630720Z adding 'torch/nn/intrinsic/modules/fused.py' 2025-01-24T02:56:26.4632070Z adding 'torch/nn/intrinsic/qat/__init__.py' 2025-01-24T02:56:26.4633650Z adding 'torch/nn/intrinsic/qat/modules/__init__.py' 2025-01-24T02:56:26.4635000Z adding 'torch/nn/intrinsic/qat/modules/conv_fused.py' 2025-01-24T02:56:26.4636300Z adding 'torch/nn/intrinsic/qat/modules/linear_fused.py' 2025-01-24T02:56:26.4637650Z adding 'torch/nn/intrinsic/qat/modules/linear_relu.py' 2025-01-24T02:56:26.4639200Z adding 'torch/nn/intrinsic/quantized/__init__.py' 2025-01-24T02:56:26.4640600Z adding 'torch/nn/intrinsic/quantized/dynamic/__init__.py' 2025-01-24T02:56:26.4642070Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-01-24T02:56:26.4643020Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-01-24T02:56:26.4644710Z adding 'torch/nn/intrinsic/quantized/modules/__init__.py' 2025-01-24T02:56:26.4646030Z adding 'torch/nn/intrinsic/quantized/modules/bn_relu.py' 2025-01-24T02:56:26.4646830Z adding 'torch/nn/intrinsic/quantized/modules/conv_relu.py' 2025-01-24T02:56:26.4648270Z adding 'torch/nn/intrinsic/quantized/modules/linear_relu.py' 2025-01-24T02:56:26.4650800Z adding 'torch/nn/modules/__init__.py' 2025-01-24T02:56:26.4653850Z adding 'torch/nn/modules/_functions.py' 2025-01-24T02:56:26.4663940Z adding 'torch/nn/modules/activation.py' 2025-01-24T02:56:26.4667430Z adding 'torch/nn/modules/adaptive.py' 2025-01-24T02:56:26.4673350Z adding 'torch/nn/modules/batchnorm.py' 2025-01-24T02:56:26.4674940Z adding 'torch/nn/modules/channelshuffle.py' 2025-01-24T02:56:26.4681670Z adding 'torch/nn/modules/container.py' 2025-01-24T02:56:26.4691790Z adding 'torch/nn/modules/conv.py' 2025-01-24T02:56:26.4693880Z adding 'torch/nn/modules/distance.py' 2025-01-24T02:56:26.4696300Z adding 'torch/nn/modules/dropout.py' 2025-01-24T02:56:26.4698310Z adding 'torch/nn/modules/flatten.py' 2025-01-24T02:56:26.4701320Z adding 'torch/nn/modules/fold.py' 2025-01-24T02:56:26.4704480Z adding 'torch/nn/modules/instancenorm.py' 2025-01-24T02:56:26.4707660Z adding 'torch/nn/modules/lazy.py' 2025-01-24T02:56:26.4710290Z adding 'torch/nn/modules/linear.py' 2025-01-24T02:56:26.4726180Z adding 'torch/nn/modules/loss.py' 2025-01-24T02:56:26.4751840Z adding 'torch/nn/modules/module.py' 2025-01-24T02:56:26.4755680Z adding 'torch/nn/modules/normalization.py' 2025-01-24T02:56:26.4759170Z adding 'torch/nn/modules/padding.py' 2025-01-24T02:56:26.4760970Z adding 'torch/nn/modules/pixelshuffle.py' 2025-01-24T02:56:26.4768360Z adding 'torch/nn/modules/pooling.py' 2025-01-24T02:56:26.4780100Z adding 'torch/nn/modules/rnn.py' 2025-01-24T02:56:26.4784900Z adding 'torch/nn/modules/sparse.py' 2025-01-24T02:56:26.4793320Z adding 'torch/nn/modules/transformer.py' 2025-01-24T02:56:26.4796260Z adding 'torch/nn/modules/upsampling.py' 2025-01-24T02:56:26.4797950Z adding 'torch/nn/modules/utils.py' 2025-01-24T02:56:26.4799630Z adding 'torch/nn/parallel/__init__.py' 2025-01-24T02:56:26.4801590Z adding 'torch/nn/parallel/_functions.py' 2025-01-24T02:56:26.4804410Z adding 'torch/nn/parallel/comm.py' 2025-01-24T02:56:26.4807580Z adding 'torch/nn/parallel/data_parallel.py' 2025-01-24T02:56:26.4837630Z adding 'torch/nn/parallel/distributed.py' 2025-01-24T02:56:26.4838090Z adding 'torch/nn/parallel/parallel_apply.py' 2025-01-24T02:56:26.4838440Z adding 'torch/nn/parallel/replicate.py' 2025-01-24T02:56:26.4840600Z adding 'torch/nn/parallel/scatter_gather.py' 2025-01-24T02:56:26.4842190Z adding 'torch/nn/qat/__init__.py' 2025-01-24T02:56:26.4843770Z adding 'torch/nn/qat/dynamic/__init__.py' 2025-01-24T02:56:26.4845240Z adding 'torch/nn/qat/dynamic/modules/__init__.py' 2025-01-24T02:56:26.4846500Z adding 'torch/nn/qat/dynamic/modules/linear.py' 2025-01-24T02:56:26.4848040Z adding 'torch/nn/qat/modules/__init__.py' 2025-01-24T02:56:26.4849320Z adding 'torch/nn/qat/modules/conv.py' 2025-01-24T02:56:26.4850590Z adding 'torch/nn/qat/modules/embedding_ops.py' 2025-01-24T02:56:26.4851800Z adding 'torch/nn/qat/modules/linear.py' 2025-01-24T02:56:26.4853700Z adding 'torch/nn/quantizable/__init__.py' 2025-01-24T02:56:26.4855230Z adding 'torch/nn/quantizable/modules/__init__.py' 2025-01-24T02:56:26.4856520Z adding 'torch/nn/quantizable/modules/activation.py' 2025-01-24T02:56:26.4857170Z adding 'torch/nn/quantizable/modules/rnn.py' 2025-01-24T02:56:26.4858930Z adding 'torch/nn/quantized/__init__.py' 2025-01-24T02:56:26.4859700Z adding 'torch/nn/quantized/functional.py' 2025-01-24T02:56:26.4861200Z adding 'torch/nn/quantized/_reference/__init__.py' 2025-01-24T02:56:26.4863150Z adding 'torch/nn/quantized/_reference/modules/__init__.py' 2025-01-24T02:56:26.4863930Z adding 'torch/nn/quantized/_reference/modules/conv.py' 2025-01-24T02:56:26.4865290Z adding 'torch/nn/quantized/_reference/modules/linear.py' 2025-01-24T02:56:26.4866090Z adding 'torch/nn/quantized/_reference/modules/rnn.py' 2025-01-24T02:56:26.4867400Z adding 'torch/nn/quantized/_reference/modules/sparse.py' 2025-01-24T02:56:26.4868140Z adding 'torch/nn/quantized/_reference/modules/utils.py' 2025-01-24T02:56:26.4869600Z adding 'torch/nn/quantized/dynamic/__init__.py' 2025-01-24T02:56:26.4871000Z adding 'torch/nn/quantized/dynamic/modules/__init__.py' 2025-01-24T02:56:26.4871780Z adding 'torch/nn/quantized/dynamic/modules/conv.py' 2025-01-24T02:56:26.4873060Z adding 'torch/nn/quantized/dynamic/modules/linear.py' 2025-01-24T02:56:26.4873830Z adding 'torch/nn/quantized/dynamic/modules/rnn.py' 2025-01-24T02:56:26.4875710Z adding 'torch/nn/quantized/modules/__init__.py' 2025-01-24T02:56:26.4876770Z adding 'torch/nn/quantized/modules/activation.py' 2025-01-24T02:56:26.4877490Z adding 'torch/nn/quantized/modules/batchnorm.py' 2025-01-24T02:56:26.4878890Z adding 'torch/nn/quantized/modules/conv.py' 2025-01-24T02:56:26.4879500Z adding 'torch/nn/quantized/modules/dropout.py' 2025-01-24T02:56:26.4880860Z adding 'torch/nn/quantized/modules/embedding_ops.py' 2025-01-24T02:56:26.4881510Z adding 'torch/nn/quantized/modules/functional_modules.py' 2025-01-24T02:56:26.4882810Z adding 'torch/nn/quantized/modules/linear.py' 2025-01-24T02:56:26.4883490Z adding 'torch/nn/quantized/modules/normalization.py' 2025-01-24T02:56:26.4884780Z adding 'torch/nn/quantized/modules/rnn.py' 2025-01-24T02:56:26.4885420Z adding 'torch/nn/quantized/modules/utils.py' 2025-01-24T02:56:26.4887180Z adding 'torch/nn/utils/__init__.py' 2025-01-24T02:56:26.4888510Z adding 'torch/nn/utils/_deprecation_utils.py' 2025-01-24T02:56:26.4891330Z adding 'torch/nn/utils/_named_member_accessor.py' 2025-01-24T02:56:26.4893220Z adding 'torch/nn/utils/_per_sample_grad.py' 2025-01-24T02:56:26.4895660Z adding 'torch/nn/utils/clip_grad.py' 2025-01-24T02:56:26.4897180Z adding 'torch/nn/utils/convert_parameters.py' 2025-01-24T02:56:26.4898970Z adding 'torch/nn/utils/fusion.py' 2025-01-24T02:56:26.4900300Z adding 'torch/nn/utils/init.py' 2025-01-24T02:56:26.4902120Z adding 'torch/nn/utils/memory_format.py' 2025-01-24T02:56:26.4908040Z adding 'torch/nn/utils/parametrizations.py' 2025-01-24T02:56:26.4915880Z adding 'torch/nn/utils/parametrize.py' 2025-01-24T02:56:26.4926500Z adding 'torch/nn/utils/prune.py' 2025-01-24T02:56:26.4931490Z adding 'torch/nn/utils/rnn.py' 2025-01-24T02:56:26.4935210Z adding 'torch/nn/utils/spectral_norm.py' 2025-01-24T02:56:26.4938030Z adding 'torch/nn/utils/stateless.py' 2025-01-24T02:56:26.4940010Z adding 'torch/nn/utils/weight_norm.py' 2025-01-24T02:56:26.4941470Z adding 'torch/nn/utils/_expanded_weights/__init__.py' 2025-01-24T02:56:26.4942900Z adding 'torch/nn/utils/_expanded_weights/conv_expanded_weights.py' 2025-01-24T02:56:26.4945610Z adding 'torch/nn/utils/_expanded_weights/conv_utils.py' 2025-01-24T02:56:26.4947100Z adding 'torch/nn/utils/_expanded_weights/embedding_expanded_weights.py' 2025-01-24T02:56:26.4948910Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_impl.py' 2025-01-24T02:56:26.4951050Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_utils.py' 2025-01-24T02:56:26.4952540Z adding 'torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py' 2025-01-24T02:56:26.4954120Z adding 'torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py' 2025-01-24T02:56:26.4955540Z adding 'torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py' 2025-01-24T02:56:26.4956940Z adding 'torch/nn/utils/_expanded_weights/linear_expanded_weights.py' 2025-01-24T02:56:26.4961570Z adding 'torch/onnx/__init__.py' 2025-01-24T02:56:26.4962820Z adding 'torch/onnx/_constants.py' 2025-01-24T02:56:26.4964090Z adding 'torch/onnx/_deprecation.py' 2025-01-24T02:56:26.4965300Z adding 'torch/onnx/_experimental.py' 2025-01-24T02:56:26.4965970Z adding 'torch/onnx/_exporter_states.py' 2025-01-24T02:56:26.4967360Z adding 'torch/onnx/_flags.py' 2025-01-24T02:56:26.4968720Z adding 'torch/onnx/_globals.py' 2025-01-24T02:56:26.4970140Z adding 'torch/onnx/_onnx_supported_ops.py' 2025-01-24T02:56:26.4973010Z adding 'torch/onnx/_type_utils.py' 2025-01-24T02:56:26.4974500Z adding 'torch/onnx/errors.py' 2025-01-24T02:56:26.4975710Z adding 'torch/onnx/operators.py' 2025-01-24T02:56:26.4977760Z adding 'torch/onnx/symbolic_caffe2.py' 2025-01-24T02:56:26.4995050Z adding 'torch/onnx/symbolic_helper.py' 2025-01-24T02:56:26.5001270Z adding 'torch/onnx/symbolic_opset10.py' 2025-01-24T02:56:26.5015510Z adding 'torch/onnx/symbolic_opset11.py' 2025-01-24T02:56:26.5015870Z adding 'torch/onnx/symbolic_opset12.py' 2025-01-24T02:56:26.5022010Z adding 'torch/onnx/symbolic_opset13.py' 2025-01-24T02:56:26.5024620Z adding 'torch/onnx/symbolic_opset14.py' 2025-01-24T02:56:26.5026070Z adding 'torch/onnx/symbolic_opset15.py' 2025-01-24T02:56:26.5028060Z adding 'torch/onnx/symbolic_opset16.py' 2025-01-24T02:56:26.5030320Z adding 'torch/onnx/symbolic_opset17.py' 2025-01-24T02:56:26.5032390Z adding 'torch/onnx/symbolic_opset18.py' 2025-01-24T02:56:26.5033170Z adding 'torch/onnx/symbolic_opset19.py' 2025-01-24T02:56:26.5034700Z adding 'torch/onnx/symbolic_opset20.py' 2025-01-24T02:56:26.5035930Z adding 'torch/onnx/symbolic_opset7.py' 2025-01-24T02:56:26.5038940Z adding 'torch/onnx/symbolic_opset8.py' 2025-01-24T02:56:26.5083350Z adding 'torch/onnx/symbolic_opset9.py' 2025-01-24T02:56:26.5101940Z adding 'torch/onnx/utils.py' 2025-01-24T02:56:26.5117530Z adding 'torch/onnx/verification.py' 2025-01-24T02:56:26.5119160Z adding 'torch/onnx/_internal/__init__.py' 2025-01-24T02:56:26.5126580Z adding 'torch/onnx/_internal/_exporter_legacy.py' 2025-01-24T02:56:26.5127870Z adding 'torch/onnx/_internal/_lazy_import.py' 2025-01-24T02:56:26.5132170Z adding 'torch/onnx/_internal/io_adapter.py' 2025-01-24T02:56:26.5135430Z adding 'torch/onnx/_internal/jit_utils.py' 2025-01-24T02:56:26.5137920Z adding 'torch/onnx/_internal/onnx_proto_utils.py' 2025-01-24T02:56:26.5149680Z adding 'torch/onnx/_internal/onnxruntime.py' 2025-01-24T02:56:26.5152680Z adding 'torch/onnx/_internal/registration.py' 2025-01-24T02:56:26.5154110Z adding 'torch/onnx/_internal/diagnostics/__init__.py' 2025-01-24T02:56:26.5156270Z adding 'torch/onnx/_internal/diagnostics/_diagnostic.py' 2025-01-24T02:56:26.5161910Z adding 'torch/onnx/_internal/diagnostics/_rules.py' 2025-01-24T02:56:26.5163480Z adding 'torch/onnx/_internal/diagnostics/infra/__init__.py' 2025-01-24T02:56:26.5165940Z adding 'torch/onnx/_internal/diagnostics/infra/_infra.py' 2025-01-24T02:56:26.5169540Z adding 'torch/onnx/_internal/diagnostics/infra/context.py' 2025-01-24T02:56:26.5171320Z adding 'torch/onnx/_internal/diagnostics/infra/decorator.py' 2025-01-24T02:56:26.5172740Z adding 'torch/onnx/_internal/diagnostics/infra/formatter.py' 2025-01-24T02:56:26.5174080Z adding 'torch/onnx/_internal/diagnostics/infra/utils.py' 2025-01-24T02:56:26.5176320Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/__init__.py' 2025-01-24T02:56:26.5177690Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_address.py' 2025-01-24T02:56:26.5178600Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_artifact.py' 2025-01-24T02:56:26.5180030Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_artifact_change.py' 2025-01-24T02:56:26.5180860Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_artifact_content.py' 2025-01-24T02:56:26.5182320Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_artifact_location.py' 2025-01-24T02:56:26.5183070Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_attachment.py' 2025-01-24T02:56:26.5184460Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_code_flow.py' 2025-01-24T02:56:26.5185320Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_configuration_override.py' 2025-01-24T02:56:26.5186740Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_conversion.py' 2025-01-24T02:56:26.5187430Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_edge.py' 2025-01-24T02:56:26.5188850Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_edge_traversal.py' 2025-01-24T02:56:26.5189620Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_exception.py' 2025-01-24T02:56:26.5191240Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_external_properties.py' 2025-01-24T02:56:26.5192110Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_external_property_file_reference.py' 2025-01-24T02:56:26.5193660Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_external_property_file_references.py' 2025-01-24T02:56:26.5194330Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_fix.py' 2025-01-24T02:56:26.5195700Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_graph.py' 2025-01-24T02:56:26.5196550Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_graph_traversal.py' 2025-01-24T02:56:26.5198170Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_invocation.py' 2025-01-24T02:56:26.5199040Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_location.py' 2025-01-24T02:56:26.5200480Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_location_relationship.py' 2025-01-24T02:56:26.5201260Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_logical_location.py' 2025-01-24T02:56:26.5202650Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_message.py' 2025-01-24T02:56:26.5203370Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_multiformat_message_string.py' 2025-01-24T02:56:26.5204340Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_node.py' 2025-01-24T02:56:26.5205920Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_notification.py' 2025-01-24T02:56:26.5206690Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_physical_location.py' 2025-01-24T02:56:26.5207700Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_property_bag.py' 2025-01-24T02:56:26.5209070Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_rectangle.py' 2025-01-24T02:56:26.5209800Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_region.py' 2025-01-24T02:56:26.5211190Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_replacement.py' 2025-01-24T02:56:26.5211960Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_reporting_configuration.py' 2025-01-24T02:56:26.5213460Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor.py' 2025-01-24T02:56:26.5214280Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor_reference.py' 2025-01-24T02:56:26.5215370Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor_relationship.py' 2025-01-24T02:56:26.5216980Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_result.py' 2025-01-24T02:56:26.5217890Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_result_provenance.py' 2025-01-24T02:56:26.5219550Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_run.py' 2025-01-24T02:56:26.5220410Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_run_automation_details.py' 2025-01-24T02:56:26.5221860Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_sarif_log.py' 2025-01-24T02:56:26.5222520Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_special_locations.py' 2025-01-24T02:56:26.5223770Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_stack.py' 2025-01-24T02:56:26.5224560Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_stack_frame.py' 2025-01-24T02:56:26.5225950Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_suppression.py' 2025-01-24T02:56:26.5226690Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_thread_flow.py' 2025-01-24T02:56:26.5228210Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_thread_flow_location.py' 2025-01-24T02:56:26.5228880Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_tool.py' 2025-01-24T02:56:26.5230620Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_tool_component.py' 2025-01-24T02:56:26.5231450Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_tool_component_reference.py' 2025-01-24T02:56:26.5232940Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_translation_metadata.py' 2025-01-24T02:56:26.5233650Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_version_control_details.py' 2025-01-24T02:56:26.5235080Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_web_request.py' 2025-01-24T02:56:26.5239600Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_web_response.py' 2025-01-24T02:56:26.5240110Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/version.py' 2025-01-24T02:56:26.5240530Z adding 'torch/onnx/_internal/exporter/__init__.py' 2025-01-24T02:56:26.5240910Z adding 'torch/onnx/_internal/exporter/_analysis.py' 2025-01-24T02:56:26.5246880Z adding 'torch/onnx/_internal/exporter/_building.py' 2025-01-24T02:56:26.5249590Z adding 'torch/onnx/_internal/exporter/_capture_strategies.py' 2025-01-24T02:56:26.5253050Z adding 'torch/onnx/_internal/exporter/_compat.py' 2025-01-24T02:56:26.5266770Z adding 'torch/onnx/_internal/exporter/_core.py' 2025-01-24T02:56:26.5268430Z adding 'torch/onnx/_internal/exporter/_decomp.py' 2025-01-24T02:56:26.5271630Z adding 'torch/onnx/_internal/exporter/_dispatching.py' 2025-01-24T02:56:26.5272440Z adding 'torch/onnx/_internal/exporter/_errors.py' 2025-01-24T02:56:26.5273920Z adding 'torch/onnx/_internal/exporter/_fx_passes.py' 2025-01-24T02:56:26.5275360Z adding 'torch/onnx/_internal/exporter/_ir_passes.py' 2025-01-24T02:56:26.5276620Z adding 'torch/onnx/_internal/exporter/_isolated.py' 2025-01-24T02:56:26.5279700Z adding 'torch/onnx/_internal/exporter/_onnx_program.py' 2025-01-24T02:56:26.5282330Z adding 'torch/onnx/_internal/exporter/_registration.py' 2025-01-24T02:56:26.5284280Z adding 'torch/onnx/_internal/exporter/_reporting.py' 2025-01-24T02:56:26.5288870Z adding 'torch/onnx/_internal/exporter/_schemas.py' 2025-01-24T02:56:26.5290220Z adding 'torch/onnx/_internal/exporter/_tensors.py' 2025-01-24T02:56:26.5291630Z adding 'torch/onnx/_internal/exporter/_testing.py' 2025-01-24T02:56:26.5293170Z adding 'torch/onnx/_internal/exporter/_verification.py' 2025-01-24T02:56:26.5294470Z adding 'torch/onnx/_internal/exporter/_torchlib/__init__.py' 2025-01-24T02:56:26.5295300Z adding 'torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py' 2025-01-24T02:56:26.5296760Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/__init__.py' 2025-01-24T02:56:26.5298190Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/hop.py' 2025-01-24T02:56:26.5299490Z adding 'torch/onnx/_internal/fx/__init__.py' 2025-01-24T02:56:26.5302590Z adding 'torch/onnx/_internal/fx/_pass.py' 2025-01-24T02:56:26.5304600Z adding 'torch/onnx/_internal/fx/decomposition_skip.py' 2025-01-24T02:56:26.5307770Z adding 'torch/onnx/_internal/fx/decomposition_table.py' 2025-01-24T02:56:26.5310590Z adding 'torch/onnx/_internal/fx/diagnostics.py' 2025-01-24T02:56:26.5313250Z adding 'torch/onnx/_internal/fx/dynamo_graph_extractor.py' 2025-01-24T02:56:26.5320890Z adding 'torch/onnx/_internal/fx/fx_onnx_interpreter.py' 2025-01-24T02:56:26.5324200Z adding 'torch/onnx/_internal/fx/fx_symbolic_graph_extractor.py' 2025-01-24T02:56:26.5332120Z adding 'torch/onnx/_internal/fx/onnxfunction_dispatcher.py' 2025-01-24T02:56:26.5334350Z adding 'torch/onnx/_internal/fx/patcher.py' 2025-01-24T02:56:26.5336100Z adding 'torch/onnx/_internal/fx/registration.py' 2025-01-24T02:56:26.5339350Z adding 'torch/onnx/_internal/fx/serialization.py' 2025-01-24T02:56:26.5341810Z adding 'torch/onnx/_internal/fx/type_utils.py' 2025-01-24T02:56:26.5343390Z adding 'torch/onnx/_internal/fx/analysis/__init__.py' 2025-01-24T02:56:26.5345110Z adding 'torch/onnx/_internal/fx/analysis/unsupported_nodes.py' 2025-01-24T02:56:26.5346650Z adding 'torch/onnx/_internal/fx/passes/__init__.py' 2025-01-24T02:56:26.5348580Z adding 'torch/onnx/_internal/fx/passes/_utils.py' 2025-01-24T02:56:26.5350320Z adding 'torch/onnx/_internal/fx/passes/decomp.py' 2025-01-24T02:56:26.5352570Z adding 'torch/onnx/_internal/fx/passes/functionalization.py' 2025-01-24T02:56:26.5360500Z adding 'torch/onnx/_internal/fx/passes/modularization.py' 2025-01-24T02:56:26.5362720Z adding 'torch/onnx/_internal/fx/passes/readability.py' 2025-01-24T02:56:26.5373170Z adding 'torch/onnx/_internal/fx/passes/type_promotion.py' 2025-01-24T02:56:26.5375290Z adding 'torch/onnx/_internal/fx/passes/virtualization.py' 2025-01-24T02:56:26.5377220Z adding 'torch/optim/__init__.py' 2025-01-24T02:56:26.5382780Z adding 'torch/optim/_adafactor.py' 2025-01-24T02:56:26.5384560Z adding 'torch/optim/_functional.py' 2025-01-24T02:56:26.5388260Z adding 'torch/optim/adadelta.py' 2025-01-24T02:56:26.5392810Z adding 'torch/optim/adagrad.py' 2025-01-24T02:56:26.5400270Z adding 'torch/optim/adam.py' 2025-01-24T02:56:26.5404140Z adding 'torch/optim/adamax.py' 2025-01-24T02:56:26.5406450Z adding 'torch/optim/adamw.py' 2025-01-24T02:56:26.5410130Z adding 'torch/optim/asgd.py' 2025-01-24T02:56:26.5414470Z adding 'torch/optim/lbfgs.py' 2025-01-24T02:56:26.5429640Z adding 'torch/optim/lr_scheduler.py' 2025-01-24T02:56:26.5435070Z adding 'torch/optim/nadam.py' 2025-01-24T02:56:26.5445300Z adding 'torch/optim/optimizer.py' 2025-01-24T02:56:26.5450290Z adding 'torch/optim/radam.py' 2025-01-24T02:56:26.5454610Z adding 'torch/optim/rmsprop.py' 2025-01-24T02:56:26.5458540Z adding 'torch/optim/rprop.py' 2025-01-24T02:56:26.5462820Z adding 'torch/optim/sgd.py' 2025-01-24T02:56:26.5465490Z adding 'torch/optim/sparse_adam.py' 2025-01-24T02:56:26.5469840Z adding 'torch/optim/swa_utils.py' 2025-01-24T02:56:26.5471690Z adding 'torch/optim/_multi_tensor/__init__.py' 2025-01-24T02:56:26.5472970Z adding 'torch/optim/_multi_tensor/__init__.pyi' 2025-01-24T02:56:26.5474590Z adding 'torch/package/__init__.py' 2025-01-24T02:56:26.5476650Z adding 'torch/package/_digraph.py' 2025-01-24T02:56:26.5478200Z adding 'torch/package/_directory_reader.py' 2025-01-24T02:56:26.5479860Z adding 'torch/package/_importlib.py' 2025-01-24T02:56:26.5481380Z adding 'torch/package/_mangling.py' 2025-01-24T02:56:26.5483000Z adding 'torch/package/_mock.py' 2025-01-24T02:56:26.5484980Z adding 'torch/package/_package_pickler.py' 2025-01-24T02:56:26.5486360Z adding 'torch/package/_package_unpickler.py' 2025-01-24T02:56:26.5488320Z adding 'torch/package/_stdlib.py' 2025-01-24T02:56:26.5490400Z adding 'torch/package/file_structure_representation.py' 2025-01-24T02:56:26.5492090Z adding 'torch/package/find_file_dependencies.py' 2025-01-24T02:56:26.5493830Z adding 'torch/package/glob_group.py' 2025-01-24T02:56:26.5496610Z adding 'torch/package/importer.py' 2025-01-24T02:56:26.5507510Z adding 'torch/package/package_exporter.py' 2025-01-24T02:56:26.5515230Z adding 'torch/package/package_importer.py' 2025-01-24T02:56:26.5517480Z adding 'torch/package/analyze/__init__.py' 2025-01-24T02:56:26.5519050Z adding 'torch/package/analyze/find_first_use_of_broken_modules.py' 2025-01-24T02:56:26.5523710Z adding 'torch/package/analyze/is_from_package.py' 2025-01-24T02:56:26.5524110Z adding 'torch/package/analyze/trace_dependencies.py' 2025-01-24T02:56:26.5524450Z adding 'torch/profiler/__init__.py' 2025-01-24T02:56:26.5534140Z adding 'torch/profiler/_memory_profiler.py' 2025-01-24T02:56:26.5539330Z adding 'torch/profiler/_pattern_matcher.py' 2025-01-24T02:56:26.5542910Z adding 'torch/profiler/_utils.py' 2025-01-24T02:56:26.5544500Z adding 'torch/profiler/itt.py' 2025-01-24T02:56:26.5553420Z adding 'torch/profiler/profiler.py' 2025-01-24T02:56:26.5554880Z adding 'torch/profiler/python_tracer.py' 2025-01-24T02:56:26.5556930Z adding 'torch/quantization/__init__.py' 2025-01-24T02:56:26.5558300Z adding 'torch/quantization/_numeric_suite.py' 2025-01-24T02:56:26.5559620Z adding 'torch/quantization/_numeric_suite_fx.py' 2025-01-24T02:56:26.5561520Z adding 'torch/quantization/_quantized_conversions.py' 2025-01-24T02:56:26.5562830Z adding 'torch/quantization/fake_quantize.py' 2025-01-24T02:56:26.5564100Z adding 'torch/quantization/fuse_modules.py' 2025-01-24T02:56:26.5565410Z adding 'torch/quantization/fuser_method_mappings.py' 2025-01-24T02:56:26.5566680Z adding 'torch/quantization/observer.py' 2025-01-24T02:56:26.5567980Z adding 'torch/quantization/qconfig.py' 2025-01-24T02:56:26.5569280Z adding 'torch/quantization/quant_type.py' 2025-01-24T02:56:26.5570690Z adding 'torch/quantization/quantization_mappings.py' 2025-01-24T02:56:26.5571930Z adding 'torch/quantization/quantize.py' 2025-01-24T02:56:26.5573210Z adding 'torch/quantization/quantize_fx.py' 2025-01-24T02:56:26.5574480Z adding 'torch/quantization/quantize_jit.py' 2025-01-24T02:56:26.5575700Z adding 'torch/quantization/stubs.py' 2025-01-24T02:56:26.5576980Z adding 'torch/quantization/utils.py' 2025-01-24T02:56:26.5578680Z adding 'torch/quantization/fx/__init__.py' 2025-01-24T02:56:26.5580130Z adding 'torch/quantization/fx/_equalize.py' 2025-01-24T02:56:26.5581370Z adding 'torch/quantization/fx/convert.py' 2025-01-24T02:56:26.5582610Z adding 'torch/quantization/fx/fuse.py' 2025-01-24T02:56:26.5583850Z adding 'torch/quantization/fx/fusion_patterns.py' 2025-01-24T02:56:26.5585090Z adding 'torch/quantization/fx/graph_module.py' 2025-01-24T02:56:26.5586320Z adding 'torch/quantization/fx/match_utils.py' 2025-01-24T02:56:26.5587620Z adding 'torch/quantization/fx/pattern_utils.py' 2025-01-24T02:56:26.5588840Z adding 'torch/quantization/fx/prepare.py' 2025-01-24T02:56:26.5590230Z adding 'torch/quantization/fx/quantization_patterns.py' 2025-01-24T02:56:26.5591570Z adding 'torch/quantization/fx/quantization_types.py' 2025-01-24T02:56:26.5592340Z adding 'torch/quantization/fx/utils.py' 2025-01-24T02:56:26.5594610Z adding 'torch/share/cmake/ATen/ATenConfig.cmake' 2025-01-24T02:56:26.5596870Z adding 'torch/share/cmake/Caffe2/Caffe2Config.cmake' 2025-01-24T02:56:26.5598320Z adding 'torch/share/cmake/Caffe2/Caffe2Targets-release.cmake' 2025-01-24T02:56:26.5600190Z adding 'torch/share/cmake/Caffe2/Caffe2Targets.cmake' 2025-01-24T02:56:26.5607950Z adding 'torch/share/cmake/Caffe2/FindCUDAToolkit.cmake' 2025-01-24T02:56:26.5609670Z adding 'torch/share/cmake/Caffe2/FindCUDSS.cmake' 2025-01-24T02:56:26.5611280Z adding 'torch/share/cmake/Caffe2/FindCUSPARSELT.cmake' 2025-01-24T02:56:26.5613130Z adding 'torch/share/cmake/Caffe2/FindSYCLToolkit.cmake' 2025-01-24T02:56:26.5614690Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake' 2025-01-24T02:56:26.5616370Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake' 2025-01-24T02:56:26.5618280Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake' 2025-01-24T02:56:26.5637410Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake' 2025-01-24T02:56:26.5641680Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake' 2025-01-24T02:56:26.5643250Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake' 2025-01-24T02:56:26.5645530Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake' 2025-01-24T02:56:26.5647290Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake' 2025-01-24T02:56:26.5650310Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake' 2025-01-24T02:56:26.5653180Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake' 2025-01-24T02:56:26.5655800Z adding 'torch/share/cmake/Caffe2/public/LoadHIP.cmake' 2025-01-24T02:56:26.5659120Z adding 'torch/share/cmake/Caffe2/public/cuda.cmake' 2025-01-24T02:56:26.5660790Z adding 'torch/share/cmake/Caffe2/public/gflags.cmake' 2025-01-24T02:56:26.5662360Z adding 'torch/share/cmake/Caffe2/public/glog.cmake' 2025-01-24T02:56:26.5663810Z adding 'torch/share/cmake/Caffe2/public/mkl.cmake' 2025-01-24T02:56:26.5665110Z adding 'torch/share/cmake/Caffe2/public/mkldnn.cmake' 2025-01-24T02:56:26.5666770Z adding 'torch/share/cmake/Caffe2/public/protobuf.cmake' 2025-01-24T02:56:26.5671250Z adding 'torch/share/cmake/Caffe2/public/utils.cmake' 2025-01-24T02:56:26.5672790Z adding 'torch/share/cmake/Caffe2/public/xpu.cmake' 2025-01-24T02:56:26.5675040Z adding 'torch/share/cmake/Torch/TorchConfig.cmake' 2025-01-24T02:56:26.5676390Z adding 'torch/share/cmake/Torch/TorchConfigVersion.cmake' 2025-01-24T02:56:26.5677800Z adding 'torch/signal/__init__.py' 2025-01-24T02:56:26.5679250Z adding 'torch/signal/windows/__init__.py' 2025-01-24T02:56:26.5683080Z adding 'torch/signal/windows/windows.py' 2025-01-24T02:56:26.5688960Z adding 'torch/sparse/__init__.py' 2025-01-24T02:56:26.5692900Z adding 'torch/sparse/_semi_structured_conversions.py' 2025-01-24T02:56:26.5694920Z adding 'torch/sparse/_semi_structured_ops.py' 2025-01-24T02:56:26.5710800Z adding 'torch/sparse/_triton_ops.py' 2025-01-24T02:56:26.5794770Z adding 'torch/sparse/_triton_ops_meta.py' 2025-01-24T02:56:26.5802450Z adding 'torch/sparse/semi_structured.py' 2025-01-24T02:56:26.5807880Z adding 'torch/special/__init__.py' 2025-01-24T02:56:26.5809630Z adding 'torch/testing/__init__.py' 2025-01-24T02:56:26.5822060Z adding 'torch/testing/_comparison.py' 2025-01-24T02:56:26.5825540Z adding 'torch/testing/_creation.py' 2025-01-24T02:56:26.5827140Z adding 'torch/testing/_utils.py' 2025-01-24T02:56:26.5828990Z adding 'torch/testing/_internal/__init__.py' 2025-01-24T02:56:26.5833340Z adding 'torch/testing/_internal/autocast_test_lists.py' 2025-01-24T02:56:26.5836660Z adding 'torch/testing/_internal/autograd_function_db.py' 2025-01-24T02:56:26.5839130Z adding 'torch/testing/_internal/check_kernel_launches.py' 2025-01-24T02:56:26.5842270Z adding 'torch/testing/_internal/common_cuda.py' 2025-01-24T02:56:26.5862890Z adding 'torch/testing/_internal/common_device_type.py' 2025-01-24T02:56:26.5863420Z adding 'torch/testing/_internal/common_dist_composable.py' 2025-01-24T02:56:26.5873300Z adding 'torch/testing/_internal/common_distributed.py' 2025-01-24T02:56:26.5875330Z adding 'torch/testing/_internal/common_dtype.py' 2025-01-24T02:56:26.5886740Z adding 'torch/testing/_internal/common_fsdp.py' 2025-01-24T02:56:26.5890500Z adding 'torch/testing/_internal/common_jit.py' 2025-01-24T02:56:26.6053570Z adding 'torch/testing/_internal/common_methods_invocations.py' 2025-01-24T02:56:26.6060480Z adding 'torch/testing/_internal/common_mkldnn.py' 2025-01-24T02:56:26.6083410Z adding 'torch/testing/_internal/common_modules.py' 2025-01-24T02:56:26.6107390Z adding 'torch/testing/_internal/common_nn.py' 2025-01-24T02:56:26.6118910Z adding 'torch/testing/_internal/common_optimizers.py' 2025-01-24T02:56:26.6121720Z adding 'torch/testing/_internal/common_pruning.py' 2025-01-24T02:56:26.6141260Z adding 'torch/testing/_internal/common_quantization.py' 2025-01-24T02:56:26.6144240Z adding 'torch/testing/_internal/common_quantized.py' 2025-01-24T02:56:26.6147110Z adding 'torch/testing/_internal/common_subclass.py' 2025-01-24T02:56:26.6202550Z adding 'torch/testing/_internal/common_utils.py' 2025-01-24T02:56:26.6208890Z adding 'torch/testing/_internal/composite_compliance.py' 2025-01-24T02:56:26.6212660Z adding 'torch/testing/_internal/custom_op_db.py' 2025-01-24T02:56:26.6214620Z adding 'torch/testing/_internal/custom_tensor.py' 2025-01-24T02:56:26.6216880Z adding 'torch/testing/_internal/dist_utils.py' 2025-01-24T02:56:26.6218840Z adding 'torch/testing/_internal/dynamo_test_failures.py' 2025-01-24T02:56:26.6220160Z adding 'torch/testing/_internal/fake_config_module.py' 2025-01-24T02:56:26.6221460Z adding 'torch/testing/_internal/fake_config_module2.py' 2025-01-24T02:56:26.6222160Z adding 'torch/testing/_internal/fake_config_module3.py' 2025-01-24T02:56:26.6224460Z adding 'torch/testing/_internal/hop_db.py' 2025-01-24T02:56:26.6227870Z adding 'torch/testing/_internal/hypothesis_utils.py' 2025-01-24T02:56:26.6229650Z adding 'torch/testing/_internal/inductor_utils.py' 2025-01-24T02:56:26.6236000Z adding 'torch/testing/_internal/jit_metaprogramming_utils.py' 2025-01-24T02:56:26.6242970Z adding 'torch/testing/_internal/jit_utils.py' 2025-01-24T02:56:26.6245300Z adding 'torch/testing/_internal/logging_tensor.py' 2025-01-24T02:56:26.6247450Z adding 'torch/testing/_internal/logging_utils.py' 2025-01-24T02:56:26.6248780Z adding 'torch/testing/_internal/quantization_torch_package_models.py' 2025-01-24T02:56:26.6249490Z adding 'torch/testing/_internal/static_module.py' 2025-01-24T02:56:26.6251110Z adding 'torch/testing/_internal/subclasses.py' 2025-01-24T02:56:26.6252700Z adding 'torch/testing/_internal/torchbind_impls.py' 2025-01-24T02:56:26.6255190Z adding 'torch/testing/_internal/triton_utils.py' 2025-01-24T02:56:26.6256750Z adding 'torch/testing/_internal/two_tensor.py' 2025-01-24T02:56:26.6258150Z adding 'torch/testing/_internal/codegen/__init__.py' 2025-01-24T02:56:26.6259400Z adding 'torch/testing/_internal/data/__init__.py' 2025-01-24T02:56:26.6260160Z adding 'torch/testing/_internal/data/network1.py' 2025-01-24T02:56:26.6261470Z adding 'torch/testing/_internal/data/network2.py' 2025-01-24T02:56:26.6262860Z adding 'torch/testing/_internal/distributed/__init__.py' 2025-01-24T02:56:26.6264690Z adding 'torch/testing/_internal/distributed/checkpoint_utils.py' 2025-01-24T02:56:26.6266420Z adding 'torch/testing/_internal/distributed/common_state_dict.py' 2025-01-24T02:56:26.6271350Z adding 'torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py' 2025-01-24T02:56:26.6338480Z adding 'torch/testing/_internal/distributed/distributed_test.py' 2025-01-24T02:56:26.6341850Z adding 'torch/testing/_internal/distributed/distributed_utils.py' 2025-01-24T02:56:26.6343190Z adding 'torch/testing/_internal/distributed/fake_pg.py' 2025-01-24T02:56:26.6347050Z adding 'torch/testing/_internal/distributed/multi_threaded_pg.py' 2025-01-24T02:56:26.6349160Z adding 'torch/testing/_internal/distributed/rpc_utils.py' 2025-01-24T02:56:26.6350570Z adding 'torch/testing/_internal/distributed/_shard/__init__.py' 2025-01-24T02:56:26.6351940Z adding 'torch/testing/_internal/distributed/_shard/test_common.py' 2025-01-24T02:56:26.6353650Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py' 2025-01-24T02:56:26.6355340Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py' 2025-01-24T02:56:26.6356320Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py' 2025-01-24T02:56:26.6357780Z adding 'torch/testing/_internal/distributed/_tensor/__init__.py' 2025-01-24T02:56:26.6362400Z adding 'torch/testing/_internal/distributed/_tensor/common_dtensor.py' 2025-01-24T02:56:26.6363760Z adding 'torch/testing/_internal/distributed/nn/__init__.py' 2025-01-24T02:56:26.6364630Z adding 'torch/testing/_internal/distributed/nn/api/__init__.py' 2025-01-24T02:56:26.6368960Z adding 'torch/testing/_internal/distributed/nn/api/remote_module_test.py' 2025-01-24T02:56:26.6370420Z adding 'torch/testing/_internal/distributed/rpc/__init__.py' 2025-01-24T02:56:26.6388210Z adding 'torch/testing/_internal/distributed/rpc/dist_autograd_test.py' 2025-01-24T02:56:26.6390860Z adding 'torch/testing/_internal/distributed/rpc/dist_optimizer_test.py' 2025-01-24T02:56:26.6393520Z adding 'torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py' 2025-01-24T02:56:26.6394970Z adding 'torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py' 2025-01-24T02:56:26.6396430Z adding 'torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py' 2025-01-24T02:56:26.6434370Z adding 'torch/testing/_internal/distributed/rpc/rpc_test.py' 2025-01-24T02:56:26.6436740Z adding 'torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py' 2025-01-24T02:56:26.6437720Z adding 'torch/testing/_internal/distributed/rpc/examples/__init__.py' 2025-01-24T02:56:26.6439770Z adding 'torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py' 2025-01-24T02:56:26.6442410Z adding 'torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py' 2025-01-24T02:56:26.6443400Z adding 'torch/testing/_internal/distributed/rpc/jit/__init__.py' 2025-01-24T02:56:26.6445240Z adding 'torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py' 2025-01-24T02:56:26.6453480Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test.py' 2025-01-24T02:56:26.6455690Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py' 2025-01-24T02:56:26.6457030Z adding 'torch/testing/_internal/generated/__init__.py' 2025-01-24T02:56:26.6493520Z adding 'torch/testing/_internal/generated/annotated_fn_args.py' 2025-01-24T02:56:26.6497090Z adding 'torch/testing/_internal/opinfo/__init__.py' 2025-01-24T02:56:26.6523740Z adding 'torch/testing/_internal/opinfo/core.py' 2025-01-24T02:56:26.6526230Z adding 'torch/testing/_internal/opinfo/refs.py' 2025-01-24T02:56:26.6528850Z adding 'torch/testing/_internal/opinfo/utils.py' 2025-01-24T02:56:26.6530400Z adding 'torch/testing/_internal/opinfo/definitions/__init__.py' 2025-01-24T02:56:26.6535780Z adding 'torch/testing/_internal/opinfo/definitions/_masked.py' 2025-01-24T02:56:26.6539180Z adding 'torch/testing/_internal/opinfo/definitions/fft.py' 2025-01-24T02:56:26.6552400Z adding 'torch/testing/_internal/opinfo/definitions/linalg.py' 2025-01-24T02:56:26.6563100Z adding 'torch/testing/_internal/opinfo/definitions/nested.py' 2025-01-24T02:56:26.6566000Z adding 'torch/testing/_internal/opinfo/definitions/signal.py' 2025-01-24T02:56:26.6571240Z adding 'torch/testing/_internal/opinfo/definitions/sparse.py' 2025-01-24T02:56:26.6574690Z adding 'torch/testing/_internal/opinfo/definitions/special.py' 2025-01-24T02:56:26.6576210Z adding 'torch/testing/_internal/optests/__init__.py' 2025-01-24T02:56:26.6578230Z adding 'torch/testing/_internal/optests/aot_autograd.py' 2025-01-24T02:56:26.6580330Z adding 'torch/testing/_internal/optests/autograd_registration.py' 2025-01-24T02:56:26.6581040Z adding 'torch/testing/_internal/optests/fake_tensor.py' 2025-01-24T02:56:26.6588140Z adding 'torch/testing/_internal/optests/generate_tests.py' 2025-01-24T02:56:26.6589920Z adding 'torch/testing/_internal/optests/make_fx.py' 2025-01-24T02:56:26.6591240Z adding 'torch/testing/_internal/test_module/__init__.py' 2025-01-24T02:56:26.6592020Z adding 'torch/testing/_internal/test_module/future_div.py' 2025-01-24T02:56:26.6593340Z adding 'torch/testing/_internal/test_module/no_future_div.py' 2025-01-24T02:56:26.6595610Z adding 'torch/utils/__init__.py' 2025-01-24T02:56:26.6597430Z adding 'torch/utils/_backport_slots.py' 2025-01-24T02:56:26.6603650Z adding 'torch/utils/_config_module.py' 2025-01-24T02:56:26.6604990Z adding 'torch/utils/_config_typing.pyi' 2025-01-24T02:56:26.6607660Z adding 'torch/utils/_content_store.py' 2025-01-24T02:56:26.6609650Z adding 'torch/utils/_contextlib.py' 2025-01-24T02:56:26.6610990Z adding 'torch/utils/_cpp_embed_headers.py' 2025-01-24T02:56:26.6612270Z adding 'torch/utils/_cpp_extension_versioner.py' 2025-01-24T02:56:26.6618530Z adding 'torch/utils/_cxx_pytree.py' 2025-01-24T02:56:26.6620230Z adding 'torch/utils/_device.py' 2025-01-24T02:56:26.6621440Z adding 'torch/utils/_exposed_in.py' 2025-01-24T02:56:26.6622650Z adding 'torch/utils/_filelock.py' 2025-01-24T02:56:26.6623990Z adding 'torch/utils/_foreach_utils.py' 2025-01-24T02:56:26.6626730Z adding 'torch/utils/_freeze.py' 2025-01-24T02:56:26.6628050Z adding 'torch/utils/_functools.py' 2025-01-24T02:56:26.6629850Z adding 'torch/utils/_get_clean_triton.py' 2025-01-24T02:56:26.6631760Z adding 'torch/utils/_import_utils.py' 2025-01-24T02:56:26.6638180Z adding 'torch/utils/_mode_utils.py' 2025-01-24T02:56:26.6639920Z adding 'torch/utils/_ordered_set.py' 2025-01-24T02:56:26.6646420Z adding 'torch/utils/_python_dispatch.py' 2025-01-24T02:56:26.6657000Z adding 'torch/utils/_pytree.py' 2025-01-24T02:56:26.6658340Z adding 'torch/utils/_stats.py' 2025-01-24T02:56:26.6659550Z adding 'torch/utils/_thunk.py' 2025-01-24T02:56:26.6662170Z adding 'torch/utils/_traceback.py' 2025-01-24T02:56:26.6663640Z adding 'torch/utils/_triton.py' 2025-01-24T02:56:26.6664510Z adding 'torch/utils/_typing_utils.py' 2025-01-24T02:56:26.6666060Z adding 'torch/utils/_zip.py' 2025-01-24T02:56:26.6670050Z adding 'torch/utils/backend_registration.py' 2025-01-24T02:56:26.6674610Z adding 'torch/utils/bundled_inputs.py' 2025-01-24T02:56:26.6690920Z adding 'torch/utils/checkpoint.py' 2025-01-24T02:56:26.6696470Z adding 'torch/utils/collect_env.py' 2025-01-24T02:56:26.6697710Z adding 'torch/utils/cpp_backtrace.py' 2025-01-24T02:56:26.6722360Z adding 'torch/utils/cpp_extension.py' 2025-01-24T02:56:26.6723950Z adding 'torch/utils/deterministic.py' 2025-01-24T02:56:26.6725690Z adding 'torch/utils/dlpack.py' 2025-01-24T02:56:26.6726910Z adding 'torch/utils/file_baton.py' 2025-01-24T02:56:26.6732730Z adding 'torch/utils/flop_counter.py' 2025-01-24T02:56:26.6735280Z adding 'torch/utils/hooks.py' 2025-01-24T02:56:26.6737060Z adding 'torch/utils/mkldnn.py' 2025-01-24T02:56:26.6738880Z adding 'torch/utils/mobile_optimizer.py' 2025-01-24T02:56:26.6739580Z adding 'torch/utils/model_zoo.py' 2025-01-24T02:56:26.6741550Z adding 'torch/utils/module_tracker.py' 2025-01-24T02:56:26.6743300Z adding 'torch/utils/show_pickle.py' 2025-01-24T02:56:26.6745350Z adding 'torch/utils/throughput_benchmark.py' 2025-01-24T02:56:26.6747980Z adding 'torch/utils/weak.py' 2025-01-24T02:56:26.6749700Z adding 'torch/utils/_strobelight/__init__.py' 2025-01-24T02:56:26.6752210Z adding 'torch/utils/_strobelight/cli_function_profiler.py' 2025-01-24T02:56:26.6753470Z adding 'torch/utils/_sympy/__init__.py' 2025-01-24T02:56:26.6764170Z adding 'torch/utils/_sympy/functions.py' 2025-01-24T02:56:26.6766770Z adding 'torch/utils/_sympy/interp.py' 2025-01-24T02:56:26.6768930Z adding 'torch/utils/_sympy/numbers.py' 2025-01-24T02:56:26.6772240Z adding 'torch/utils/_sympy/printers.py' 2025-01-24T02:56:26.6774950Z adding 'torch/utils/_sympy/reference.py' 2025-01-24T02:56:26.6776360Z adding 'torch/utils/_sympy/singleton_int.py' 2025-01-24T02:56:26.6778320Z adding 'torch/utils/_sympy/solve.py' 2025-01-24T02:56:26.6779910Z adding 'torch/utils/_sympy/symbol.py' 2025-01-24T02:56:26.6787850Z adding 'torch/utils/_sympy/value_ranges.py' 2025-01-24T02:56:26.6789340Z adding 'torch/utils/backcompat/__init__.py' 2025-01-24T02:56:26.6790610Z adding 'torch/utils/benchmark/__init__.py' 2025-01-24T02:56:26.6791850Z adding 'torch/utils/benchmark/examples/__init__.py' 2025-01-24T02:56:26.6793930Z adding 'torch/utils/benchmark/examples/blas_compare_setup.py' 2025-01-24T02:56:26.6795400Z adding 'torch/utils/benchmark/examples/compare.py' 2025-01-24T02:56:26.6796690Z adding 'torch/utils/benchmark/examples/fuzzer.py' 2025-01-24T02:56:26.6798350Z adding 'torch/utils/benchmark/examples/op_benchmark.py' 2025-01-24T02:56:26.6799110Z adding 'torch/utils/benchmark/examples/simple_timeit.py' 2025-01-24T02:56:26.6801060Z adding 'torch/utils/benchmark/examples/spectral_ops_fuzz_test.py' 2025-01-24T02:56:26.6801930Z adding 'torch/utils/benchmark/op_fuzzers/__init__.py' 2025-01-24T02:56:26.6803610Z adding 'torch/utils/benchmark/op_fuzzers/binary.py' 2025-01-24T02:56:26.6805060Z adding 'torch/utils/benchmark/op_fuzzers/sparse_binary.py' 2025-01-24T02:56:26.6806390Z adding 'torch/utils/benchmark/op_fuzzers/sparse_unary.py' 2025-01-24T02:56:26.6807800Z adding 'torch/utils/benchmark/op_fuzzers/spectral.py' 2025-01-24T02:56:26.6809140Z adding 'torch/utils/benchmark/op_fuzzers/unary.py' 2025-01-24T02:56:26.6810410Z adding 'torch/utils/benchmark/utils/__init__.py' 2025-01-24T02:56:26.6815820Z adding 'torch/utils/benchmark/utils/_stubs.py' 2025-01-24T02:56:26.6816160Z adding 'torch/utils/benchmark/utils/common.py' 2025-01-24T02:56:26.6818150Z adding 'torch/utils/benchmark/utils/compare.py' 2025-01-24T02:56:26.6820240Z adding 'torch/utils/benchmark/utils/compile.py' 2025-01-24T02:56:26.6822250Z adding 'torch/utils/benchmark/utils/cpp_jit.py' 2025-01-24T02:56:26.6826430Z adding 'torch/utils/benchmark/utils/fuzzer.py' 2025-01-24T02:56:26.6828300Z adding 'torch/utils/benchmark/utils/sparse_fuzzer.py' 2025-01-24T02:56:26.6829170Z adding 'torch/utils/benchmark/utils/timeit_template.cpp' 2025-01-24T02:56:26.6834220Z adding 'torch/utils/benchmark/utils/timer.py' 2025-01-24T02:56:26.6835620Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/__init__.py' 2025-01-24T02:56:26.6837520Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h' 2025-01-24T02:56:26.6838390Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp' 2025-01-24T02:56:26.6839870Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp' 2025-01-24T02:56:26.6847730Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py' 2025-01-24T02:56:26.6885530Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h' 2025-01-24T02:56:26.6888460Z adding 'torch/utils/bottleneck/__init__.py' 2025-01-24T02:56:26.6890680Z adding 'torch/utils/bottleneck/__main__.py' 2025-01-24T02:56:26.6892250Z adding 'torch/utils/data/__init__.py' 2025-01-24T02:56:26.6893170Z adding 'torch/utils/data/backward_compatibility.py' 2025-01-24T02:56:26.6912540Z adding 'torch/utils/data/dataloader.py' 2025-01-24T02:56:26.6917080Z adding 'torch/utils/data/dataset.py' 2025-01-24T02:56:26.6919180Z adding 'torch/utils/data/distributed.py' 2025-01-24T02:56:26.6921070Z adding 'torch/utils/data/graph.py' 2025-01-24T02:56:26.6923010Z adding 'torch/utils/data/graph_settings.py' 2025-01-24T02:56:26.6925970Z adding 'torch/utils/data/sampler.py' 2025-01-24T02:56:26.6927590Z adding 'torch/utils/data/_utils/__init__.py' 2025-01-24T02:56:26.6930910Z adding 'torch/utils/data/_utils/collate.py' 2025-01-24T02:56:26.6932180Z adding 'torch/utils/data/_utils/fetch.py' 2025-01-24T02:56:26.6933760Z adding 'torch/utils/data/_utils/pin_memory.py' 2025-01-24T02:56:26.6935240Z adding 'torch/utils/data/_utils/signal_handling.py' 2025-01-24T02:56:26.6938630Z adding 'torch/utils/data/_utils/worker.py' 2025-01-24T02:56:26.6940040Z adding 'torch/utils/data/datapipes/__init__.py' 2025-01-24T02:56:26.6941980Z adding 'torch/utils/data/datapipes/_decorator.py' 2025-01-24T02:56:26.6944890Z adding 'torch/utils/data/datapipes/_hook_iterator.py' 2025-01-24T02:56:26.6948730Z adding 'torch/utils/data/datapipes/_typing.py' 2025-01-24T02:56:26.6952080Z adding 'torch/utils/data/datapipes/datapipe.py' 2025-01-24T02:56:26.6958050Z adding 'torch/utils/data/datapipes/datapipe.pyi' 2025-01-24T02:56:26.6960900Z adding 'torch/utils/data/datapipes/gen_pyi.py' 2025-01-24T02:56:26.6962320Z adding 'torch/utils/data/datapipes/dataframe/__init__.py' 2025-01-24T02:56:26.6963720Z adding 'torch/utils/data/datapipes/dataframe/dataframe_wrapper.py' 2025-01-24T02:56:26.6966530Z adding 'torch/utils/data/datapipes/dataframe/dataframes.py' 2025-01-24T02:56:26.6968040Z adding 'torch/utils/data/datapipes/dataframe/datapipes.py' 2025-01-24T02:56:26.6968820Z adding 'torch/utils/data/datapipes/dataframe/structures.py' 2025-01-24T02:56:26.6970640Z adding 'torch/utils/data/datapipes/iter/__init__.py' 2025-01-24T02:56:26.6973090Z adding 'torch/utils/data/datapipes/iter/callable.py' 2025-01-24T02:56:26.6975110Z adding 'torch/utils/data/datapipes/iter/combinatorics.py' 2025-01-24T02:56:26.6979910Z adding 'torch/utils/data/datapipes/iter/combining.py' 2025-01-24T02:56:26.6981360Z adding 'torch/utils/data/datapipes/iter/filelister.py' 2025-01-24T02:56:26.6982820Z adding 'torch/utils/data/datapipes/iter/fileopener.py' 2025-01-24T02:56:26.6985500Z adding 'torch/utils/data/datapipes/iter/grouping.py' 2025-01-24T02:56:26.6986910Z adding 'torch/utils/data/datapipes/iter/routeddecoder.py' 2025-01-24T02:56:26.6988380Z adding 'torch/utils/data/datapipes/iter/selecting.py' 2025-01-24T02:56:26.6989840Z adding 'torch/utils/data/datapipes/iter/sharding.py' 2025-01-24T02:56:26.6991130Z adding 'torch/utils/data/datapipes/iter/streamreader.py' 2025-01-24T02:56:26.6992400Z adding 'torch/utils/data/datapipes/iter/utils.py' 2025-01-24T02:56:26.6993720Z adding 'torch/utils/data/datapipes/map/__init__.py' 2025-01-24T02:56:26.6994980Z adding 'torch/utils/data/datapipes/map/callable.py' 2025-01-24T02:56:26.6996570Z adding 'torch/utils/data/datapipes/map/combinatorics.py' 2025-01-24T02:56:26.6998010Z adding 'torch/utils/data/datapipes/map/combining.py' 2025-01-24T02:56:26.6999350Z adding 'torch/utils/data/datapipes/map/grouping.py' 2025-01-24T02:56:26.7000610Z adding 'torch/utils/data/datapipes/map/utils.py' 2025-01-24T02:56:26.7001880Z adding 'torch/utils/data/datapipes/utils/__init__.py' 2025-01-24T02:56:26.7004940Z adding 'torch/utils/data/datapipes/utils/common.py' 2025-01-24T02:56:26.7007790Z adding 'torch/utils/data/datapipes/utils/decoder.py' 2025-01-24T02:56:26.7009330Z adding 'torch/utils/data/datapipes/utils/snapshot.py' 2025-01-24T02:56:26.7010610Z adding 'torch/utils/hipify/__init__.py' 2025-01-24T02:56:26.7011910Z adding 'torch/utils/hipify/constants.py' 2025-01-24T02:56:26.7050450Z adding 'torch/utils/hipify/cuda_to_hip_mappings.py' 2025-01-24T02:56:26.7062330Z adding 'torch/utils/hipify/hipify_python.py' 2025-01-24T02:56:26.7063540Z adding 'torch/utils/hipify/version.py' 2025-01-24T02:56:26.7064750Z adding 'torch/utils/jit/__init__.py' 2025-01-24T02:56:26.7066250Z adding 'torch/utils/jit/log_extract.py' 2025-01-24T02:56:26.7070550Z adding 'torch/utils/model_dump/__init__.py' 2025-01-24T02:56:26.7071300Z adding 'torch/utils/model_dump/__main__.py' 2025-01-24T02:56:26.7075500Z adding 'torch/utils/model_dump/code.js' 2025-01-24T02:56:26.7076850Z adding 'torch/utils/model_dump/htm.mjs' 2025-01-24T02:56:26.7079620Z adding 'torch/utils/model_dump/preact.mjs' 2025-01-24T02:56:26.7080830Z adding 'torch/utils/model_dump/skeleton.html' 2025-01-24T02:56:26.7081510Z adding 'torch/utils/serialization/__init__.py' 2025-01-24T02:56:26.7082830Z adding 'torch/utils/serialization/config.py' 2025-01-24T02:56:26.7084130Z adding 'torch/utils/tensorboard/__init__.py' 2025-01-24T02:56:26.7085360Z adding 'torch/utils/tensorboard/_convert_np.py' 2025-01-24T02:56:26.7086690Z adding 'torch/utils/tensorboard/_embedding.py' 2025-01-24T02:56:26.7087970Z adding 'torch/utils/tensorboard/_onnx_graph.py' 2025-01-24T02:56:26.7089210Z adding 'torch/utils/tensorboard/_proto_graph.py' 2025-01-24T02:56:26.7093980Z adding 'torch/utils/tensorboard/_pytorch_graph.py' 2025-01-24T02:56:26.7094340Z adding 'torch/utils/tensorboard/_utils.py' 2025-01-24T02:56:26.7101940Z adding 'torch/utils/tensorboard/summary.py' 2025-01-24T02:56:26.7110250Z adding 'torch/utils/tensorboard/writer.py' 2025-01-24T02:56:26.7111630Z adding 'torch/utils/viz/__init__.py' 2025-01-24T02:56:26.7115380Z adding 'torch/utils/viz/_cycles.py' 2025-01-24T02:56:26.7119860Z adding 'torch/xpu/__init__.py' 2025-01-24T02:56:26.7121140Z adding 'torch/xpu/_gpu_trace.py' 2025-01-24T02:56:26.7122380Z adding 'torch/xpu/_utils.py' 2025-01-24T02:56:26.7124330Z adding 'torch/xpu/memory.py' 2025-01-24T02:56:26.7125890Z adding 'torch/xpu/random.py' 2025-01-24T02:56:26.7127770Z adding 'torch/xpu/streams.py' 2025-01-24T02:56:26.7131060Z adding 'torchgen/__init__.py' 2025-01-24T02:56:26.7132510Z adding 'torchgen/code_template.py' 2025-01-24T02:56:26.7134020Z adding 'torchgen/context.py' 2025-01-24T02:56:26.7158030Z adding 'torchgen/gen.py' 2025-01-24T02:56:26.7162180Z adding 'torchgen/gen_aoti_c_shim.py' 2025-01-24T02:56:26.7166880Z adding 'torchgen/gen_backend_stubs.py' 2025-01-24T02:56:26.7174470Z adding 'torchgen/gen_executorch.py' 2025-01-24T02:56:26.7182410Z adding 'torchgen/gen_functionalization_type.py' 2025-01-24T02:56:26.7187480Z adding 'torchgen/gen_lazy_tensor.py' 2025-01-24T02:56:26.7189160Z adding 'torchgen/gen_schema_utils.py' 2025-01-24T02:56:26.7191390Z adding 'torchgen/gen_vmap_plumbing.py' 2025-01-24T02:56:26.7192610Z adding 'torchgen/local.py' 2025-01-24T02:56:26.7219020Z adding 'torchgen/model.py' 2025-01-24T02:56:26.7226280Z adding 'torchgen/native_function_generation.py' 2025-01-24T02:56:26.7230520Z adding 'torchgen/utils.py' 2025-01-24T02:56:26.7231740Z adding 'torchgen/yaml_utils.py' 2025-01-24T02:56:26.7232950Z adding 'torchgen/aoti/__init__.py' 2025-01-24T02:56:26.7234480Z adding 'torchgen/aoti/fallback_ops.py' 2025-01-24T02:56:26.7235740Z adding 'torchgen/api/__init__.py' 2025-01-24T02:56:26.7244330Z adding 'torchgen/api/autograd.py' 2025-01-24T02:56:26.7248100Z adding 'torchgen/api/cpp.py' 2025-01-24T02:56:26.7249640Z adding 'torchgen/api/dispatcher.py' 2025-01-24T02:56:26.7251780Z adding 'torchgen/api/functionalization.py' 2025-01-24T02:56:26.7255770Z adding 'torchgen/api/lazy.py' 2025-01-24T02:56:26.7256980Z adding 'torchgen/api/meta.py' 2025-01-24T02:56:26.7258560Z adding 'torchgen/api/native.py' 2025-01-24T02:56:26.7271200Z adding 'torchgen/api/python.py' 2025-01-24T02:56:26.7273460Z adding 'torchgen/api/structured.py' 2025-01-24T02:56:26.7277410Z adding 'torchgen/api/translate.py' 2025-01-24T02:56:26.7279430Z adding 'torchgen/api/ufunc.py' 2025-01-24T02:56:26.7281910Z adding 'torchgen/api/unboxing.py' 2025-01-24T02:56:26.7283230Z adding 'torchgen/api/types/__init__.py' 2025-01-24T02:56:26.7286590Z adding 'torchgen/api/types/signatures.py' 2025-01-24T02:56:26.7288460Z adding 'torchgen/api/types/types.py' 2025-01-24T02:56:26.7290570Z adding 'torchgen/api/types/types_base.py' 2025-01-24T02:56:26.7291980Z adding 'torchgen/dest/__init__.py' 2025-01-24T02:56:26.7297780Z adding 'torchgen/dest/lazy_ir.py' 2025-01-24T02:56:26.7299180Z adding 'torchgen/dest/lazy_ts_lowering.py' 2025-01-24T02:56:26.7300600Z adding 'torchgen/dest/native_functions.py' 2025-01-24T02:56:26.7308760Z adding 'torchgen/dest/register_dispatch_key.py' 2025-01-24T02:56:26.7312810Z adding 'torchgen/dest/ufunc.py' 2025-01-24T02:56:26.7314120Z adding 'torchgen/executorch/__init__.py' 2025-01-24T02:56:26.7316340Z adding 'torchgen/executorch/model.py' 2025-01-24T02:56:26.7318120Z adding 'torchgen/executorch/parse.py' 2025-01-24T02:56:26.7319340Z adding 'torchgen/executorch/api/__init__.py' 2025-01-24T02:56:26.7321260Z adding 'torchgen/executorch/api/custom_ops.py' 2025-01-24T02:56:26.7324350Z adding 'torchgen/executorch/api/et_cpp.py' 2025-01-24T02:56:26.7326520Z adding 'torchgen/executorch/api/unboxing.py' 2025-01-24T02:56:26.7327810Z adding 'torchgen/executorch/api/types/__init__.py' 2025-01-24T02:56:26.7329120Z adding 'torchgen/executorch/api/types/signatures.py' 2025-01-24T02:56:26.7330380Z adding 'torchgen/executorch/api/types/types.py' 2025-01-24T02:56:26.7331610Z adding 'torchgen/operator_versions/__init__.py' 2025-01-24T02:56:26.7334320Z adding 'torchgen/operator_versions/gen_mobile_upgraders.py' 2025-01-24T02:56:26.7335120Z adding 'torchgen/operator_versions/gen_mobile_upgraders_constant.py' 2025-01-24T02:56:26.7412850Z adding 'torchgen/packaged/ATen/native/native_functions.yaml' 2025-01-24T02:56:26.7417090Z adding 'torchgen/packaged/ATen/native/tags.yaml' 2025-01-24T02:56:26.7418950Z adding 'torchgen/packaged/ATen/templates/ATenOpList.cpp' 2025-01-24T02:56:26.7420370Z adding 'torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp' 2025-01-24T02:56:26.7421170Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunction.h' 2025-01-24T02:56:26.7422770Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions.h' 2025-01-24T02:56:26.7423730Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h' 2025-01-24T02:56:26.7425160Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp' 2025-01-24T02:56:26.7425760Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h' 2025-01-24T02:56:26.7426670Z adding 'torchgen/packaged/ATen/templates/Function.h' 2025-01-24T02:56:26.7428110Z adding 'torchgen/packaged/ATen/templates/FunctionalInverses.h' 2025-01-24T02:56:26.7429560Z adding 'torchgen/packaged/ATen/templates/Functions.cpp' 2025-01-24T02:56:26.7431130Z adding 'torchgen/packaged/ATen/templates/Functions.h' 2025-01-24T02:56:26.7431900Z adding 'torchgen/packaged/ATen/templates/LazyIr.h' 2025-01-24T02:56:26.7433200Z adding 'torchgen/packaged/ATen/templates/LazyNonNativeIr.h' 2025-01-24T02:56:26.7433990Z adding 'torchgen/packaged/ATen/templates/MethodOperators.h' 2025-01-24T02:56:26.7435310Z adding 'torchgen/packaged/ATen/templates/NativeFunction.h' 2025-01-24T02:56:26.7436060Z adding 'torchgen/packaged/ATen/templates/NativeFunctions.h' 2025-01-24T02:56:26.7437400Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunction.h' 2025-01-24T02:56:26.7438060Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunctions.h' 2025-01-24T02:56:26.7443030Z adding 'torchgen/packaged/ATen/templates/Operator.h' 2025-01-24T02:56:26.7443450Z adding 'torchgen/packaged/ATen/templates/Operators.cpp' 2025-01-24T02:56:26.7443860Z adding 'torchgen/packaged/ATen/templates/Operators.h' 2025-01-24T02:56:26.7444310Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.cpp' 2025-01-24T02:56:26.7444800Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.h' 2025-01-24T02:56:26.7445290Z adding 'torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp' 2025-01-24T02:56:26.7446040Z adding 'torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp' 2025-01-24T02:56:26.7446790Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini' 2025-01-24T02:56:26.7448220Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp' 2025-01-24T02:56:26.7449640Z adding 'torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp' 2025-01-24T02:56:26.7450270Z adding 'torchgen/packaged/ATen/templates/RegisterSchema.cpp' 2025-01-24T02:56:26.7451640Z adding 'torchgen/packaged/ATen/templates/RegistrationDeclarations.h' 2025-01-24T02:56:26.7458280Z adding 'torchgen/packaged/ATen/templates/TensorBody.h' 2025-01-24T02:56:26.7459730Z adding 'torchgen/packaged/ATen/templates/TensorMethods.cpp' 2025-01-24T02:56:26.7460440Z adding 'torchgen/packaged/ATen/templates/UfuncCPU.cpp' 2025-01-24T02:56:26.7461750Z adding 'torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp' 2025-01-24T02:56:26.7462390Z adding 'torchgen/packaged/ATen/templates/UfuncCUDA.cu' 2025-01-24T02:56:26.7463750Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.cpp' 2025-01-24T02:56:26.7464510Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.h' 2025-01-24T02:56:26.7465920Z adding 'torchgen/packaged/ATen/templates/aten_interned_strings.h' 2025-01-24T02:56:26.7466510Z adding 'torchgen/packaged/ATen/templates/enum_tag.h' 2025-01-24T02:56:26.7468130Z adding 'torchgen/packaged/autograd/BUILD.bazel' 2025-01-24T02:56:26.7468780Z adding 'torchgen/packaged/autograd/README.md' 2025-01-24T02:56:26.7469790Z adding 'torchgen/packaged/autograd/__init__.py' 2025-01-24T02:56:26.7471020Z adding 'torchgen/packaged/autograd/build.bzl' 2025-01-24T02:56:26.7471670Z adding 'torchgen/packaged/autograd/context.py' 2025-01-24T02:56:26.7473350Z adding 'torchgen/packaged/autograd/deprecated.yaml' 2025-01-24T02:56:26.7503630Z adding 'torchgen/packaged/autograd/derivatives.yaml' 2025-01-24T02:56:26.7506600Z adding 'torchgen/packaged/autograd/gen_annotated_fn_args.py' 2025-01-24T02:56:26.7508240Z adding 'torchgen/packaged/autograd/gen_autograd.py' 2025-01-24T02:56:26.7514320Z adding 'torchgen/packaged/autograd/gen_autograd_functions.py' 2025-01-24T02:56:26.7519390Z adding 'torchgen/packaged/autograd/gen_inplace_or_view_type.py' 2025-01-24T02:56:26.7529120Z adding 'torchgen/packaged/autograd/gen_python_functions.py' 2025-01-24T02:56:26.7533640Z adding 'torchgen/packaged/autograd/gen_trace_type.py' 2025-01-24T02:56:26.7535420Z adding 'torchgen/packaged/autograd/gen_variable_factories.py' 2025-01-24T02:56:26.7552110Z adding 'torchgen/packaged/autograd/gen_variable_type.py' 2025-01-24T02:56:26.7555380Z adding 'torchgen/packaged/autograd/gen_view_funcs.py' 2025-01-24T02:56:26.7563820Z adding 'torchgen/packaged/autograd/load_derivatives.py' 2025-01-24T02:56:26.7565690Z adding 'torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp' 2025-01-24T02:56:26.7566430Z adding 'torchgen/packaged/autograd/templates/Functions.cpp' 2025-01-24T02:56:26.7567900Z adding 'torchgen/packaged/autograd/templates/Functions.h' 2025-01-24T02:56:26.7568700Z adding 'torchgen/packaged/autograd/templates/TraceType.cpp' 2025-01-24T02:56:26.7570240Z adding 'torchgen/packaged/autograd/templates/VariableType.cpp' 2025-01-24T02:56:26.7571090Z adding 'torchgen/packaged/autograd/templates/VariableType.h' 2025-01-24T02:56:26.7572410Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.cpp' 2025-01-24T02:56:26.7573080Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.h' 2025-01-24T02:56:26.7574480Z adding 'torchgen/packaged/autograd/templates/annotated_fn_args.py.in' 2025-01-24T02:56:26.7575100Z adding 'torchgen/packaged/autograd/templates/python_enum_tag.cpp' 2025-01-24T02:56:26.7576600Z adding 'torchgen/packaged/autograd/templates/python_fft_functions.cpp' 2025-01-24T02:56:26.7577390Z adding 'torchgen/packaged/autograd/templates/python_functions.cpp' 2025-01-24T02:56:26.7578770Z adding 'torchgen/packaged/autograd/templates/python_functions.h' 2025-01-24T02:56:26.7579600Z adding 'torchgen/packaged/autograd/templates/python_linalg_functions.cpp' 2025-01-24T02:56:26.7581110Z adding 'torchgen/packaged/autograd/templates/python_nested_functions.cpp' 2025-01-24T02:56:26.7582560Z adding 'torchgen/packaged/autograd/templates/python_nn_functions.cpp' 2025-01-24T02:56:26.7583480Z adding 'torchgen/packaged/autograd/templates/python_return_types.cpp' 2025-01-24T02:56:26.7584890Z adding 'torchgen/packaged/autograd/templates/python_return_types.h' 2025-01-24T02:56:26.7585670Z adding 'torchgen/packaged/autograd/templates/python_sparse_functions.cpp' 2025-01-24T02:56:26.7587110Z adding 'torchgen/packaged/autograd/templates/python_special_functions.cpp' 2025-01-24T02:56:26.7588550Z adding 'torchgen/packaged/autograd/templates/python_torch_functions.cpp' 2025-01-24T02:56:26.7595480Z adding 'torchgen/packaged/autograd/templates/python_variable_methods.cpp' 2025-01-24T02:56:26.7597230Z adding 'torchgen/packaged/autograd/templates/variable_factories.h' 2025-01-24T02:56:26.7598090Z adding 'torchgen/selective_build/__init__.py' 2025-01-24T02:56:26.7600310Z adding 'torchgen/selective_build/operator.py' 2025-01-24T02:56:26.7603110Z adding 'torchgen/selective_build/selector.py' 2025-01-24T02:56:26.7604330Z adding 'torchgen/static_runtime/__init__.py' 2025-01-24T02:56:26.7606520Z adding 'torchgen/static_runtime/config.py' 2025-01-24T02:56:26.7608530Z adding 'torchgen/static_runtime/gen_static_runtime_ops.py' 2025-01-24T02:56:26.7613380Z adding 'torchgen/static_runtime/generator.py' 2025-01-24T02:56:26.7688480Z adding 'torch-2.7.0a0+gitd087145.dist-info/LICENSE' 2025-01-24T02:56:26.7696450Z adding 'torch-2.7.0a0+gitd087145.dist-info/METADATA' 2025-01-24T02:56:26.7701830Z adding 'torch-2.7.0a0+gitd087145.dist-info/NOTICE' 2025-01-24T02:56:26.7702370Z adding 'torch-2.7.0a0+gitd087145.dist-info/WHEEL' 2025-01-24T02:56:26.7703100Z adding 'torch-2.7.0a0+gitd087145.dist-info/entry_points.txt' 2025-01-24T02:56:26.7703650Z adding 'torch-2.7.0a0+gitd087145.dist-info/top_level.txt' 2025-01-24T02:56:26.8060960Z adding 'torch-2.7.0a0+gitd087145.dist-info/RECORD' 2025-01-24T02:56:26.8529600Z removing build/bdist.macosx-11.1-arm64/wheel 2025-01-24T02:56:27.3470020Z + which sccache 2025-01-24T02:56:27.3506130Z + print_sccache_stats 2025-01-24T02:56:27.3506490Z + echo 'PyTorch Build Statistics' 2025-01-24T02:56:27.3506790Z + sccache --show-stats 2025-01-24T02:56:27.3507000Z PyTorch Build Statistics 2025-01-24T02:56:27.3536580Z Compile requests 5118 2025-01-24T02:56:27.3536890Z Compile requests executed 4774 2025-01-24T02:56:27.3537150Z Cache hits 4040 2025-01-24T02:56:27.3537400Z Cache hits (C/C++) 4040 2025-01-24T02:56:27.3537660Z Cache misses 711 2025-01-24T02:56:27.3537910Z Cache misses (C/C++) 711 2025-01-24T02:56:27.3538380Z Cache timeouts 0 2025-01-24T02:56:27.3538650Z Cache read errors 0 2025-01-24T02:56:27.3538910Z Forced recaches 0 2025-01-24T02:56:27.3539170Z Cache write errors 0 2025-01-24T02:56:27.3539430Z Compilation failures 2 2025-01-24T02:56:27.3539660Z Cache errors 21 2025-01-24T02:56:27.3539890Z Cache errors (C/C++) 21 2025-01-24T02:56:27.3540210Z Non-cacheable compilations 0 2025-01-24T02:56:27.3545830Z Non-cacheable calls 259 2025-01-24T02:56:27.3546110Z Non-compilation calls 85 2025-01-24T02:56:27.3546360Z Unsupported compiler calls 0 2025-01-24T02:56:27.3546610Z Average cache write 0.002 s 2025-01-24T02:56:27.3546880Z Average compiler 7.264 s 2025-01-24T02:56:27.3547140Z Average cache read hit 0.000 s 2025-01-24T02:56:27.3547420Z Failed distributed compilations 0 2025-01-24T02:56:27.3547620Z 2025-01-24T02:56:27.3547710Z Non-cacheable reasons: 2025-01-24T02:56:27.3558610Z unknown source language 247 2025-01-24T02:56:27.3558900Z multiple input files 6 2025-01-24T02:56:27.3559160Z @ 6 2025-01-24T02:56:27.3559340Z 2025-01-24T02:56:27.3559620Z Cache location Local disk: "/Users/ec2-user/Library/Caches/Mozilla.sccache" 2025-01-24T02:56:27.3560040Z Version (client) 0.4.1 2025-01-24T02:56:27.3564100Z Cache size 770 MiB 2025-01-24T02:56:27.3564410Z Max cache size 10 GiB 2025-01-24T02:56:27.3566340Z + [[ -n 36096136053 ]] 2025-01-24T02:56:27.3569130Z + sccache --show-stats --stats-format json 2025-01-24T02:56:27.3570800Z + jq .stats 2025-01-24T02:56:27.4222750Z + python tools/stats/export_test_times.py 2025-01-24T02:56:27.9363240Z Exporting test times from test-infra 2025-01-24T02:56:27.9364260Z 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-01-24T02:56:27.9365760Z 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-01-24T02:56:27.9408810Z + assert_git_not_dirty 2025-01-24T02:56:27.9409130Z + [[ macos-py3-arm64 != *rocm* ]] 2025-01-24T02:56:27.9409650Z + [[ macos-py3-arm64 != *xla* ]] 2025-01-24T02:56:27.9415750Z ++ git status --porcelain 2025-01-24T02:56:27.9416680Z ++ grep -v '?? third_party' 2025-01-24T02:56:42.3660430Z ++ true 2025-01-24T02:56:42.3662010Z + git_status= 2025-01-24T02:56:42.3662370Z + [[ -n '' ]] 2025-01-24T02:56:42.3663170Z + rm -rfv /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd 2025-01-24T02:56:42.3756100Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang 2025-01-24T02:56:42.3756700Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd/clang++ 2025-01-24T02:56:42.3757270Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.6ra2SnkxVd 2025-01-24T02:56:42.4097740Z ##[group]Run zip -1 -r artifacts.zip dist/ build/.ninja_log build/compile_commands.json .additional_ci_files 2025-01-24T02:56:42.4098440Z zip -1 -r artifacts.zip dist/ build/.ninja_log build/compile_commands.json .additional_ci_files 2025-01-24T02:56:42.5866710Z shell: /bin/bash -e {0} 2025-01-24T02:56:42.5866920Z env: 2025-01-24T02:56:42.5867100Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:56:42.5867360Z SCCACHE_USE_GHA: false 2025-01-24T02:56:42.5868210Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:56:42.5869200Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:56:42.5869670Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:42.5870200Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:42.5871000Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 --no-capture-output 2025-01-24T02:56:42.5872040Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:42.5872690Z SCCACHE_S3_KEY_PREFIX: trunk 2025-01-24T02:56:42.5873070Z CMAKE_PREFIX_PATH: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:42.5873450Z ##[endgroup] 2025-01-24T02:56:42.6371640Z adding: dist/ (stored 0%) 2025-01-24T02:56:43.9883600Z adding: dist/torch-2.7.0a0+gitd087145-cp39-cp39-macosx_11_0_arm64.whl (deflated 3%) 2025-01-24T02:56:44.0076230Z adding: build/.ninja_log (deflated 89%) 2025-01-24T02:56:44.0535700Z adding: build/compile_commands.json (deflated 98%) 2025-01-24T02:56:44.0536190Z adding: .additional_ci_files/ (stored 0%) 2025-01-24T02:56:44.0655230Z adding: .additional_ci_files/test-times.json (deflated 69%) 2025-01-24T02:56:44.1145440Z adding: .additional_ci_files/test-class-times.json (deflated 65%) 2025-01-24T02:56:44.1366170Z ##[group]Run actions/upload-artifact@v4 2025-01-24T02:56:44.1366420Z with: 2025-01-24T02:56:44.1366580Z name: macos-py3-arm64 2025-01-24T02:56:44.1366770Z retention-days: 14 2025-01-24T02:56:44.1366970Z if-no-files-found: error 2025-01-24T02:56:44.1367170Z path: artifacts.zip 2025-01-24T02:56:44.1367360Z compression-level: 6 2025-01-24T02:56:44.1367550Z overwrite: false 2025-01-24T02:56:44.1367730Z include-hidden-files: false 2025-01-24T02:56:44.1367930Z env: 2025-01-24T02:56:44.1368090Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:56:44.1368330Z SCCACHE_USE_GHA: false 2025-01-24T02:56:44.1369150Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:56:44.1370100Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:56:44.1370560Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:44.1371040Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:44.1371950Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 --no-capture-output 2025-01-24T02:56:44.1372960Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:44.1373590Z SCCACHE_S3_KEY_PREFIX: trunk 2025-01-24T02:56:44.1373950Z CMAKE_PREFIX_PATH: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:44.1374320Z ##[endgroup] 2025-01-24T02:56:44.6912480Z With the provided path, there will be 1 file uploaded 2025-01-24T02:56:44.6914860Z Artifact name is valid! 2025-01-24T02:56:44.6916180Z Root directory input is valid! 2025-01-24T02:56:44.7774200Z Beginning upload of artifact content to blob storage 2025-01-24T02:56:45.1515260Z Uploaded bytes 8388608 2025-01-24T02:56:45.3292520Z Uploaded bytes 16777216 2025-01-24T02:56:45.5543760Z Uploaded bytes 25165824 2025-01-24T02:56:45.6798650Z Uploaded bytes 33554432 2025-01-24T02:56:45.9082070Z Uploaded bytes 41943040 2025-01-24T02:56:46.0363820Z Uploaded bytes 50331648 2025-01-24T02:56:46.2109300Z Uploaded bytes 58720256 2025-01-24T02:56:46.3862310Z Uploaded bytes 65405753 2025-01-24T02:56:46.4092320Z Finished uploading artifact content to blob storage! 2025-01-24T02:56:46.4110520Z SHA256 hash of uploaded artifact zip is 3e96db9ae3eebda8bde5bcdda86cbd5862495575bf98206538a3c9100ecf7724 2025-01-24T02:56:46.4113320Z Finalizing artifact upload 2025-01-24T02:56:46.4843620Z Artifact macos-py3-arm64.zip successfully finalized. Artifact ID 2478610622 2025-01-24T02:56:46.4848440Z Artifact macos-py3-arm64 has been successfully uploaded! Final size is 65405753 bytes. Artifact ID is 2478610622 2025-01-24T02:56:46.4892930Z Artifact download URL: https://github.com/pytorch/pytorch/actions/runs/12940918145/artifacts/2478610622 2025-01-24T02:56:46.5233030Z ##[group]Run actions/upload-artifact@v4 2025-01-24T02:56:46.5233650Z with: 2025-01-24T02:56:46.5234280Z name: sccache-stats-macos-py3-arm64-runattempt1-36096136053 2025-01-24T02:56:46.5235270Z retention-days: 14 2025-01-24T02:56:46.5235760Z if-no-files-found: warn 2025-01-24T02:56:46.5236290Z path: sccache-stats-*.json 2025-01-24T02:56:46.5236950Z compression-level: 6 2025-01-24T02:56:46.5237470Z overwrite: false 2025-01-24T02:56:46.5237920Z include-hidden-files: false 2025-01-24T02:56:46.5238440Z env: 2025-01-24T02:56:46.5238830Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:56:46.5239420Z SCCACHE_USE_GHA: false 2025-01-24T02:56:46.5241460Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:56:46.5243900Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:56:46.5245100Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:46.5246500Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:46.5248410Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 --no-capture-output 2025-01-24T02:56:46.5250960Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:46.5252720Z SCCACHE_S3_KEY_PREFIX: trunk 2025-01-24T02:56:46.5253610Z CMAKE_PREFIX_PATH: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:46.5254700Z ##[endgroup] 2025-01-24T02:56:46.7048070Z With the provided path, there will be 1 file uploaded 2025-01-24T02:56:46.7051040Z Artifact name is valid! 2025-01-24T02:56:46.7051330Z Root directory input is valid! 2025-01-24T02:56:46.7577090Z Beginning upload of artifact content to blob storage 2025-01-24T02:56:46.7925400Z Uploaded bytes 536 2025-01-24T02:56:46.8071860Z Finished uploading artifact content to blob storage! 2025-01-24T02:56:46.8074730Z SHA256 hash of uploaded artifact zip is dd539e38a5366ee635c7132a508b7460c944958143f6329fd7948593954c4284 2025-01-24T02:56:46.8075420Z Finalizing artifact upload 2025-01-24T02:56:46.8927820Z Artifact sccache-stats-macos-py3-arm64-runattempt1-36096136053.zip successfully finalized. Artifact ID 2478610638 2025-01-24T02:56:46.8929970Z Artifact sccache-stats-macos-py3-arm64-runattempt1-36096136053 has been successfully uploaded! Final size is 536 bytes. Artifact ID is 2478610638 2025-01-24T02:56:46.8950710Z Artifact download URL: https://github.com/pytorch/pytorch/actions/runs/12940918145/artifacts/2478610638 2025-01-24T02:56:46.9127330Z ##[group]Run pytorch/test-infra/.github/actions/check-disk-space@main 2025-01-24T02:56:46.9128210Z with: 2025-01-24T02:56:46.9128510Z minimum-available-space-in-gb: 6 2025-01-24T02:56:46.9128930Z env: 2025-01-24T02:56:46.9129230Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:56:46.9129660Z SCCACHE_USE_GHA: false 2025-01-24T02:56:46.9131190Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:56:46.9132790Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:56:46.9133540Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:46.9134330Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:46.9135940Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 --no-capture-output 2025-01-24T02:56:46.9137810Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:46.9138890Z SCCACHE_S3_KEY_PREFIX: trunk 2025-01-24T02:56:46.9139610Z CMAKE_PREFIX_PATH: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:46.9140320Z ##[endgroup] 2025-01-24T02:56:46.9168860Z ##[group]Run echo "Print the available disk space for manual inspection" 2025-01-24T02:56:46.9169670Z echo "Print the available disk space for manual inspection" 2025-01-24T02:56:46.9170280Z df -h 2025-01-24T02:56:46.9170540Z  2025-01-24T02:56:46.9170820Z function check_disk_space() { 2025-01-24T02:56:46.9171200Z  set +e 2025-01-24T02:56:46.9171470Z  2025-01-24T02:56:46.9171820Z  # Set the minimum requirement space to 6GB 2025-01-24T02:56:46.9172540Z  MINIMUM_AVAILABLE_SPACE_IN_KB=$(($MINIMUM_AVAILABLE_SPACE_IN_GB * 1024 * 1024)) 2025-01-24T02:56:46.9173200Z  2025-01-24T02:56:46.9173590Z  # Use KB to avoid floating point warning like 3.1GB 2025-01-24T02:56:46.9174240Z  df -k | tr -s ' ' | cut -d' ' -f 4,9 | while read -r LINE; 2025-01-24T02:56:46.9174750Z  do 2025-01-24T02:56:46.9175080Z  AVAIL=$(echo $LINE | cut -f1 -d' ') 2025-01-24T02:56:46.9175570Z  MOUNT=$(echo $LINE | cut -f2 -d' ') 2025-01-24T02:56:46.9175980Z  2025-01-24T02:56:46.9176260Z  if [ "${MOUNT}" = "/" ]; then 2025-01-24T02:56:46.9176830Z  if [ "${AVAIL}" -lt "${MINIMUM_AVAILABLE_SPACE_IN_KB}" ]; then 2025-01-24T02:56:46.9178080Z  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-01-24T02:56:46.9179140Z  else 2025-01-24T02:56:46.9179760Z  echo "Success: There is ${AVAIL}KB free space left in ${MOUNT} for ${RUNNER_OS}, continue" 2025-01-24T02:56:46.9180450Z  fi 2025-01-24T02:56:46.9180720Z  fi 2025-01-24T02:56:46.9180980Z  done 2025-01-24T02:56:46.9181350Z  2025-01-24T02:56:46.9181590Z  set -e 2025-01-24T02:56:46.9181860Z } 2025-01-24T02:56:46.9182100Z  2025-01-24T02:56:46.9182360Z RESULT=$(check_disk_space) 2025-01-24T02:56:46.9182740Z echo "${RESULT}" 2025-01-24T02:56:46.9183040Z  2025-01-24T02:56:46.9183460Z if [[ "${RESULT}" == *Failure* && "${RUNNER_OS}" == "macOS" ]]; then 2025-01-24T02:56:46.9184610Z  # 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-01-24T02:56:46.9186080Z  # https://github.com/pytorch/pytorch/issues/85440 2025-01-24T02:56:46.9187370Z  sudo rm "/System/Library/Caches/com.apple.coresymbolicationd/data" || true 2025-01-24T02:56:46.9188520Z  # Stop the daemon and launchctl will automatically start it again, thus accomplish a restart and free up the above file 2025-01-24T02:56:46.9189540Z  sudo launchctl stop com.apple.coresymbolicationd || true 2025-01-24T02:56:46.9190070Z  2025-01-24T02:56:46.9190390Z  # Clean up crash reports on the runner 2025-01-24T02:56:46.9191070Z  sudo rm -rf "/System/Volumes/Data/Library/Logs/CrashReporter" || true 2025-01-24T02:56:46.9191660Z  2025-01-24T02:56:46.9192040Z  # Also try to clean up torch.hub caching directory 2025-01-24T02:56:46.9192610Z  rm -rf "${HOME}/.cache/torch/hub" || true 2025-01-24T02:56:46.9193040Z  2025-01-24T02:56:46.9193290Z  # Purge conda 2025-01-24T02:56:46.9193640Z  conda clean -p -t -y || true 2025-01-24T02:56:46.9194050Z  # and pip cache 2025-01-24T02:56:46.9194400Z  pip cache purge || true 2025-01-24T02:56:46.9194750Z  2025-01-24T02:56:46.9195210Z  echo "Re-run disk space check for ${RUNNER_OS} after cleaning up" 2025-01-24T02:56:46.9195800Z  # Re-run the check 2025-01-24T02:56:46.9196160Z  RESULT=$(check_disk_space) 2025-01-24T02:56:46.9196550Z  echo "${RESULT}" 2025-01-24T02:56:46.9196860Z fi 2025-01-24T02:56:46.9197110Z  2025-01-24T02:56:46.9197410Z if [[ "${RESULT}" == *Failure* ]]; then 2025-01-24T02:56:46.9197830Z  df -h 2025-01-24T02:56:46.9198090Z  2025-01-24T02:56:46.9199050Z  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-01-24T02:56:46.9200110Z  exit 1 2025-01-24T02:56:46.9200370Z fi 2025-01-24T02:56:46.9228130Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-01-24T02:56:46.9228540Z env: 2025-01-24T02:56:46.9228770Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-01-24T02:56:46.9229120Z SCCACHE_USE_GHA: false 2025-01-24T02:56:46.9230310Z PATH: /Users/ec2-user/runner/_work/_temp/miniconda/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-01-24T02:56:46.9231690Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2025-01-24T02:56:46.9232340Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:46.9233050Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:46.9234250Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 --no-capture-output 2025-01-24T02:56:46.9235740Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:46.9236700Z SCCACHE_S3_KEY_PREFIX: trunk 2025-01-24T02:56:46.9242460Z CMAKE_PREFIX_PATH: /Users/ec2-user/runner/_work/_temp/conda_environment_12940918145 2025-01-24T02:56:46.9243050Z MINIMUM_AVAILABLE_SPACE_IN_GB: 6 2025-01-24T02:56:46.9243480Z ##[endgroup] 2025-01-24T02:56:46.9644470Z Print the available disk space for manual inspection 2025-01-24T02:56:46.9683140Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-01-24T02:56:46.9683690Z /dev/disk5s2s1 256Gi 9.5Gi 132Gi 7% 404k 1.4G 0% / 2025-01-24T02:56:46.9684170Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-01-24T02:56:46.9684700Z /dev/disk5s5 256Gi 1.0Gi 132Gi 1% 1 1.4G 0% /System/Volumes/VM 2025-01-24T02:56:46.9685300Z /dev/disk5s3 256Gi 5.7Gi 132Gi 5% 1.0k 1.4G 0% /System/Volumes/Preboot 2025-01-24T02:56:46.9688290Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-01-24T02:56:46.9688940Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-01-24T02:56:46.9689560Z /dev/disk1s3 500Mi 720Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-01-24T02:56:46.9690170Z /dev/disk5s1 256Gi 106Gi 132Gi 45% 8.1M 1.4G 1% /System/Volumes/Data 2025-01-24T02:56:46.9690720Z /dev/disk3s5 228Gi 905Mi 210Gi 1% 15k 2.2G 0% /Volumes/Data 2025-01-24T02:56:46.9691570Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-01-24T02:56:46.9692260Z /dev/disk3s4 228Gi 148Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-cYiID5 2025-01-24T02:56:47.0089180Z Success: There is 138914516KB free space left in / for macOS, continue 2025-01-24T02:56:47.0221570Z Post job cleanup. 2025-01-24T02:56:47.1861140Z Post job cleanup. 2025-01-24T02:56:47.3427380Z Cache hit occurred on the primary key miniconda-env-macOS-ARM64-3.9.12--20250124d-df4fea1f0320691e2ceb8626578a181fee2e2aab8244c248a366f57a0ba49f19-1e6dd9adfba445a270b4cff461819503ae49e15d12e5e871673c1d40e1e85ded, not saving cache. 2025-01-24T02:56:47.3487100Z Post job cleanup. 2025-01-24T02:56:47.4637360Z Cache hit occurred on the primary key miniconda-24.7.1-0-macOS-ARM64-3.9.12--20250124d, not saving cache. 2025-01-24T02:56:47.4753550Z Post job cleanup. 2025-01-24T02:56:47.4807920Z Post job cleanup. 2025-01-24T02:56:47.5854050Z [command]/usr/bin/git version 2025-01-24T02:56:47.5919130Z git version 2.39.3 (Apple Git-146) 2025-01-24T02:56:47.5937110Z Copying '/Users/ec2-user/.gitconfig' to '/Users/ec2-user/runner/_work/_temp/1d7ac2be-0d22-43fc-9d8a-d464aa5e67ed/.gitconfig' 2025-01-24T02:56:47.5942840Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/1d7ac2be-0d22-43fc-9d8a-d464aa5e67ed' before making global git config changes 2025-01-24T02:56:47.5943690Z Adding repository directory to the temporary git global config as a safe directory 2025-01-24T02:56:47.5946200Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/pytorch/pytorch 2025-01-24T02:56:47.6009490Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-01-24T02:56:47.6070000Z [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-01-24T02:56:47.6939560Z Entering 'android/libs/fbjni' 2025-01-24T02:56:47.7053190Z Entering 'third_party/FP16' 2025-01-24T02:56:47.7163620Z Entering 'third_party/FXdiv' 2025-01-24T02:56:47.7273180Z Entering 'third_party/NNPACK' 2025-01-24T02:56:47.7390050Z Entering 'third_party/NVTX' 2025-01-24T02:56:47.7492300Z Entering 'third_party/VulkanMemoryAllocator' 2025-01-24T02:56:47.7592820Z Entering 'third_party/XNNPACK' 2025-01-24T02:56:47.7854650Z Entering 'third_party/benchmark' 2025-01-24T02:56:47.7967050Z Entering 'third_party/composable_kernel' 2025-01-24T02:56:47.8070790Z Entering 'third_party/cpp-httplib' 2025-01-24T02:56:47.8171510Z Entering 'third_party/cpuinfo' 2025-01-24T02:56:47.8298130Z Entering 'third_party/cudnn_frontend' 2025-01-24T02:56:47.8397810Z Entering 'third_party/cutlass' 2025-01-24T02:56:47.8501840Z Entering 'third_party/eigen' 2025-01-24T02:56:47.8667910Z Entering 'third_party/fbgemm' 2025-01-24T02:56:47.8805030Z Entering 'third_party/fbgemm/third_party/asmjit' 2025-01-24T02:56:47.8937330Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2025-01-24T02:56:47.9085190Z Entering 'third_party/fbgemm/third_party/cutlass' 2025-01-24T02:56:47.9304910Z Entering 'third_party/fbgemm/third_party/googletest' 2025-01-24T02:56:47.9442200Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2025-01-24T02:56:47.9557320Z Entering 'third_party/flatbuffers' 2025-01-24T02:56:47.9658700Z Entering 'third_party/fmt' 2025-01-24T02:56:47.9766380Z Entering 'third_party/gemmlowp/gemmlowp' 2025-01-24T02:56:47.9872240Z Entering 'third_party/gloo' 2025-01-24T02:56:47.9984710Z Entering 'third_party/googletest' 2025-01-24T02:56:48.0102600Z Entering 'third_party/ideep' 2025-01-24T02:56:48.0225490Z Entering 'third_party/ideep/mkl-dnn' 2025-01-24T02:56:48.0423470Z Entering 'third_party/ittapi' 2025-01-24T02:56:48.0523010Z Entering 'third_party/kineto' 2025-01-24T02:56:48.0622560Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-01-24T02:56:48.0723800Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-01-24T02:56:48.0823430Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-01-24T02:56:48.0922170Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-01-24T02:56:48.1019120Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-01-24T02:56:48.1113510Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-01-24T02:56:48.1212310Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-01-24T02:56:48.1308170Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-01-24T02:56:48.1406370Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-01-24T02:56:48.1507160Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-01-24T02:56:48.1607660Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-01-24T02:56:48.1705630Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-01-24T02:56:48.1805490Z Entering 'third_party/kleidiai' 2025-01-24T02:56:48.1904650Z Entering 'third_party/mimalloc' 2025-01-24T02:56:48.2003850Z Entering 'third_party/nccl/nccl' 2025-01-24T02:56:48.2117780Z Entering 'third_party/nlohmann' 2025-01-24T02:56:48.2216540Z Entering 'third_party/onnx' 2025-01-24T02:56:48.2469820Z Entering 'third_party/onnx/third_party/pybind11' 2025-01-24T02:56:48.2593110Z Entering 'third_party/opentelemetry-cpp' 2025-01-24T02:56:48.2691620Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-01-24T02:56:48.2790700Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-01-24T02:56:48.2886720Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-01-24T02:56:48.2985070Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-01-24T02:56:48.3082300Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-01-24T02:56:48.3180450Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-01-24T02:56:48.3278490Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-01-24T02:56:48.3374100Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-01-24T02:56:48.3472940Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-01-24T02:56:48.3571580Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-01-24T02:56:48.3682010Z Entering 'third_party/pocketfft' 2025-01-24T02:56:48.3782840Z Entering 'third_party/protobuf' 2025-01-24T02:56:48.3965700Z Entering 'third_party/protobuf/third_party/benchmark' 2025-01-24T02:56:48.4099900Z Entering 'third_party/protobuf/third_party/googletest' 2025-01-24T02:56:48.4228370Z Entering 'third_party/psimd' 2025-01-24T02:56:48.4337310Z Entering 'third_party/pthreadpool' 2025-01-24T02:56:48.4457340Z Entering 'third_party/pybind11' 2025-01-24T02:56:48.4570740Z Entering 'third_party/python-peachpy' 2025-01-24T02:56:48.4677030Z Entering 'third_party/sleef' 2025-01-24T02:56:48.4788260Z Entering 'third_party/tensorpipe' 2025-01-24T02:56:48.4927550Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-01-24T02:56:48.5067580Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-01-24T02:56:48.5194070Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-01-24T02:56:48.5334960Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-01-24T02:56:48.5469250Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-01-24T02:56:48.5595780Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-01-24T02:56:48.5652130Z http.https://github.com/.extraheader 2025-01-24T02:56:48.5662260Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2025-01-24T02:56:48.5734770Z [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-01-24T02:56:48.6222070Z Entering 'android/libs/fbjni' 2025-01-24T02:56:48.6288460Z http.https://github.com/.extraheader 2025-01-24T02:56:48.6354260Z Entering 'third_party/FP16' 2025-01-24T02:56:48.6418980Z http.https://github.com/.extraheader 2025-01-24T02:56:48.6490930Z Entering 'third_party/FXdiv' 2025-01-24T02:56:48.6557350Z http.https://github.com/.extraheader 2025-01-24T02:56:48.6621710Z Entering 'third_party/NNPACK' 2025-01-24T02:56:48.6686630Z http.https://github.com/.extraheader 2025-01-24T02:56:48.6750520Z Entering 'third_party/NVTX' 2025-01-24T02:56:48.6816320Z http.https://github.com/.extraheader 2025-01-24T02:56:48.6883120Z Entering 'third_party/VulkanMemoryAllocator' 2025-01-24T02:56:48.6949950Z http.https://github.com/.extraheader 2025-01-24T02:56:48.7016220Z Entering 'third_party/XNNPACK' 2025-01-24T02:56:48.7086210Z http.https://github.com/.extraheader 2025-01-24T02:56:48.7157800Z Entering 'third_party/benchmark' 2025-01-24T02:56:48.7224860Z http.https://github.com/.extraheader 2025-01-24T02:56:48.7290120Z Entering 'third_party/composable_kernel' 2025-01-24T02:56:48.7355210Z http.https://github.com/.extraheader 2025-01-24T02:56:48.7422850Z Entering 'third_party/cpp-httplib' 2025-01-24T02:56:48.7490750Z http.https://github.com/.extraheader 2025-01-24T02:56:48.7556030Z Entering 'third_party/cpuinfo' 2025-01-24T02:56:48.7619530Z http.https://github.com/.extraheader 2025-01-24T02:56:48.7685030Z Entering 'third_party/cudnn_frontend' 2025-01-24T02:56:48.7749600Z http.https://github.com/.extraheader 2025-01-24T02:56:48.7814740Z Entering 'third_party/cutlass' 2025-01-24T02:56:48.7880630Z http.https://github.com/.extraheader 2025-01-24T02:56:48.7947090Z Entering 'third_party/eigen' 2025-01-24T02:56:48.8013450Z http.https://github.com/.extraheader 2025-01-24T02:56:48.8080450Z Entering 'third_party/fbgemm' 2025-01-24T02:56:48.8147130Z http.https://github.com/.extraheader 2025-01-24T02:56:48.8211400Z Entering 'third_party/fbgemm/third_party/asmjit' 2025-01-24T02:56:48.8274710Z http.https://github.com/.extraheader 2025-01-24T02:56:48.8339670Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2025-01-24T02:56:48.8406000Z http.https://github.com/.extraheader 2025-01-24T02:56:48.8471920Z Entering 'third_party/fbgemm/third_party/cutlass' 2025-01-24T02:56:48.8538150Z http.https://github.com/.extraheader 2025-01-24T02:56:48.8609880Z Entering 'third_party/fbgemm/third_party/googletest' 2025-01-24T02:56:48.8676100Z http.https://github.com/.extraheader 2025-01-24T02:56:48.8741240Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2025-01-24T02:56:48.8804860Z http.https://github.com/.extraheader 2025-01-24T02:56:48.8873150Z Entering 'third_party/flatbuffers' 2025-01-24T02:56:48.8937720Z http.https://github.com/.extraheader 2025-01-24T02:56:48.9004590Z Entering 'third_party/fmt' 2025-01-24T02:56:48.9069870Z http.https://github.com/.extraheader 2025-01-24T02:56:48.9134930Z Entering 'third_party/gemmlowp/gemmlowp' 2025-01-24T02:56:48.9201330Z http.https://github.com/.extraheader 2025-01-24T02:56:48.9265510Z Entering 'third_party/gloo' 2025-01-24T02:56:48.9330920Z http.https://github.com/.extraheader 2025-01-24T02:56:48.9396240Z Entering 'third_party/googletest' 2025-01-24T02:56:48.9461650Z http.https://github.com/.extraheader 2025-01-24T02:56:48.9527630Z Entering 'third_party/ideep' 2025-01-24T02:56:48.9593540Z http.https://github.com/.extraheader 2025-01-24T02:56:48.9657910Z Entering 'third_party/ideep/mkl-dnn' 2025-01-24T02:56:48.9724100Z http.https://github.com/.extraheader 2025-01-24T02:56:48.9793950Z Entering 'third_party/ittapi' 2025-01-24T02:56:48.9861530Z http.https://github.com/.extraheader 2025-01-24T02:56:48.9924850Z Entering 'third_party/kineto' 2025-01-24T02:56:48.9988990Z http.https://github.com/.extraheader 2025-01-24T02:56:49.0053000Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-01-24T02:56:49.0119730Z http.https://github.com/.extraheader 2025-01-24T02:56:49.0184610Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-01-24T02:56:49.0248580Z http.https://github.com/.extraheader 2025-01-24T02:56:49.0314850Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-01-24T02:56:49.0380730Z http.https://github.com/.extraheader 2025-01-24T02:56:49.0445600Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-01-24T02:56:49.0510880Z http.https://github.com/.extraheader 2025-01-24T02:56:49.0575860Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-01-24T02:56:49.0640810Z http.https://github.com/.extraheader 2025-01-24T02:56:49.0705700Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-01-24T02:56:49.0771020Z http.https://github.com/.extraheader 2025-01-24T02:56:49.0840360Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-01-24T02:56:49.0906210Z http.https://github.com/.extraheader 2025-01-24T02:56:49.0971690Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-01-24T02:56:49.1043010Z http.https://github.com/.extraheader 2025-01-24T02:56:49.1106700Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-01-24T02:56:49.1174520Z http.https://github.com/.extraheader 2025-01-24T02:56:49.1242480Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-01-24T02:56:49.1309840Z http.https://github.com/.extraheader 2025-01-24T02:56:49.1378930Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-01-24T02:56:49.1442960Z http.https://github.com/.extraheader 2025-01-24T02:56:49.1509030Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-01-24T02:56:49.1574100Z http.https://github.com/.extraheader 2025-01-24T02:56:49.1639810Z Entering 'third_party/kleidiai' 2025-01-24T02:56:49.1706660Z http.https://github.com/.extraheader 2025-01-24T02:56:49.1770380Z Entering 'third_party/mimalloc' 2025-01-24T02:56:49.1836270Z http.https://github.com/.extraheader 2025-01-24T02:56:49.1901520Z Entering 'third_party/nccl/nccl' 2025-01-24T02:56:49.1966790Z http.https://github.com/.extraheader 2025-01-24T02:56:49.2032810Z Entering 'third_party/nlohmann' 2025-01-24T02:56:49.2096390Z http.https://github.com/.extraheader 2025-01-24T02:56:49.2162420Z Entering 'third_party/onnx' 2025-01-24T02:56:49.2227700Z http.https://github.com/.extraheader 2025-01-24T02:56:49.2295390Z Entering 'third_party/onnx/third_party/pybind11' 2025-01-24T02:56:49.2361540Z http.https://github.com/.extraheader 2025-01-24T02:56:49.2429750Z Entering 'third_party/opentelemetry-cpp' 2025-01-24T02:56:49.2497160Z http.https://github.com/.extraheader 2025-01-24T02:56:49.2562650Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-01-24T02:56:49.2629040Z http.https://github.com/.extraheader 2025-01-24T02:56:49.2695240Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-01-24T02:56:49.2758700Z http.https://github.com/.extraheader 2025-01-24T02:56:49.2822380Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-01-24T02:56:49.2887830Z http.https://github.com/.extraheader 2025-01-24T02:56:49.2954580Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-01-24T02:56:49.3020450Z http.https://github.com/.extraheader 2025-01-24T02:56:49.3087410Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-01-24T02:56:49.3153310Z http.https://github.com/.extraheader 2025-01-24T02:56:49.3219050Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-01-24T02:56:49.3285080Z http.https://github.com/.extraheader 2025-01-24T02:56:49.3351230Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-01-24T02:56:49.3418430Z http.https://github.com/.extraheader 2025-01-24T02:56:49.3484110Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-01-24T02:56:49.3550410Z http.https://github.com/.extraheader 2025-01-24T02:56:49.3618200Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-01-24T02:56:49.3687050Z http.https://github.com/.extraheader 2025-01-24T02:56:49.3755760Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-01-24T02:56:49.3822120Z http.https://github.com/.extraheader 2025-01-24T02:56:49.3896120Z Entering 'third_party/pocketfft' 2025-01-24T02:56:49.3961600Z http.https://github.com/.extraheader 2025-01-24T02:56:49.4027610Z Entering 'third_party/protobuf' 2025-01-24T02:56:49.4094440Z http.https://github.com/.extraheader 2025-01-24T02:56:49.4160460Z Entering 'third_party/protobuf/third_party/benchmark' 2025-01-24T02:56:49.4229220Z http.https://github.com/.extraheader 2025-01-24T02:56:49.4295440Z Entering 'third_party/protobuf/third_party/googletest' 2025-01-24T02:56:49.4361650Z http.https://github.com/.extraheader 2025-01-24T02:56:49.4436740Z Entering 'third_party/psimd' 2025-01-24T02:56:49.4504450Z http.https://github.com/.extraheader 2025-01-24T02:56:49.4571310Z Entering 'third_party/pthreadpool' 2025-01-24T02:56:49.4637060Z http.https://github.com/.extraheader 2025-01-24T02:56:49.4702480Z Entering 'third_party/pybind11' 2025-01-24T02:56:49.4769070Z http.https://github.com/.extraheader 2025-01-24T02:56:49.4835760Z Entering 'third_party/python-peachpy' 2025-01-24T02:56:49.4902160Z http.https://github.com/.extraheader 2025-01-24T02:56:49.4967780Z Entering 'third_party/sleef' 2025-01-24T02:56:49.5033120Z http.https://github.com/.extraheader 2025-01-24T02:56:49.5096610Z Entering 'third_party/tensorpipe' 2025-01-24T02:56:49.5160220Z http.https://github.com/.extraheader 2025-01-24T02:56:49.5224460Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-01-24T02:56:49.5290200Z http.https://github.com/.extraheader 2025-01-24T02:56:49.5357100Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-01-24T02:56:49.5422950Z http.https://github.com/.extraheader 2025-01-24T02:56:49.5488430Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-01-24T02:56:49.5554250Z http.https://github.com/.extraheader 2025-01-24T02:56:49.5620190Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-01-24T02:56:49.5686220Z http.https://github.com/.extraheader 2025-01-24T02:56:49.5748890Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-01-24T02:56:49.5812830Z http.https://github.com/.extraheader 2025-01-24T02:56:49.5961850Z A job completed hook has been configured by the self-hosted runner administrator 2025-01-24T02:56:49.6012900Z ##[group]Run '/opt/runner_scripts/post-job.sh' 2025-01-24T02:56:49.6028820Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-01-24T02:56:49.6029110Z ##[endgroup] 2025-01-24T02:56:49.6483120Z + df -h 2025-01-24T02:56:49.6503110Z + ls -t /var/log/post_job 2025-01-24T02:56:49.6503580Z + awk 'NR>100' 2025-01-24T02:56:49.6503960Z + xargs rm -fv 2025-01-24T02:56:49.6513330Z + Checking if runner needs to be terminated...ok 2025-01-24T02:56:49.6513890Z + Outputting disk space 2025-01-24T02:56:49.6514320Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-01-24T02:56:49.6514880Z /dev/disk5s2s1 256Gi 9.5Gi 132Gi 7% 404k 1.4G 0% / 2025-01-24T02:56:49.6515340Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-01-24T02:56:49.6515950Z /dev/disk5s5 256Gi 1.0Gi 132Gi 1% 1 1.4G 0% /System/Volumes/VM 2025-01-24T02:56:49.6516520Z /dev/disk5s3 256Gi 5.7Gi 132Gi 5% 1.0k 1.4G 0% /System/Volumes/Preboot 2025-01-24T02:56:49.6517270Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-01-24T02:56:49.6517840Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-01-24T02:56:49.6518430Z /dev/disk1s3 500Mi 720Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-01-24T02:56:49.6518980Z /dev/disk5s1 256Gi 106Gi 132Gi 45% 8.1M 1.4G 1% /System/Volumes/Data 2025-01-24T02:56:49.6519520Z /dev/disk3s5 228Gi 905Mi 210Gi 1% 15k 2.2G 0% /Volumes/Data 2025-01-24T02:56:49.6520140Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-01-24T02:56:49.6520790Z /dev/disk3s4 228Gi 148Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-cYiID5 2025-01-24T02:56:49.6521280Z + Cleaning up old logs (Keep the latest 100) 2025-01-24T02:56:50.8480570Z + Restoring SSH key to be the skeleton key 2025-01-24T02:56:50.8644220Z Evaluate and set job outputs 2025-01-24T02:56:50.8650610Z Set output 'build-outcome' 2025-01-24T02:56:50.8651700Z Set output 'test-matrix' 2025-01-24T02:56:50.8652200Z Cleaning up orphan processes 2025-01-24T02:56:51.4842300Z Terminate orphan process: pid (35677) (sccache)